.page-breadcrumb {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.75rem 0;
}

.page-breadcrumb .breadcrumb {
    font-size: 0.8rem;
    padding: 0;
    margin: 0;
}

.page-breadcrumb .breadcrumb-item a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.page-breadcrumb .breadcrumb-item a:hover {
    color: var(--bordo);
}

.page-breadcrumb .breadcrumb-item.active {
    color: var(--bordo);
    font-weight: 500;
}

.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: var(--gray-400);
    font-weight: 600;
}

.page-breadcrumb .breadcrumb-item i {
    font-size: 0.85rem;
    vertical-align: -1px;
}

.page-content-section {
    background: var(--gray-50);
    min-height: 60vh;
}

.theme-gold .page-breadcrumb .breadcrumb-item a:hover,
.theme-gold .page-breadcrumb .breadcrumb-item.active {
    color: var(--gold);
}

.theme-gold .category-title i {
    color: var(--gold);
}

.theme-gold .category-title-line {
    background: linear-gradient(90deg, var(--gold) 0%, var(--bordo) 60%, transparent 100%);
}

.theme-gold .category-item-date {
    border-right-color: var(--gold);
}

.theme-gold .cat-day {
    color: var(--gold);
}

.theme-gold .category-list-item:hover .category-item-title {
    color: var(--gold);
}

.theme-gold .category-list-item:hover .category-item-arrow {
    color: var(--gold);
}

.theme-gold .category-pagination .page-link:hover,
.theme-gold .category-pagination .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
}

.theme-gold .sidebar-category-list a:hover,
.theme-gold .sidebar-category-list a:hover i {
    color: var(--bordo);
}

.theme-gold .sidebar-category-list a.active,
.theme-gold .sidebar-category-list li.active a {
    background: linear-gradient(90deg, rgba(175, 148, 108, 0.08) 0%, rgba(175, 148, 108, 0.02) 100%);
    color: var(--gold);
    border-left-color: var(--gold);
}

.theme-gold .sidebar-category-list a.active i,
.theme-gold .sidebar-category-list li.active a i {
    color: var(--gold);
}

.theme-gold .recent-item-date {
    border-right-color: var(--gold);
}

.theme-gold .recent-day {
    color: var(--gold);
}

.theme-gold .sidebar-recent-item:hover .recent-item-text {
    color: var(--gold);
}

.theme-gold .article-date-badge {
    background: var(--gold);
    box-shadow: 0 4px 12px rgba(175, 148, 108, 0.3);
}

.theme-gold .article-category-tag {
    background: var(--gold);
}

.theme-gold .share-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.theme-dark .page-breadcrumb .breadcrumb-item a:hover,
.theme-dark .page-breadcrumb .breadcrumb-item.active {
    color: var(--bordo);
}

.theme-dark .category-title-line {
    background: linear-gradient(90deg, var(--gray-800) 0%, var(--gold) 60%, transparent 100%);
}

.theme-dark .category-item-date {
    border-right-color: var(--gray-800);
}

.theme-dark .cat-day {
    color: var(--gray-800);
}

.theme-dark .category-list-item:hover .category-item-title {
    color: var(--gray-700);
}

.theme-dark .category-list-item:hover .category-item-arrow {
    color: var(--gray-700);
}

.theme-dark .category-pagination .page-link:hover,
.theme-dark .category-pagination .page-item.active .page-link {
    background: var(--gray-800);
    border-color: var(--gray-800);
}

.theme-dark .sidebar-category-list a:hover,
.theme-dark .sidebar-category-list a:hover i {
    color: var(--bordo);
}

.theme-dark .sidebar-category-list a.active,
.theme-dark .sidebar-category-list li.active a {
    background: linear-gradient(90deg, rgba(33, 33, 33, 0.06) 0%, rgba(33, 33, 33, 0.02) 100%);
    color: var(--gray-800);
    border-left-color: var(--gray-800);
}

.theme-dark .sidebar-category-list a.active i,
.theme-dark .sidebar-category-list li.active a i {
    color: var(--gray-800);
}

.theme-dark .recent-item-date {
    border-right-color: var(--gray-800);
}

