/* ==========================================================
   Public News
========================================================== */

.news-page-hero {
    position: relative;
    padding: 95px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(230, 181, 91, 0.18),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #3c2813 0%,
            #6a461d 100%
        );
}

.news-page-hero::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.news-page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.news-page-eyebrow {
    margin-bottom: 12px;
    color: #efc36e;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.news-page-hero h1 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 700;
}

.news-page-hero p:not(.news-page-eyebrow) {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1.8;
}


/* Listing */

.news-listing-section {
    padding: 90px 0;
    background: #fffdf9;
}

.news-list-card {
    overflow: hidden;
    border: 1px solid #eee4d5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow:
        0 18px 45px rgba(61, 40, 17, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.news-list-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 55px rgba(61, 40, 17, 0.13);
}

.news-list-image-link {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
    background: #f6ecdd;
}

.news-list-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-list-card:hover .news-list-image {
    transform: scale(1.045);
}

.news-list-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b77b25;
    font-size: 2.75rem;
}

.news-list-featured {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #a86e1c;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.08);
}

.news-list-body {
    padding: 26px;
}

.news-list-date {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 13px;
    color: #9a7d5b;
    font-size: 0.85rem;
}

.news-list-title {
    margin-bottom: 14px;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.45;
}

.news-list-title a {
    color: #352411;
    text-decoration: none;
}

.news-list-title a:hover {
    color: #a96f1d;
}

.news-list-description {
    display: -webkit-box;
    margin-bottom: 22px;
    overflow: hidden;
    color: #756551;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-list-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a96f1d;
    font-weight: 600;
    text-decoration: none;
}

.news-list-read-more i {
    transition: transform 0.2s ease;
}

.news-list-read-more:hover {
    color: #7f5014;
}

.news-list-read-more:hover i {
    transform: translateX(4px);
}


/* Empty State */

.news-list-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 70px 35px;
    border: 1px dashed #dfceb4;
    border-radius: 28px;
    background: #ffffff;
    text-align: center;
}

.news-list-empty > i {
    display: block;
    margin-bottom: 18px;
    color: #c08a3b;
    font-size: 3rem;
}

.news-list-empty h2 {
    margin-bottom: 12px;
    color: #382713;
    font-size: 1.65rem;
}

.news-list-empty p {
    max-width: 520px;
    margin: 0 auto 25px;
    color: #786852;
    line-height: 1.75;
}

.news-empty-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: #b47a26;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.news-empty-home-button:hover {
    background: #96631d;
    color: #ffffff;
}


/* Responsive */

@media (max-width: 767.98px) {
    .news-page-hero {
        padding: 70px 0 60px;
    }

    .news-listing-section {
        padding: 65px 0;
    }

    .news-list-image-link {
        height: 220px;
    }

    .news-list-body {
        padding: 22px;
    }
}

/* ==========================================================
   News Detail
========================================================== */

.news-detail-hero {
    position: relative;
    padding: 90px 0 75px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(235, 190, 104, 0.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #382512 0%,
            #68451d 100%
        );
}

.news-detail-hero-content {
    position: relative;
    z-index: 1;
    max-width: 940px;
}

.news-detail-breadcrumb .breadcrumb-item,
.news-detail-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.72);
}

.news-detail-breadcrumb .breadcrumb-item a {
    text-decoration: none;
}

.news-detail-breadcrumb .breadcrumb-item.active {
    color: #efc36e;
}

.news-detail-breadcrumb
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

.news-detail-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    padding: 7px 13px;
    border: 1px solid rgba(239, 195, 110, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #efc36e;
    font-size: 0.82rem;
    font-weight: 700;
}

.news-detail-title {
    max-width: 900px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4.5vw, 4.3rem);
    font-weight: 700;
    line-height: 1.25;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.news-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}


/* Main section */

.news-detail-section {
    padding: 85px 0;
    background: #fffdf9;
}

.news-detail-article {
    padding: 34px;
    border: 1px solid #eee4d5;
    border-radius: 26px;
    background: #ffffff;
    box-shadow:
        0 20px 55px rgba(62, 41, 19, 0.08);
}

.news-detail-image-wrapper {
    margin: -34px -34px 34px;
    overflow: hidden;
    border-radius: 26px 26px 0 0;
}

.news-detail-image {
    display: block;
    width: 100%;
    max-height: 540px;
    object-fit: cover;
}

.news-detail-lead {
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 4px solid #bd8430;
    color: #53422f;
    font-size: 1.18rem;
    font-weight: 500;
    line-height: 1.8;
}

.news-detail-content {
    color: #645440;
    font-size: 1.05rem;
    line-height: 2;
}

.news-detail-content p {
    margin-bottom: 1.3rem;
}

.news-detail-footer {
    display: flex;
    flex-wrap: wrap;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid #eee4d5;
}

.news-detail-back-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0.82rem 1.4rem;
    border-radius: 999px;
    background: #b77b25;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.news-detail-back-button:hover {
    background: #95611c;
    color: #ffffff;
}


/* Sidebar */

.news-detail-sidebar {
    position: sticky;
    top: 100px;
}

.news-sidebar-card {
    padding: 28px;
    border: 1px solid #eee4d5;
    border-radius: 24px;
    background: #ffffff;
    box-shadow:
        0 18px 45px rgba(62, 41, 19, 0.07);
}

.news-sidebar-eyebrow {
    margin-bottom: 6px;
    color: #b77b25;
    font-size: 0.82rem;
    font-weight: 700;
}

.news-sidebar-title {
    margin-bottom: 22px;
    color: #382713;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-sidebar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0e7db;
    text-decoration: none;
}

.news-sidebar-image {
    flex: 0 0 82px;
    width: 82px;
    height: 68px;
    border-radius: 12px;
    object-fit: cover;
}

.news-sidebar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7efe2;
    color: #ba8232;
}

.news-sidebar-content {
    min-width: 0;
}

.news-sidebar-content small {
    display: block;
    margin-bottom: 4px;
    color: #9a7c59;
    font-size: 0.75rem;
}

.news-sidebar-content strong {
    display: -webkit-box;
    overflow: hidden;
    color: #44321d;
    font-size: 0.93rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-sidebar-item:hover strong {
    color: #a66d1e;
}

.news-sidebar-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: #a66d1e;
    font-weight: 600;
    text-decoration: none;
}


/* Responsive */

@media (max-width: 991.98px) {
    .news-detail-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .news-detail-hero {
        padding: 70px 0 60px;
    }

    .news-detail-section {
        padding: 60px 0;
    }

    .news-detail-article {
        padding: 24px;
        border-radius: 20px;
    }

    .news-detail-image-wrapper {
        margin: -24px -24px 28px;
        border-radius: 20px 20px 0 0;
    }

    .news-sidebar-card {
        padding: 22px;
    }
}