/* ===== NEWS CENTER STYLES ===== */

/* ===== CONTENT LIST SECTION ===== */
.content-list-section {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

.content-list-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-list-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(232, 146, 58, 0.3);
    transform: translateX(5px);
}

.content-item-content {
    flex: 1;
}

.content-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.content-list-item:hover .content-item-title {
    color: var(--orange);
}

.content-item-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.content-item-date {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--orange);
    white-space: nowrap;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin-top: 10px;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: var(--orange);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-item:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.pagination-item.active {
    background: var(--orange-dark);
    font-weight: 700;
}

/* ===== MOBILE CONTENT LIST ===== */
@media (max-width: 768px) {
    .breadcrumb-nav {
        display: none;
    }

    .content-list-section {
        padding: 0 !important;
    }

    .content-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 15px;
    }

    .content-item-title {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .content-item-subtitle {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .content-item-date {
        align-self: flex-end;
    }

    .content-item-content h4 {
        font-size: 12px;
        text-overflow: ellipsis;
        text-align: left;
        max-height: 13px;
        max-width: 220px;
    }

    .content-item-content p {
        display: none;
    }

    .content-list-item {
        gap: 0px !important;
        padding: 10px 5px !important;
        flex-direction: row;
    }

    .pagination {
        margin-bottom: 10px;
    }

    /* ===== MOBILE PAGE LAYOUT ===== */
    .page-layout {
        flex-direction: column;
        padding-top: 50px;
    }

    .main-content {
        width: 100%;
        padding: 5px 15px 10px !important;
    }

    /* Mobile sidebar toggle button */
    .mobile-sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 5px 20px;
        background: rgba(20, 20, 25, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--orange);
        font-size: 14px;
        cursor: pointer;
        margin-bottom: 0px;
        text-align: left;
        justify-content: space-between;
        justify-items: self-start;
        font-weight: bold;
    }

    .mobile-sidebar-toggle::after {
        content: '+';
        color: var(--orange);
        font-size: 28px;
        font-weight: 500;
    }

    .mobile-sidebar-toggle.active::after {
        content: '-';
        font-size: 28px;
        font-weight: 500;
    }
}