.theme-dark .recent-day {
    color: var(--gray-800);
}

.theme-dark .sidebar-recent-item:hover .recent-item-text {
    color: var(--gray-800);
}

.theme-dark .article-date-badge {
    background: var(--gray-800);
    box-shadow: 0 4px 12px rgba(33, 33, 33, 0.3);
}

.theme-dark .article-category-tag {
    background: var(--gray-800);
}

.theme-dark .share-btn:hover {
    background: var(--gray-800);
    border-color: var(--gray-800);
}

.profile-card {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.profile-header {
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.profile-photo-wrapper {
    flex-shrink: 0;
    position: relative;
}

.profile-photo-wrapper::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background-image: url('../images/pattern.png');
    background-repeat: repeat;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.profile-photo {
    width: 200px;
    height: 250px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
    background: #fff;
}

.profile-photo-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--bordo) 0%, var(--gold) 100%);
    z-index: 2;
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bordo);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.profile-role {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
    font-weight: 400;
}

.profile-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--bordo) 0%, var(--gold) 60%, transparent 100%);
    margin: 0 2rem;
}

.profile-bio {
    padding: 2rem;
}

.profile-bio-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-bio-title i {
    color: var(--bordo);
    font-size: 1.1rem;
}

.profile-bio .article-text p {
    margin-bottom: 1rem;
}

.profile-bio .article-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .profile-photo {
        width: 160px;
        height: 200px;
    }

    .profile-name {
        font-size: 1.25rem;
    }

    .profile-bio {
        padding: 1.5rem;
    }

    .profile-divider {
        margin: 0 1.5rem;
    }
}

.content-article {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.article-hero {
    position: relative;
    overflow: hidden;
}

.article-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.content-article:hover .article-hero-img {
    transform: scale(1.02);
}

.article-body {
    padding: 2rem;
    position: relative;
}

.article-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bordo);
    color: #fff;
    padding: 0.5rem 1rem;
    position: absolute;
    top: -4rem;
    left: 2rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(132, 29, 29, 0.3);
    min-width: 70px;
}

.article-body:first-child .article-date-badge {
    position: static;
    box-shadow: none;
    border-radius: 0;
}

.date-badge-day {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.date-badge-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.date-badge-year {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 1px;
}

.article-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    gap: 1.5rem;
}

.article-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);

    margin-bottom: 0;
    line-height: 1.35;
    letter-spacing: -0.3px;
    flex: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.article-category-tag {
    display: inline-flex;
    align-items: center;
    background: var(--bordo);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-share {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--gray-300);
    color: var(--gray-500);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.share-btn:hover {
    background: var(--bordo);
    border-color: var(--bordo);
    color: #fff;
}

.article-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--gray-700);
}

.article-text p {
    margin-bottom: 1.25rem;
}

.article-text p:last-child {
    margin-bottom: 0;
}

.article-text a,
.category-full-desc a,
.profile-bio .article-text a {
    color: var(--bordo);
    text-decoration: underline;
    text-decoration-color: rgba(132, 29, 29, 0.3);
    text-underline-offset: 3px;
    font-weight: 500;
    transition: all 0.2s;
    word-break: break-all;
    overflow-wrap: break-word;
}

.article-text a:hover,
.category-full-desc a:hover,
.profile-bio .article-text a:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

.article-text a[href^="http"]::after,
.category-full-desc a[href^="http"]::after,
.profile-bio .article-text a[href^="http"]::after,
.article-text a[href^="https"]::after,
.category-full-desc a[href^="https"]::after,
.profile-bio .article-text a[href^="https"]::after {
    content: "\ecaf";

    font-family: 'remixicon';
    margin-left: 4px;
    font-size: 0.9em;
    vertical-align: middle;
}

