:root {
    --bg-page: #ececec;
    --surface: #ffffff;
    --ink-900: #1f2120;
    --ink-700: #424544;
    --ink-500: #6c706f;
    --line: #d7d8d8;
    --line-soft: #e4e5e5;
    --chip-bg: #f4f5f5;
    --teal-900: #084f59;
    --teal-700: #0a6472;
    --green-700: #3f9f57;
    --green-900: #27733b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg-page);
    color: var(--ink-900);
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1120px;
}

.page-main {
    min-height: calc(100vh - 180px);
}

.site-header {
    background: #f3f3f3;
    border-bottom: 1px solid var(--line);
}

.site-brand {
    margin-right: 1rem;
    line-height: 0.95;
}

.site-brand-line {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #525657;
}

.site-brand-line.accent {
    color: #687072;
}

.navbar-toggler {
    border: 1px solid var(--line);
}

.navbar-nav .nav-link {
    color: #4f5555;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.25rem 0.55rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #1f2829;
}

.header-search-wrap {
    min-width: min(100%, 320px);
}

.header-search {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    background: var(--surface);
}

.header-search input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    padding: 0.34rem 0.48rem;
    font-size: 0.7rem;
    color: #2e3131;
}

.header-search input:focus {
    outline: none;
}

.header-search button {
    border: 0;
    border-left: 1px solid var(--line-soft);
    background: #f8f9f9;
    color: #4f595a;
    padding: 0.34rem 0.5rem;
    font-size: 0.72rem;
    line-height: 1;
}

.header-search button:hover {
    color: #1f363b;
}

.btn-subscribe {
    border: 1px solid var(--green-700);
    background: var(--green-700);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.23rem 0.58rem;
    border-radius: 4px;
    margin-left: 0.35rem;
}

.btn-subscribe:hover {
    background: var(--green-900);
    border-color: var(--green-900);
    color: #fff;
}

.home-page {
    padding-top: 2.4rem !important;
}

.home-heading h1 {
    margin: 0 0 0.4rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
}

.home-heading p {
    margin: 0;
    color: var(--ink-500);
    font-size: 0.86rem;
}

