/* ===== BANNER ===== */
.journal-banner {
    background: #000;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.journal-banner h1 {
    font-size: 42px;
    font-weight: 800;
}

/* ===== SECTION ===== */
.journal-section {
    background: #fff;
    padding: 60px 0;
    font-family: "Segoe UI", system-ui, sans-serif;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* ===== ITEM ===== */
.journal-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    margin-bottom: 30px;
    background: #f6f6f6;
    transition: 0.3s ease;
}

.journal-item:hover {
    background: #ededed;
}

/* YEAR BLOCK */
.journal-year {
    width: 120px;
    min-height: 160px;
    background: #e0e0e0;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT */
.journal-content {
    flex: 1;
}

.journal-content h3 {
    font-size: 22px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.journal-meta {
    color: #666;
    margin-bottom: 14px;
}

/* ABSTRACT */
.toggle-abstract {
    background: none;
    border: none;
    color: #e60000;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-bottom: 10px;
}

.journal-abstract {
    display: none;
    margin-bottom: 18px;
}

.journal-abstract p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

/* BUTTON */
.journal-btn {
    display: inline-block;
    background: #e60000;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 700;
}

.journal-btn:hover {
    background: #b80000;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination button {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .journal-item {
        flex-direction: column;
    }

    .journal-year {
        width: 100%;
        min-height: 100px;
    }
}
