.journal-container {
    max-width:1200px;
    margin: 60px auto;
    padding: 20px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease-in-out;
}

/* Logo */
.journal-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.journal-logo img {
    width: 200px;
    height: auto;
    border-radius: 50%;
    animation: scaleIn 1s ease-in-out;
}

/* Title */
.journal-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 10px;
    animation: slideIn 1s ease-in-out;
}

/* Published Date */
.journal-date {
    text-align: center;
    font-size: 0.95rem;
    color: var(--secondary-dark);
    margin-bottom: 25px;
    font-style: italic;
}

/* Description */
.journal-description {
    font-size: 1.1rem;
    text-align: justify;
    padding: 10px 5px;
    line-height: 1.8;
    color: var(--text-dark);
    animation: fadeIn 2s ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .journal-container {
        margin: 30px 15px;
        padding: 15px;
    }

    .journal-title {
        font-size: 1.5rem;
    }

    .journal-description {
        font-size: 1rem;
    }
}