.article-gallery {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.gallery-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-title i {
    color: var(--gold);
    font-size: 1.25rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    aspect-ratio: 16/10;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.gallery-item:hover {
    border-color: var(--gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: #fff;
    font-size: 2rem;
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.lightbox-close:hover {
    background: var(--bordo);
    border-color: var(--bordo);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--bordo);
    border-color: var(--bordo);
}

.lightbox-counter {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

.page-sidebar {
    position: sticky;
    top: 8.5rem;
}

.sidebar-widget {
    background: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.sidebar-widget-title {
    font-size: 0.8rem;
    font-weight: 400;
    color: #fff;
    background: var(--bordo);
    padding: 0 12px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0;
    text-transform: uppercase;
    height: 35px;
}

.sidebar-widget-title i {
    font-size: 0.95rem;
    color: var(--gold);
}

.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-list li {
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-category-list li:last-child {
    border-bottom: none;
}

.sidebar-category-list a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.2s;
    gap: 0.25rem;
}

.sidebar-category-list a i {
    color: var(--gray-400);
    font-size: 1rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.sidebar-category-list a:hover {
    background: var(--gray-50);
    color: var(--bordo);
    padding-left: 1.5rem;
}

.sidebar-category-list a:hover i {
    color: var(--bordo);
}

.sidebar-category-list a.active {
    background: linear-gradient(90deg, rgba(132, 29, 29, 0.06) 0%, rgba(132, 29, 29, 0.02) 100%);
    color: var(--bordo);
    font-weight: 600;
    border-left: 3px solid var(--bordo);
}

.sidebar-category-list a.active i {
    color: var(--bordo);
}

.sidebar-category-list li.active a {
    background: linear-gradient(90deg, rgba(132, 29, 29, 0.10) 0%, rgba(132, 29, 29, 0.03) 100%);
    color: var(--bordo);
    font-weight: 600;
    border-left: 1px solid var(--bordo);
    padding-left: 1.5rem;
}

.sidebar-category-list li.active a i {
    color: var(--bordo);
}

.sidebar-category-list li.sidebar-sub-item a {
    padding-left: 2.75rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.sidebar-category-list li.sidebar-sub-item a i {
    font-size: 0.75rem;
}

.sidebar-category-list li.sidebar-sub-item a:hover {
    padding-left: 3rem;
    color: var(--bordo);
    background: var(--gray-50);
}

.sidebar-recent-list {
    padding: 0;
}

.sidebar-recent-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.2s;
    align-items: center;
}

.sidebar-recent-item:last-child {
    border-bottom: none;
}

.sidebar-recent-item:hover {
    background: var(--gray-50);
}

.recent-item-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    border-right: 1px solid var(--bordo);
    padding-right: 0.85rem;
    flex-shrink: 0;
    text-align: center;
}

.recent-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bordo);
    line-height: 1;
}

.recent-month {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-top: 2px;
}

.recent-item-text {
    font-size: 0.82rem;
    color: var(--gray-700);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-recent-item:hover .recent-item-text {
    color: var(--bordo);
}

.category-content {
    background: transparent;
    box-shadow: none;
}

.category-content .category-header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.chamber-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chamber-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(132, 29, 29, 0.1);
}

.icon-circle {
    transition: all 0.3s ease;
}

.chamber-card:hover .icon-circle {
    background-color: rgba(132, 29, 29, 0.1) !important;
}

.category-header {
    padding: 1.75rem 2rem 0;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.category-title i {
    color: var(--bordo);
    font-size: 1.35rem;
}

.category-title-line {
    height: 1px;
    background: linear-gradient(90deg, var(--bordo) 0%, var(--gold) 60%, transparent 100%);
    margin-bottom: 0;
}

.category-items-list {
    padding: 0;
}

.category-items-full {
    padding: 0;
}

.category-full-article {
    padding: 0;
    border-bottom: none;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.category-full-article+.category-full-article {
    margin-top: 1rem;
}

.category-full-article:last-of-type {
    border-bottom: none;
}

.category-inline-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.category-inline-header .article-date-badge {
    position: static;
    box-shadow: 0 4px 12px rgba(132, 29, 29, 0.3);
    flex-shrink: 0;
    border-radius: 0;
}

.category-inline-header .article-title {
    margin: 0;
    padding: 0;
}

.category-inline-header>div:not(.article-date-badge) {
    flex: 1;
}

.category-inline-header .category-full-title-link {
    flex: 1;
}

.category-inline-header .article-meta {
    justify-content: flex-end;
}

.category-full-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.category-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--bordo);
    color: #fff;
    padding: 0.4rem 0.75rem;
    min-width: 60px;
    box-shadow: 0 4px 12px rgba(132, 29, 29, 0.3);
    flex-shrink: 0;
}

.category-date-badge .date-badge-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
}

.category-date-badge .date-badge-year {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 1px;
}

.category-full-title-link {
    text-decoration: none;
    flex: 1;
}

.category-full-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
    line-height: 1.35;
    transition: color 0.2s;
}

.category-full-title-link:hover .category-full-title {
    color: var(--bordo);
}

.category-full-date {
    font-size: 0.75rem;
    color: var(--gray-500);
    white-space: nowrap;
    flex-shrink: 0;
}

.category-full-hero {
    margin-bottom: 1.25rem;
}

.category-full-hero-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.category-full-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--gray-700);
}

