.insights-page {
    background: var(--pure-white);
}

.insights-breadcrumb {
    background: var(--off-white);
    border-bottom: 1px solid var(--hairline);
    padding: 14px 0;
}

.insights-breadcrumb ol {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.insights-breadcrumb li,
.insights-breadcrumb a {
    color: rgba(74, 46, 36, 0.68);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.insights-breadcrumb a:hover {
    color: var(--gold);
}

.insights-breadcrumb li + li::before {
    color: rgba(74, 46, 36, 0.38);
    content: "/";
    margin-right: 10px;
}

.insights-hero {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 248, 245, 0.94) 42%, rgba(251, 248, 245, 0.62) 100%),
        url("../../images/public/insights/insights-hero-4k.webp");
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid var(--hairline);
    min-height: 560px;
    padding: 76px 0 58px;
}

.insights-hero h1 {
    color: var(--charcoal);
    font-size: clamp(2.4rem, 4.8vw, 4.8rem);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 22px;
    max-width: 780px;
}

.insights-lead {
    color: rgba(74, 46, 36, 0.78);
    font-size: 1.1rem;
    line-height: 1.75;
    margin: 0;
    max-width: 680px;
}

.insights-search {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    box-shadow: 0 18px 46px var(--soft-shadow);
    padding: 22px;
}

.insights-search .form-label {
    color: var(--charcoal);
    font-weight: 700;
    margin-bottom: 10px;
}

.insights-search .input-group-text,
.insights-search .form-control {
    background: var(--pure-white);
    border-color: rgba(74, 46, 36, 0.14);
    color: var(--charcoal);
}

.insights-search .form-control {
    min-height: 48px;
}

.insights-section {
    padding: 72px 0;
}

.insights-section + .insights-section {
    border-top: 1px solid var(--hairline);
}

.insights-archive-body {
    color: rgba(46, 28, 22, 0.82);
    font-size: 1.04rem;
    line-height: 1.8;
    max-width: 900px;
}

.insights-archive-body h2,
.insights-archive-body h3 {
    color: var(--charcoal);
    font-weight: 700;
    line-height: 1.2;
}

.insights-archive-body h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    margin: 0 0 14px;
}

.insights-archive-body h3 {
    font-size: 1.45rem;
    margin: 28px 0 12px;
}