.browse-title {
    color: var(--ink-500);
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.browse-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.browse-links a {
    color: #4f6468;
    font-size: 0.72rem;
    font-weight: 600;
}

.browse-links a:hover {
    color: #1f3c42;
    text-decoration: underline;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.secondary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.news-card {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
}

.news-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-card-sm .news-card-image {
    aspect-ratio: 1 / 1;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card-body {
    padding: 0.82rem 0.9rem 0.9rem;
}

.news-chip,
.badge-category {
    display: inline-flex;
    align-items: center;
    padding: 0.16rem 0.36rem;
    border-radius: 3px;
    border: 1px solid var(--line-soft);
    background: var(--chip-bg);
    color: #596062;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.news-card h2,
.news-card h3 {
    margin: 0 0 0.35rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.08;
}

.news-card h2 {
    font-size: 1.6rem;
}

.news-card h3 {
    font-size: 1.32rem;
}

.news-card h2 a:hover,
.news-card h3 a:hover {
    color: #1f5057;
}

.news-card p {
    margin: 0;
    color: var(--ink-500);
    font-size: 0.72rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.search-panel .form-control,
.search-panel .form-select {
    border-color: #cfd3d4;
    font-size: 0.78rem;
}

.search-panel .form-control:focus,
.search-panel .form-select:focus {
    border-color: #87aeb6;
    box-shadow: 0 0 0 0.15rem rgba(61, 118, 130, 0.12);
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ced4d5;
    border-radius: 999px;
    background: #f8f9f9;
    color: #4e5a5d;
    font-size: 0.6rem;
    line-height: 1;
    padding: 0.22rem 0.45rem;
    font-weight: 600;
}

.tag-pill:hover {
    color: #21444b;
    border-color: #acb8bb;
}

.newsletter-block {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 0.7rem 0 0.5rem;
}

.newsletter-block h2 {
    margin: 0 0 0.45rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 600;
    line-height: 0.95;
    color: #3f8748;
}

.newsletter-block p {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    color: var(--ink-500);
}

.newsletter-form {
    display: inline-flex;
    align-items: center;
    width: min(420px, 100%);
    border: 1px solid #b7b9b9;
    background: var(--surface);
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1 1 auto;
    border: 0;
    padding: 0.4rem 0.55rem;
    font-size: 0.71rem;
    min-width: 0;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    border: 0;
    background: var(--green-700);
    color: #fff;
    padding: 0.4rem 0.62rem;
    font-size: 0.68rem;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--green-900);
}

.newsletter-block small {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.58rem;
    color: #7a7f7f;
}

.article-page {
    background: #f4f4f4;
}

.article-hero {
    background: linear-gradient(180deg, #095361 0%, #095865 50%, #0a606d 100%);
    color: #fff;
    padding: 3rem 0 2.5rem;
    text-align: center;
}

.article-hero-kicker {
    display: inline-block;
    margin: 0 0 0.6rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.18rem 0.5rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s;
}

.article-hero-kicker:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.article-hero h1 {
    margin: 0 auto;
    max-width: 780px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    font-weight: 600;
    line-height: 1;
}

.article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.65);
}

.article-hero-meta i {
    margin-right: 0.15rem;
}

.article-layout {
    max-width: 940px;
}

.reading-sheet {
    max-width: 740px;
    margin: 0 auto;
}

.reading-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink-500);
    font-size: 0.72rem;
}

.article-meta i {
    color: #63818c;
}

.share-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.share-icons a {
    width: 1.32rem;
    height: 1.32rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5f6667;
    font-size: 0.64rem;
}

.share-icons a:hover {
    color: #1e3136;
    border-color: #b6bdbe;
}

.tag-row-large .tag-pill {
    font-size: 0.62rem;
    padding: 0.24rem 0.5rem;
}

.article-content {
    color: #363a39;
}

.article-featured {
    margin: 0 auto;
    max-width: 100%;
}

.article-featured img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.article-intro {
    margin-bottom: 0.9rem;
    color: #4f5353;
    font-size: 0.78rem;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 1.4rem;
    margin-bottom: 0.45rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.45rem;
    font-weight: 600;
    line-height: 0.95;
    color: #2a2f2f;
}

.article-content p,
.article-content li {
    font-size: 0.78rem;
    line-height: 1.48;
    color: #3f4343;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.share-strip {
    margin-top: 1.6rem;
}

.share-strip p {
    margin-bottom: 0.35rem;
    color: var(--ink-500);
    font-size: 0.68rem;
    font-weight: 600;
}

.btn-outline-green {
    border: 1px solid #292d2d;
    background: #242828;
    color: #fff;
    border-radius: 3px;
    padding: 0.18rem 0.58rem;
    font-size: 0.62rem;
}

.btn-outline-green:hover {
    background: #111515;
    border-color: #111515;
    color: #fff;
}

.author-block {
    margin: 1.2rem auto 0;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line-soft);
    max-width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-align: left;
}

.author-avatar {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    background: #f0d4c2;
    color: #5d4337;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.author-block small {
    display: block;
    color: var(--ink-500);
    font-size: 0.58rem;
}

.author-block p {
    margin: 0;
    font-size: 0.68rem;
    color: #3f4241;
    font-weight: 600;
}

.related-posts {
    text-align: center;
}

.related-posts h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    line-height: 0.95;
    font-weight: 600;
}

.related-posts > p {
    margin: 0.38rem 0 1.1rem;
    color: var(--ink-500);
    font-size: 0.72rem;
}

.related-posts .news-card {
    text-align: left;
}

.section-header {
    border-bottom: 1px solid var(--line);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.section-header h1,
.section-header h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
    font-weight: 600;
}

.article-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
}

.article-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.article-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card .card-body {
    padding: 0.82rem 0.9rem 0.9rem;
}

.article-card .card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.52rem;
    line-height: 1.02;
    margin: 0 0 0.35rem;
}

.article-card .card-title a:hover {
    color: #214f56;
}

.article-card .card-text {
    margin: 0 0 0.45rem;
    color: var(--ink-500);
    font-size: 0.72rem;
}