.category-full-desc p {
    margin-bottom: 1rem;
}

.category-full-desc p:last-child {
    margin-bottom: 0;
}

.category-full-gallery {
    margin-top: 1.25rem;
}

.category-list-item {
    display: flex;
    align-items: center;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    text-decoration: none;
    transition: all 0.25s ease;
    gap: 1.25rem;
}

.category-list-item:last-child {
    border-bottom: none;
}

.category-list-item:hover {
    background: var(--gray-50);
    padding-left: 2.25rem;
}

.category-item-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 58px;
    border-right: 1px solid var(--bordo);
    padding-right: 1rem;
    flex-shrink: 0;
}

.cat-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bordo);
    line-height: 1;
}

.cat-month {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.cat-year {
    font-size: 0.65rem;
    color: var(--gray-400);
    margin-top: 1px;
}

.category-item-content {
    flex: 1;
    min-width: 0;
}

.category-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.3rem;
    line-height: 1.35;
    transition: color 0.2s;
}

.category-list-item:hover .category-item-title {
    color: var(--bordo);
}

.category-item-desc {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.4;
}

.category-item-gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bordo);
    padding: 0.25rem 0;
    text-decoration: none;
    transition: all 0.2s;
}

.category-item-gallery-badge i {
    font-size: 0.9rem;
}

.category-list-item:hover .category-item-gallery-badge {
    background: rgba(132, 29, 29, 0.12);
    color: var(--bordo);
}

.category-item-arrow {
    color: var(--gray-400);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.2s;
}

.category-list-item:hover .category-item-arrow {
    color: var(--bordo);
    transform: translateX(4px);
}

.category-pagination {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-200);
}

.category-pagination .pagination {
    margin: 0;
    gap: 0.25rem;
}

.category-pagination .page-link {
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    transition: all 0.2s;
}

.category-pagination .page-link:hover {
    background: var(--bordo);
    border-color: var(--bordo);
    color: #fff;
}

.category-pagination .page-item.active .page-link {
    background: var(--bordo);
    border-color: var(--bordo);
    color: #fff;
}

.category-pagination .page-item.disabled .page-link {
    color: var(--gray-400);
    border-color: var(--gray-200);
    background: var(--gray-50);
}

@media (max-width: 991px) {
    .page-sidebar {
        position: static;
        margin-top: 1rem;
    }

    .article-body {
        padding: 1.5rem;
    }

    .article-date-badge {
        left: 1.5rem;
    }

    .category-header {
        padding: 1.25rem 1.5rem 0;
    }

    .category-list-item {
        padding: 1rem 1.5rem;
    }

    .category-pagination {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .article-hero-img {
        height: 240px;
    }

    .article-body {
        padding: 1.25rem;
    }

    .article-date-badge {
        left: 1.25rem;
        padding: 0.4rem 0.75rem;
        min-width: 60px;
    }

    .date-badge-day {
        font-size: 1.3rem;
    }

    .article-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .article-title {
        font-size: 1.2rem;
        margin-top: 0;
    }

    .article-meta {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .category-header {
        padding: 1rem 1.25rem 0;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .category-list-item {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .category-item-title {
        font-size: 0.88rem;
    }

    .category-pagination {
        padding: 1rem 1.25rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}