.insights-archive-body p,
.insights-archive-body ul {
    margin-bottom: 20px;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2 {
    color: var(--charcoal);
    font-size: clamp(1.9rem, 3vw, 3rem);
    font-weight: 700;
    margin: 0;
}

.section-heading.compact {
    margin-bottom: 20px;
}

.section-heading.compact h2 {
    font-size: clamp(1.55rem, 2.3vw, 2.25rem);
}

.featured-insight,
.content-panel,
.insight-category-card {
    background: var(--pure-white);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    box-shadow: 0 14px 34px var(--soft-shadow);
}

.featured-insight {
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 32px;
}

.featured-insight h3 {
    color: var(--charcoal);
    font-size: clamp(1.55rem, 2.4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 14px 0 16px;
}

.featured-insight h3 a {
    color: inherit;
    text-decoration: none;
}

.featured-insight h3 a:hover {
    color: var(--gold);
}

.featured-insight p {
    color: rgba(46, 28, 22, 0.78);
    line-height: 1.7;
    margin-bottom: 24px;
}

.insight-category {
    color: var(--gold);
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.insight-meta {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.insight-meta span,
.latest-item time {
    color: rgba(74, 46, 36, 0.62);
    font-size: 0.88rem;
    font-weight: 600;
}

.insight-meta a,
.popular-list a,
.latest-item a {
    color: var(--charcoal);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.insight-meta a:hover,
.popular-list a:hover,
.latest-item a:hover {
    color: var(--gold);
}

.insights-categories {
    background: var(--off-white);
}

.category-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.insight-category-card {
    color: var(--charcoal);
    display: flex;
    flex-direction: column;
    min-height: 210px;
    padding: 24px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-category-card:hover {
    border-color: rgba(169, 113, 100, 0.34);
    box-shadow: 0 18px 38px rgba(74, 46, 36, 0.12);
    transform: translateY(-4px);
}

.insight-category-card--active {
    border-color: rgba(169, 113, 100, 0.48);
    box-shadow: inset 0 0 0 1px rgba(169, 113, 100, 0.18), 0 14px 34px var(--soft-shadow);
}

.insight-category-card i {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.insight-category-card span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.insight-category-card small {
    color: rgba(46, 28, 22, 0.68);
    line-height: 1.5;
}

.content-panel {
    height: 100%;
    padding: 30px;
}

.popular-list {
    counter-reset: popular;
    list-style: none;
    margin: 0;
    padding: 0;
}

.popular-list li {
    align-items: flex-start;
    border-top: 1px solid var(--hairline);
    display: flex;
    gap: 14px;
    padding: 17px 0;
}

.popular-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.popular-list li::before {
    color: var(--gold);
    content: counter(popular, decimal-leading-zero);
    counter-increment: popular;
    font-weight: 800;
}

.popular-list--grid {
    display: grid;
    gap: 0 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.popular-list--grid li:nth-child(2) {
    border-top: 0;
    padding-top: 0;
}

.latest-feed {
    display: grid;
    gap: 0;
}

.latest-item {
    align-items: center;
    border-top: 1px solid var(--hairline);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 19px 0;
}

.latest-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.latest-item h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45;
    margin: 7px 0 0;
}

.insights-empty-state,
.insights-panel-empty {
    background: var(--off-white);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 28px;
}

.insights-empty-state h3 {
    color: var(--charcoal);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.insights-panel-empty h3 {
    color: var(--charcoal);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.insights-empty-state p,
.insights-panel-empty p {
    color: rgba(46, 28, 22, 0.72);
    line-height: 1.65;
    margin: 0;
}

.insight-single-hero {
    background: var(--off-white);
    border-bottom: 1px solid var(--hairline);
    padding: 70px 0;
}

.insight-single-hero h1 {
    color: var(--charcoal);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 16px 0 20px;
}

.insight-single-hero p {
    color: rgba(46, 28, 22, 0.76);
    font-size: 1.08rem;
    line-height: 1.75;
    margin: 0;
}

.insight-single-meta {
    color: rgba(74, 46, 36, 0.62);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 12px;
    margin-top: 24px;
}

.insight-single-image {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    box-shadow: 0 18px 46px var(--soft-shadow);
    margin: 0;
    overflow: hidden;
}

.insight-single-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.insight-single-body {
    color: rgba(46, 28, 22, 0.82);
    font-size: 1.04rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 820px;
}

.insight-single-body h2,
.insight-single-body h3,
.insight-callout h3 {
    color: var(--charcoal);
    font-weight: 700;
    line-height: 1.2;
}

.insight-single-body h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    margin: 36px 0 14px;
}

.insight-single-body h3 {
    font-size: 1.45rem;
    margin: 28px 0 12px;
}

.insight-single-body p,
.insight-single-body ul {
    margin-bottom: 20px;
}

.insight-callout {
    background: var(--off-white);
    border: 1px solid var(--hairline);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    margin: 28px 0;
    padding: 24px;
}

@media (max-width: 991.98px) {
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .insights-hero {
        padding: 54px 0 42px;
    }

    .insights-section {
        padding: 54px 0;
    }

    .featured-insight,
    .content-panel {
        padding: 24px;
    }

    .latest-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .popular-list--grid {
        grid-template-columns: 1fr;
    }

    .popular-list--grid li:nth-child(2) {
        border-top: 1px solid var(--hairline);
        padding-top: 17px;
    }

    .insight-single-hero {
        padding: 52px 0;
    }
}

@media (max-width: 575.98px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .insight-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}
