/* ============================================================
   IG PAGES — Supplemental Styles
   All page-specific CSS extracted from inline styles and
   <style> blocks across the site.
   ============================================================ */

/* ============ BIG CTA SECTION ============ */
.big-cta {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 3rem auto;
    max-width: 1300px;
    padding: 0 1.5rem;
}
.big-cta-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.big-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.big-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,26,43,0.3) 0%, rgba(11,26,43,0.55) 50%, rgba(11,26,43,0.8) 100%);
    z-index: 1;
}
.big-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 700px;
    margin-left: auto;
}
.big-cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}
.big-cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

/* ============ INNER HERO BACKGROUNDS ============ */
.inner-hero-contact {
    background-image: linear-gradient(rgba(11,26,43,0.85), rgba(11,26,43,0.85)), url('../images/hero/contact-page-hero.jpg');
    background-size: cover;
    background-position: center;
}
.inner-hero-about {
    background-image: linear-gradient(rgba(11,26,43,0.85), rgba(11,26,43,0.85)), url('../images/hero/leadership-team-hero.jpg');
    background-size: cover;
    background-position: center;
}
.inner-hero-how-we-work {
    background-image: linear-gradient(rgba(11,26,43,0.82), rgba(11,26,43,0.82)), url('../images/hero/how-we-work-hero.jpg');
    background-size: cover;
    background-position: center;
}
.inner-hero-blog {
    background-image: linear-gradient(rgba(11,26,43,0.85), rgba(11,26,43,0.85)), url('../images/hero/blog-hero.jpg');
    background-size: cover;
    background-position: center;
}
.inner-hero-privacy {
    background-image: linear-gradient(rgba(11,26,43,0.85), rgba(11,26,43,0.85)), url('../images/hero/privacy-policy-hero.jpg');
    background-size: cover;
    background-position: center;
}
.inner-hero-terms {
    background-image: linear-gradient(rgba(11,26,43,0.85), rgba(11,26,43,0.85)), url('../images/hero/terms-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* ============ CONTACT PAGE ============ */
.contact-tiles-stacked {
    grid-template-columns: 1fr;
    max-width: 400px;
}

/* ============ ABOUT PAGE — Value Cards 2x2 Grid ============ */
.value-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}
.value-card-centered {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
}
.value-icon-centered {
    margin: 0 auto 0.75rem;
}
.value-icon-purple {
    background: linear-gradient(135deg, #8882EE, #6860d8);
}
.value-icon-coral {
    background: linear-gradient(135deg, #FF6B8A, #FF2759);
}

/* ============ ABOUT PAGE — Team Rows ============ */
.team-row-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    justify-items: center;
}
.team-row-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.team-member-flex-none {
    flex: none;
}
.section-head-spaced {
    margin-bottom: 3rem;
}

/* footer-legal-header no longer needed — Legal is its own column */

/* ============ WHO WE SERVE (How We Work page) ============ */
.serve-section {
    padding: 5rem 0;
}
.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.serve-card {
    background: var(--light-base);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.serve-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11,14,26,0.07);
}
.serve-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--primary-cyan);
    margin-bottom: 0.6rem;
}
.serve-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============ 404 PAGE ============ */
.error-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    background: var(--light-base);
}
.error-body {
    max-width: 560px;
}
.error-code {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.error-body h1 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.error-body p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

/* ============ BLOG INDEX PAGE ============ */
.blog-cats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 48px 0;
    justify-content: center;
}
.blog-cat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border: 1.5px solid var(--text-gray, #666666);
    border-radius: 24px;
    background-color: transparent;
    color: var(--text-dark, #1A1A1A);
    cursor: pointer;
    transition: all 0.3s ease;
}
.blog-cat:hover {
    border-color: var(--primary-cyan, #2AC8D3);
    color: var(--primary-cyan, #2AC8D3);
}
.blog-cat.is-active {
    background-color: var(--primary-cyan, #2AC8D3);
    color: white;
    border-color: var(--primary-cyan, #2AC8D3);
}

/* Featured Post */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: var(--light-base, #FAFAF8);
    border-radius: 16px;
    padding: 40px;
    margin: 48px 0;
    border: 1px solid #E8E8E5;
}
.featured-post-img {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #131729, #1c2548);
    border-radius: 12px;
    overflow: hidden;
}
.featured-post-content h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    line-height: 1.2;
    margin: 16px 0;
    color: var(--text-dark, #1A1A1A);
}
.featured-post-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray, #666666);
    margin: 16px 0 24px 0;
}
.featured-post-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-gray, #666666);
}
.featured-post-meta strong {
    color: var(--text-dark, #1A1A1A);
}
.post-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background-color: var(--primary-cyan, #2AC8D3);
    color: white;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* Post Grid */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 48px 0;
}
.post-card {
    background-color: white;
    border: 1px solid #E8E8E5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    border-color: var(--primary-cyan, #2AC8D3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(42, 200, 211, 0.1);
}
.post-card a {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.post-card-img {
    aspect-ratio: 16 / 9;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.blog-card-image[style*="background-image"] {
    background-size: cover;
    background-position: center;
}
.post-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.post-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 18px;
    line-height: 1.3;
    margin: 8px 0 12px 0;
    color: var(--text-dark, #1A1A1A);
}
.post-card-excerpt {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray, #666666);
    margin-bottom: 16px;
    flex: 1;
}
.post-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--text-gray, #666666);
    border-top: 1px solid #F0F0ED;
    padding-top: 12px;
}

/* Newsletter Section (blog index) */
.newsletter-section {
    background-color: var(--light-base, #FAFAF8);
    border-radius: 16px;
    padding: 60px 40px;
    margin: 60px 0;
    text-align: center;
    border: 1px solid #E8E8E5;
}
.newsletter-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-cyan, #2AC8D3);
    margin-bottom: 12px;
}
.newsletter-section h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    line-height: 1.2;
    margin: 12px 0 32px 0;
    color: var(--text-dark, #1A1A1A);
}
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--text-gray, #666666);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-cyan, #2AC8D3);
    box-shadow: 0 0 0 3px rgba(42, 200, 211, 0.1);
}
.newsletter-form button {
    padding: 12px 24px;
    background-color: var(--primary-cyan, #2AC8D3);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.newsletter-form button:hover {
    background-color: #22a9b3;
    transform: translateY(-2px);
}
.newsletter-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--text-gray, #666666);
    margin-top: 12px;
}

/* ============ BLOG POST ARTICLE PAGES ============ */

/* Breadcrumb */
.breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 2rem auto;
    max-width: 900px;
    padding: 0 2rem;
}
.breadcrumb a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--accent-coral);
}
.breadcrumb span {
    margin: 0 0.5rem;
    color: var(--text-gray);
}

/* Article Header */
.article-header {
    max-width: 900px;
    margin: 3rem auto 2rem;
    padding: 0 2rem;
    text-align: center;
}
.article-category {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.article-header h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    max-width: 100%;
}
.article-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.article-meta a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}
.article-meta a:hover {
    color: var(--primary-cyan);
}