.category-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    padding: 1rem;
}

.category-card h5 {
    margin: 0.35rem 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    line-height: 1;
}

.category-card .count {
    font-size: 0.7rem;
    color: var(--ink-500);
}

.btn-green {
    border: 1px solid var(--green-700);
    background: var(--green-700);
    color: #fff;
    border-radius: 4px;
    font-size: 0.74rem;
    font-weight: 600;
}

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

.pagination .page-link {
    color: #495a5f;
    border-color: var(--line);
    font-size: 0.74rem;
}

.pagination .page-item.active .page-link {
    background: var(--green-700);
    border-color: var(--green-700);
}

.site-footer {
    margin-top: 2rem;
    padding: 1.4rem 0 1rem;
    border-top: 1px solid var(--line);
    background: #e8e8e8;
}

.footer-brand .site-brand-line {
    font-size: 1.45rem;
    line-height: 0.9;
}

.footer-social a {
    width: 1.45rem;
    height: 1.45rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5a6061;
    font-size: 0.72rem;
}

.footer-social a:hover {
    border-color: #aeb3b4;
    color: #2f3536;
}

.site-footer-bottom {
    margin-top: 0.95rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line-soft);
}

.site-footer-bottom p {
    margin: 0;
    color: #6b7071;
    font-size: 0.65rem;
}

.footer-links a {
    color: #4f5556;
    font-size: 0.62rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, #d6e7ec, #a3cad6);
    color: #3c6f7b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
}

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

    .article-content h2,
    .article-content h3,
    .article-content h4 {
        font-size: 2.1rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-nav {
        padding-top: 0.5rem;
    }

    .header-search-wrap {
        min-width: 100%;
    }

    .btn-subscribe {
        margin-left: 0;
        margin-top: 0.2rem;
        display: inline-block;
    }

    .home-page {
        padding-top: 1.5rem !important;
    }

    .home-heading h1 {
        font-size: 2.35rem;
    }

    .featured-grid,
    .secondary-grid {
        grid-template-columns: 1fr;
    }

    .news-card-sm .news-card-image {
        aspect-ratio: 16 / 10;
    }

    .article-hero {
        padding: 2rem 0 1.5rem;
    }

    .article-hero h1 {
        font-size: 2.2rem;
    }

    .article-hero-meta {
        gap: 0.6rem;
        font-size: 0.62rem;
    }

    .reading-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-content h2,
    .article-content h3,
    .article-content h4 {
        font-size: 1.85rem;
    }

    .site-footer {
        margin-top: 1.3rem;
        padding-top: 1rem;
    }

    .site-footer-bottom {
        align-items: flex-start !important;
    }
}

/* ========================================
   HOME PAGE ENHANCEMENTS
   ======================================== */

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    margin-bottom: 0.5rem;
}

.hero-card {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: clamp(300px, 45vw, 460px);
    background: var(--teal-900);
    text-decoration: none;
    color: #fff;
}

.hero-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-card:hover img {
    transform: scale(1.03);
}

.hero-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, #084f59, #0a6472, #095361);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.2rem;
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    margin: 0.4rem 0 0.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.05;
    color: #fff;
}

.hero-content p {
    margin: 0 0 0.7rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    line-height: 1.45;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.7);
}

.hero-meta i {
    margin-right: 0.2rem;
}

.news-chip-light {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

/* Browse Bar */
.browse-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.2rem 0 2rem;
}

.browse-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.3rem 0.72rem;
    font-size: 0.68rem;
    font-weight: 600;
    background: var(--surface);
    color: var(--ink-700);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.browse-pill:hover {
    border-color: var(--teal-700);
    color: var(--teal-900);
    background: #eef6f7;
}

.pill-count {
    font-weight: 400;
    color: var(--ink-500);
    margin-left: 0.15rem;
}

/* Section Titles */
.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.5rem;
    margin-bottom: 1.2rem;
}

.section-title-row h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 600;
    line-height: 1;
}

.section-title-row a {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--teal-700);
    white-space: nowrap;
}

.section-title-row a:hover {
    color: var(--teal-900);
    text-decoration: underline;
}

