/* ===== COMMON ARTICLE PAGE STYLES ===== */

/* ===== PAGE LAYOUT ===== */
.page-layout {
    display: flex;
    padding-top: -55px auto 0;
    min-height: 100vh;
    background: var(--bg-dark);
    max-width: 1400px;

}

/* ===== BREADCRUMB NAVIGATION ===== */
.breadcrumb-nav {
    padding: 15px 10px;
    margin-bottom: 10px;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.breadcrumb-triangle-left {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid var(--orange);
}



.breadcrumb-icon-item {
    display: flex;
    align-items: center;
}

.breadcrumb-icon {
    width: 16px;
    height: 16px;
}

.breadcrumb-parnav {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-parnav:hover {
    color: var(--orange);
}

.breadcrumb-subnav {
    color: var(--orange);
    text-decoration: none;
    padding: 4px 12px;
    background: rgba(232, 146, 58, 0.15);
    transition: all 0.3s ease;
}

.breadcrumb-subnav:hover {
    background: rgba(232, 146, 58, 0.3);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
    min-width: 0;
    padding: 0;
}

/* ===== CONTENT LIST SECTION (Common) ===== */
.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;
}

/* ===== ARTICLE DETAIL SECTION (Common) ===== */
.article-detail-section {
    padding: 0px 10px;
}

.article-detail {
    background: rgba(20, 20, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    overflow: hidden;
}

.article-header {
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(232, 146, 58, 0.1) 0%, transparent 100%);
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.article-date {
    font-family: 'Playfair Display', serif;
    color: var(--orange);
}

.article-category {
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 12px;
    background: rgba(232, 146, 58, 0.2);
    border-radius: 0px;
    font-size: 12px;
}

.article-body {
    padding: 40px;
}

.article-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--orange);
    margin: 30px 0 15px;
}

.article-body p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.article-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.article-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
}

.article-body ul li strong {
    color: #fff;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: rgba(232, 146, 58, 0.1);
    border-left: 4px solid var(--orange);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ===== PAGINATION (Common) ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin-top: 10px;
    margin-bottom: 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 SIDEBAR TOGGLE ===== */
.mobile-sidebar-toggle {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        background-color: #262626;
    }

    .page-layout {
        flex-direction: column;
        padding-top: 50px;
    }



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

    /* Breadcrumb hidden on mobile */
    .breadcrumb-nav {
        display: none;
    }

    /* Content list mobile */
    .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;
    }

    /* Article detail mobile */
    .article-header {
        padding: 20px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-body {
        padding: 20px;
    }

    .article-body h2 {
        font-size: 20px;
    }

    .article-detail-section {
        padding: 0px !important;
    }

    .main-content {
        margin-bottom: 10px;
    }



    /* Pagination mobile */
    .pagination {
        margin-bottom: 10px;
    }
}