/* Hero Image */
.article-hero-img {
    max-width: 900px;
    width: 100%;
    aspect-ratio: 21 / 9;
    margin: 2rem auto;
    padding: 0 2rem;
    box-sizing: border-box;
}
.article-hero-img img,
.article-hero-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #131729, #1c2548, #0B0E1A);
}

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

/* Article Body */
.article-body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}
.article-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}
.article-body h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1.25rem 0;
    line-height: 1.3;
    scroll-margin-top: 100px;
}
.article-body h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 1.75rem 0 1rem 0;
    line-height: 1.4;
}
.article-body ul,
.article-body ol {
    margin: 1.5rem 0 1.5rem 2rem;
    padding: 0;
}
.article-body li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Blockquote / Callout */
.article-body blockquote {
    border-left: 4px solid var(--primary-cyan);
    background-color: rgba(42, 200, 211, 0.08);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}
.article-body blockquote p {
    margin: 0 0 0.75rem 0;
}
.article-body blockquote .attribution {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1rem;
}
.article-body blockquote .attribution a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: color 0.2s;
}
.article-body blockquote .attribution a:hover {
    color: var(--accent-coral);
}

/* Table */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}
.article-body th {
    background-color: var(--deep-navy);
    color: var(--light-base);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
}
.article-body td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}
.article-body tr:last-child td {
    border-bottom: none;
}
.article-body tbody tr:nth-child(even) {
    background-color: rgba(42, 200, 211, 0.04);
}