/* Latest Grid (asymmetric: 1 large left + 2 stacked right) */
.latest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.15rem;
}

.latest-grid .news-card-hero {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.latest-grid .news-card-hero .news-card-image {
    flex: 1 1 0;
    aspect-ratio: auto;
    min-height: 0;
}

.latest-grid .news-card-hero .news-card-body {
    flex-shrink: 0;
}

.latest-grid .news-card-hero h2 {
    font-size: 1.85rem;
}

.latest-grid .news-card-md .news-card-image {
    aspect-ratio: 16 / 10;
}

/* Card Hover Enhancements */
.news-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.news-card-image img {
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.04);
}

/* Card Meta Row */
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    font-size: 0.64rem;
    color: var(--ink-500);
    margin-top: 0.45rem;
}

.card-meta i {
    color: #63818c;
    margin-right: 0.12rem;
}

/* Category Visual Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.category-card-visual {
    display: block;
    border: 1px solid var(--line);
    border-left: 3px solid var(--teal-700);
    border-radius: 14px;
    background: var(--surface);
    padding: 1.1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.category-card-visual:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    color: inherit;
}

.category-card-visual i {
    font-size: 1.4rem;
    color: var(--teal-700);
    margin-bottom: 0.4rem;
    display: block;
}

.category-card-visual h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 0.2rem;
}

.category-card-visual .count {
    font-size: 0.68rem;
    color: var(--ink-500);
}

/* Trending / Most Read Section */
.trending-wrapper {
    background: var(--teal-900);
    border-radius: 20px;
    padding: 2rem 2.2rem;
    color: #fff;
}

.trending-wrapper h2 {
    margin: 0 0 1.2rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 600;
    line-height: 1;
    color: #fff;
}

.trending-list {
    display: flex;
    flex-direction: column;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-decoration: none;
    color: #fff;
    transition: background 0.2s ease, padding-left 0.2s ease;
    border-radius: 8px;
}

.trending-item:first-child {
    border-top: none;
}

.trending-item:hover {
    background: rgba(255,255,255,0.06);
    padding-left: 1rem;
    color: #fff;
}

.trending-rank {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    min-width: 2.5rem;
    line-height: 1;
}

.trending-info {
    flex: 1;
}

.trending-category {
    display: inline-block;
    font-size: 0.56rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.15rem;
}

.trending-info h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.12;
    margin: 0 0 0.2rem;
    color: #fff;
}

.trending-meta {
    font-size: 0.64rem;
    color: rgba(255,255,255,0.55);
}

.trending-meta i {
    margin-right: 0.1rem;
}

/* Newsletter Enhanced */
.newsletter-enhanced {
    background: linear-gradient(135deg, #e8f5ec 0%, #ddf0f2 100%);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-enhanced .newsletter-block {
    padding: 0;
}

/* Responsive: Tablet */
@media (max-width: 991.98px) {
    .latest-grid {
        grid-template-columns: 1fr;
    }

    .latest-grid .news-card-hero {
        grid-row: auto;
    }

    .latest-grid .news-card-hero .news-card-image {
        aspect-ratio: 16 / 10;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: Mobile */
@media (max-width: 767.98px) {
    .hero-card {
        min-height: 300px;
        border-radius: 14px;
    }

    .hero-content {
        padding: 1.3rem 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 0.72rem;
    }

    .hero-meta {
        gap: 0.5rem;
        font-size: 0.62rem;
    }

    .browse-bar {
        margin: 0.8rem 0 1.5rem;
    }

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

    .category-card-visual {
        padding: 0.85rem;
    }

    .category-card-visual i {
        font-size: 1.2rem;
    }

    .category-card-visual h3 {
        font-size: 1.15rem;
    }

    .trending-wrapper {
        padding: 1.3rem 1.2rem;
        border-radius: 14px;
    }

    .trending-rank {
        font-size: 1.7rem;
        min-width: 2rem;
    }

    .trending-info h3 {
        font-size: 1.05rem;
    }

    .newsletter-enhanced {
        padding: 1.8rem 1rem;
        border-radius: 14px;
    }
}