/* Table of Contents (Sticky Sidebar) */
.toc {
    position: sticky;
    top: 100px;
    height: fit-content;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    background-color: var(--light-base);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
}
.toc h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}
.toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.toc li {
    margin-bottom: 0.75rem;
}
.toc a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
    display: block;
    padding-left: 1rem;
    border-left: 2px solid transparent;
    transition: border-color 0.2s;
}
.toc a:hover {
    color: var(--primary-cyan);
    border-left-color: var(--primary-cyan);
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}
.faq-section h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}
.faq-items {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    transition: background-color 0.2s;
}
.faq-item:hover {
    background-color: rgba(42, 200, 211, 0.04);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    user-select: none;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
}
.faq-question:hover {
    color: var(--primary-cyan);
}
.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.faq-answer {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin-top 0.3s;
    margin-top: 0;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
}

/* Related Posts Grid */
.related-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}
.related-section h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Blog Cards (related posts + blog index) */
.blog-card {
    background: var(--light-base);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #8882EE, #FF2759);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-base);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    text-align: center;
    padding: 1rem;
    background-size: cover;
    background-position: center;
}
.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-category {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.blog-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    flex-grow: 1;
}
.blog-card-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Author Profile (blog posts) */
.author-profile {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    margin: 48px 0 32px;
    background-color: var(--light-base, #FAFAF8);
    border-radius: 16px;
    border: 1px solid #E8E8E5;
}
.author-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.author-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.author-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark, #1A1A1A);
    margin: 0;
}
.author-linkedin {
    display: inline-flex;
    align-items: center;
    color: var(--primary-cyan, #2AC8D3);
}
.author-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-cyan, #2AC8D3);
    margin: 0 0 8px;
}
.author-bio {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray, #666666);
    margin: 0;
}

/* Blog post newsletter (LinkedIn CTA variant) */
.blog-newsletter-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(42, 200, 211, 0.1), rgba(136, 130, 238, 0.1));
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(42, 200, 211, 0.2);
}
.blog-newsletter-section h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}
.blog-newsletter-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2AC8D3;
    margin-bottom: 12px;
}
.blog-newsletter-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}
.blog-newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
}

/* Internal links in article body */
.article-link {
    color: var(--primary-cyan, #2AC8D3);
}

/* Featured post image fill */
.featured-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Blog newsletter note (LinkedIn variant) */
.blog-newsletter-note {
    margin-bottom: 24px;
    font-size: 16px;
    color: #666;
}

/* Blog hero backgrounds */
.inner-hero-blog-landing {
    background-image: linear-gradient(rgba(11,26,43,0.85), rgba(11,26,43,0.85)), url('../images/hero/blog-landing-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* ============ RESPONSIVE — PAGE-SPECIFIC ============ */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .toc {
        position: static;
        top: auto;
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    .featured-post {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    .featured-post-content h2 {
        font-size: 24px;
    }
    .post-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-section {
        padding: 40px 24px;
    }
    .newsletter-section h2 {
        font-size: 28px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .article-header h1 {
        font-size: 2rem;
    }
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    .article-body {
        font-size: 1rem;
    }
    .article-body h2 {
        font-size: 1.5rem;
    }
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    .serve-grid {
        grid-template-columns: 1fr 1fr;
    }
    .big-cta-content {
        margin-left: auto;
        margin-right: auto;
        padding: 3rem 1.5rem;
    }
    .value-grid-2x2 {
        grid-template-columns: 1fr;
    }
    .team-row-3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-row-4col {
        grid-template-columns: repeat(2, 1fr);
    }
    .author-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }
    .author-name-row {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .serve-grid {
        grid-template-columns: 1fr;
    }
    .team-row-3col,
    .team-row-4col {
        grid-template-columns: 1fr;
    }
}
