﻿/* ==========================================================================
   Main Component Styles
   ========================================================================== */

/* ── Global form field height ── */
input,
input[type="file"],
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
select {
    height : 50px !important;
}

input[type="checkbox"],
input[type="radio"] {
    height : auto !important;
}

/* ── Global form field border ── */
input,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="file"],
input[type="search"],
input[type="password"],
select,
textarea {
    border : 1px solid rgb(29 117 189 / 30%) !important;
}

input[type="submit"] {
    border : none !important;
}

/* -------------------------------------------------------------------------
   Site Footer
   ------------------------------------------------------------------------- */
.site-footer {
    background-color: #0c0c0c;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Poppins', sans-serif;
}

/* ── Footer top: 5-column grid ── */
.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main-grid {
    display             : grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.1fr 1.3fr;
    gap                 : 48px;
    padding             : 64px 0 40px;
    align-items         : start;
}

/* ── Column 1: Brand ── */
.footer-brand { max-width: 360px; }

.footer-logo-link {
    display       : inline-block;
    text-decoration: none;
    margin-bottom : 20px;
}

.footer-logo-img {
    height    : 60px;
    width     : auto;
    max-width : 220px;
    display   : block;
    object-fit: contain;
}

.footer-desc {
    font-size  : 12px;
    line-height: 18px;
    color      : #ffffff;
    margin     : 0;
    opacity    : 0.749;
}

/* ── Social icon row ── */
.footer-social-row {
    display    : flex;
    flex-wrap  : wrap;
    gap        : 12px;
    margin-top : 24px;
    align-items: center;
}

.footer-social-btn {
    display        : flex;
    align-items    : center;
    justify-content: center;
    width          : 35px;
    height         : 35px;
    border-radius  : 50%;
    background     : #ffffff;
    border         : none;
    color          : #000000;       /* currentColor → black icons          */
    text-decoration: none;
    flex-shrink    : 0;
    transition     : background 250ms ease,
                     color 250ms ease,
                     transform 250ms ease,
                     box-shadow 250ms ease;
}

.footer-social-btn:hover {
    background     : var(--color-primary, #F58220);
    color          : #ffffff;       /* currentColor → white icons          */
    transform      : translateY(-3px);
    box-shadow     : 0 6px 20px rgba(245, 130, 32, 0.45);
    text-decoration: none;
}

/* SVG sizing — all icons */
.footer-social-btn svg {
    display    : block;
    width      : 20px;
    height     : 20px;
    flex-shrink: 0;
    transition : fill 250ms ease, stroke 250ms ease;
}

/* YouTube play triangle:
   Normal  — white (cuts through the black outer shape like the YT logo)
   Hover   — matches orange bg so the cutout disappears naturally        */
.footer-social-btn .yt-play {
    fill      : #ffffff;
    transition: fill 250ms ease;
}

.footer-social-btn:hover .yt-play {
    fill: var(--color-primary, #F58220);
}


.footer-col-title {
    font-size     : 16px;
    font-weight   : 600;
    color         : #4CAF50;
    margin        : 0 0 24px;
    font-family   : 'Poppins', sans-serif;
    letter-spacing: 0;
}

.footer-nav-list {
    list-style: none;
    padding   : 0;
    margin    : 0;
}

.footer-nav-list li {
    margin    : 0 0 14px;
    padding   : 0;
    border    : none;
}

.footer-nav-list li:last-child { margin-bottom: 0; }

.footer-nav-list a {
    font-size      : 15px;
    font-weight    : 400;
    color          : rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-family    : 'Poppins', sans-serif;
    transition     : color 200ms ease;
    display        : inline-block;
}

.footer-nav-list a:hover {
    color          : #4CAF50;
    text-decoration: none;
}

/* ── Contact column (5) ── */
.footer-contact-info {
    font-style: normal;
    margin    : 0;
}

.footer-contact-item {
    font-size  : 15px;
    color      : rgba(255, 255, 255, 0.78);
    margin     : 0 0 16px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.footer-contact-item:last-child { margin-bottom: 0; }

.footer-contact-item a {
    color          : rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition     : color 200ms ease;
}

.footer-contact-item a:hover { color: #4CAF50; text-decoration: none; }

/* ── Footer bottom bar ── */
.footer-bottom {
    padding: 22px 0;
}

.footer-bottom-inner {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    gap            : 16px;
    flex-wrap      : wrap;
}

.footer-copyright-text {
    font-size  : 14px;
    color      : rgba(255, 255, 255, 0.45);
    margin     : 0;
    font-family: 'Poppins', sans-serif;
}

/* Legal links nav */
.footer-legal-list {
    display    : flex;
    align-items: center;
    gap        : 32px;
    list-style : none;
    padding    : 0;
    margin     : 0;
}

.footer-legal-list li { margin: 0; padding: 0; border: none; }

.footer-legal-list a {
    font-size      : 14px;
    color          : rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-family    : 'Poppins', sans-serif;
    transition     : color 200ms ease;
}

.footer-legal-list a:hover {
    color          : rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

/* ── Footer responsive ─────────────────────────────────────────────────── */

/* ── 1024 – 1380px: footer compact for laptop range ── */
@media (min-width: 1024px) and (max-width: 1380px) {
    .footer-main-grid {
        gap    : 28px;
        padding: 56px 0 36px;
    }
    .footer-col-title    { font-size: 15px; margin-bottom: 20px; }
    .footer-nav-list a   { font-size: 14px; }
    .footer-contact-item { font-size: 14px; }
}

/* ── TABLET (768px – 1023px): brand left (fixed width), menus in 2x2 grid right ── */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-main-grid {
        grid-template-columns: 240px 1fr 1fr;
        grid-template-rows   : auto auto;
        gap    : 24px 28px;
        padding: 48px 0 36px;
        align-items: start;
    }

    /* Brand spans both rows in the left column — fixed width, never grows */
    .footer-brand {
        grid-column: 1;
        grid-row   : 1 / 3;
        display    : block;
        max-width  : 240px;
    }

    /* Tighter nav list spacing at tablet */
    .footer-nav-list li { margin: 0 0 5px; }

    /* Explore — col 2, row 1 */
    .footer-main-grid > *:nth-child(2) {
        grid-column: 2;
        grid-row   : 1;
    }

    /* About — col 3, row 1 */
    .footer-main-grid > *:nth-child(3) {
        grid-column: 3;
        grid-row   : 1;
    }

    /* Get Involved — col 2, row 2 */
    .footer-main-grid > *:nth-child(4) {
        grid-column: 2;
        grid-row   : 2;
    }

    /* Contact — col 3, row 2 */
    .footer-contact-col {
        grid-column: 3;
        grid-row   : 2;
        display    : block;
    }

    .footer-logo-img,
    .site-branding .custom-logo { height: 48px; }

    .footer-desc { margin: 12px 0 16px; }

    .footer-col-title    { font-size: 13px; margin-bottom: 16px; text-align: center; }
    .footer-nav-list     { text-align: center; }
    .footer-nav-list a   { font-size: 13px; }
    .footer-contact-col  { text-align: center; }
    .footer-contact-item { font-size: 13px; margin-bottom: 10px; text-align: center; }

    .footer-contact-info { display: block; }
    .footer-contact-item:last-child { margin-bottom: 0; }
}

/* ── MOBILE (≤ 767px): single column, everything centered ── */
@media (max-width: 767px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap    : 28px;
        padding: 40px 0 32px;
        text-align: center;
    }

    /* Brand column */
    .footer-brand    { grid-column: auto; display: block; }
    .footer-logo-link { display: inline-block; }
    .footer-logo-img  { margin: 0 auto; height: 50px; }
    .footer-desc      { margin: 12px auto 16px; max-width: 320px; }
    .footer-social-row { justify-content: center; margin-top: 16px; }

    /* Nav columns */
    .footer-col-title  { text-align: center; }
    .footer-nav-list   { text-align: center; }

    /* Contact column */
    .footer-contact-col  { grid-column: auto; display: block; text-align: center; }
    .footer-contact-info { display: block; }
    .footer-contact-item { text-align: center; margin-bottom: 12px; }
    .footer-contact-item:last-child { margin-bottom: 0; }

    /* Bottom bar */
    .footer-bottom-inner {
        flex-direction: column;
        align-items   : center;
        gap           : 12px;
        text-align    : center;
    }
    .footer-copyright-text { text-align: center; }
    .footer-legal-list {
        justify-content: center;
        gap            : 20px;
    }
}

/* ── SMALL MOBILE (≤ 400px) ── */
@media (max-width: 400px) {
    .footer-main-grid { gap: 24px; padding: 32px 0 28px; }
    .footer-social-row { gap: 8px; }
    .footer-social-btn { width: 35px; height: 35px; }
    .footer-social-btn svg { width: 15px; height: 15px; }
    .footer-legal-list { flex-direction: column; gap: 8px; }
}

/* -------------------------------------------------------------------------
   Blog Posts Grid
   ------------------------------------------------------------------------- */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-8);
}

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

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

/* Post card read more link */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.read-more-link:hover {
    gap: var(--spacing-3);
    text-decoration: none;
    color: var(--color-primary-dark);
}

/* Post author mini */
.post-author-mini {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.author-avatar-mini {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.author-name-mini {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-light);
}

/* Post thumbnail fallback */
.post-thumbnail-fallback {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
}

/* -------------------------------------------------------------------------
   Search Form Styles
   ------------------------------------------------------------------------- */
.search-form-inner {
    display: flex;
    gap: var(--spacing-2);
}

.search-form-inner .search-field {
    flex: 1;
    border-radius: var(--radius-full);
}

.search-form-inner .search-submit {
    flex-shrink: 0;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    cursor: pointer;
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    padding: var(--spacing-3) var(--spacing-5);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
}

.search-form-inner .search-submit:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

@media (max-width: 480px) {
    .search-submit-text { display: none; }
}

/* Search count */
.search-count {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-6);
}

/* -------------------------------------------------------------------------
   Single Post Extended Layout
   ------------------------------------------------------------------------- */
.member-spotlight-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--spacing-12);
    align-items: start;
    padding: var(--spacing-12) 0;
}

@media (max-width: 1024px) {
    .member-spotlight-layout {
        grid-template-columns: 1fr;
    }
}

.member-profile-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    border: 1px solid var(--color-border);
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-6));
    text-align: center;
}

.member-portrait {
    margin: 0 auto var(--spacing-6);
    width: 160px;
    height: 160px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-lg);
}

.member-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2);
}

.member-role {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-2);
    font-size: var(--font-size-sm);
}

.member-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-1);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-5);
}

.member-social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-5);
}

.member-social-links .social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    width: auto;
    height: auto;
    padding: var(--spacing-2) var(--spacing-4);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.member-social-links .social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: none;
}

.member-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    justify-content: center;
}

.member-story-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-8);
}

/* -------------------------------------------------------------------------
   Podcast Single Layout
   ------------------------------------------------------------------------- */
.podcast-hero {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-alt) 100%);
    padding: var(--spacing-12) 0 0;
    margin-bottom: var(--spacing-10);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.podcast-hero-inner {
    display: flex;
    gap: var(--spacing-8);
    align-items: flex-end;
    padding: 0 var(--spacing-8) var(--spacing-8);
}

@media (max-width: 640px) {
    .podcast-hero-inner { flex-direction: column; align-items: center; }
}

.podcast-artwork {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.podcast-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-meta-block { color: var(--color-white); }

.podcast-series-name {
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: var(--spacing-3);
}

.podcast-title { color: var(--color-white) !important; margin: var(--spacing-3) 0 !important; }

.podcast-info-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-5);
}

.podcast-duration { display: flex; align-items: center; gap: var(--spacing-1); }

.podcast-listen-links { display: flex; flex-wrap: wrap; gap: var(--spacing-3); }

.podcast-platform-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border-radius: var(--radius-full);
    padding: var(--spacing-2) var(--spacing-4);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.podcast-platform-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

.podcast-player {
    padding: var(--spacing-6) var(--spacing-8);
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.podcast-audio-player {
    width: 100%;
    border-radius: var(--radius-full);
}

.podcast-content-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--spacing-10);
    align-items: start;
}

@media (max-width: 768px) {
    .podcast-content-wrap { grid-template-columns: 1fr; }
}

.podcast-show-notes h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-6);
    padding-bottom: var(--spacing-4);
    border-bottom: 2px solid var(--color-border);
}

.podcast-topics h3 {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-3);
}

.tag-list { display: flex; flex-wrap: wrap; gap: var(--spacing-2); }

/* -------------------------------------------------------------------------
   Event Single Layout
   ------------------------------------------------------------------------- */
.event-single-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-10);
    align-items: start;
    padding: var(--spacing-12) 0;
}

@media (max-width: 1024px) {
    .event-single-layout { grid-template-columns: 1fr; }
}

.event-details-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-6);
    border: 1px solid var(--color-border);
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-6));
}

.event-details-card h3 {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-5);
    padding-bottom: var(--spacing-4);
    border-bottom: 2px solid var(--color-primary);
}

.event-details-list { margin: 0; }

.event-detail-item {
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.event-detail-item:last-child { border-bottom: none; }

.event-detail-item dt {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-1);
}

.event-detail-item dd {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-dark);
    margin: 0;
}

/* Event Card in archive */
.events-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-6);
}

@media (max-width: 1024px) { .events-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .events-archive-grid { grid-template-columns: 1fr; } }

.event-card .card-image { position: relative; }

.event-card-status {
    position: absolute;
    top: var(--spacing-3);
    left: var(--spacing-3);
}

.event-date-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-2) var(--spacing-3);
    width: 48px;
    margin-bottom: var(--spacing-3);
    flex-shrink: 0;
}

.event-date-month {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    line-height: 1;
}

.event-date-day {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    line-height: 1;
    margin-top: 2px;
}

.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-3);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-3);
}

.event-card-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
}

/* -------------------------------------------------------------------------
   Spotlight Archive Grid
   ------------------------------------------------------------------------- */
.spotlight-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-8);
}

@media (max-width: 1024px) { .spotlight-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .spotlight-archive-grid { grid-template-columns: 1fr; } }

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

.member-role-small {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-1);
}

.member-location-small {
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-3);
}

/* -------------------------------------------------------------------------
   Podcast Archive List
   ------------------------------------------------------------------------- */
.podcast-archive-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.podcast-card {
    border-radius: var(--radius-xl);
}

.podcast-card-inner {
    display: flex;
    gap: var(--spacing-5);
    padding: var(--spacing-5);
}

.podcast-card-thumb {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.podcast-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-card-content { flex: 1; }

.podcast-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--spacing-4);
    flex-wrap: wrap;
    gap: var(--spacing-3);
}

/* -------------------------------------------------------------------------
   Embeds
   ------------------------------------------------------------------------- */
.embed-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    margin: var(--spacing-8) 0;
}

.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

/* -------------------------------------------------------------------------
   Widget Styles
   ------------------------------------------------------------------------- */
/* Spotlight widget */
.spotlight-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spotlight-widget-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.spotlight-widget-item:last-child { border-bottom: none; }

.spotlight-widget-thumb img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

.spotlight-widget-info { flex: 1; }

.spotlight-widget-title {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-dark);
    text-decoration: none;
    margin-bottom: 2px;
}

.spotlight-widget-title:hover { color: var(--color-primary); }

.spotlight-widget-role {
    font-size: var(--font-size-xs);
    color: var(--color-primary);
}

/* Events widget */
.events-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.events-widget-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.events-widget-item:last-child { border-bottom: none; }

.event-widget-date {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.event-widget-month {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
    line-height: 1;
}

.event-widget-day {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.event-widget-info { flex: 1; }

.event-widget-info a {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-dark);
    text-decoration: none;
    margin-bottom: 2px;
}

.event-widget-info a:hover { color: var(--color-primary); }

.event-widget-city {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    display: block;
}

/* -------------------------------------------------------------------------
   Before Footer Widgets
   ------------------------------------------------------------------------- */
.before-footer-widgets {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-8) 0;
}

/* -------------------------------------------------------------------------
   Responsive Typography Utilities
   ------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .section-title h2 { font-size: var(--font-size-2xl); }
    .archive-header { padding: var(--spacing-10) 0 var(--spacing-8); }
    .archive-header .archive-title { font-size: var(--font-size-2xl); }
    .search-hero { padding: var(--spacing-10) 0; }
    .search-hero h1 { font-size: var(--font-size-2xl); }
    .error-404-code { font-size: 5rem; }
    .member-portrait { width: 120px; height: 120px; }
    .podcast-artwork { width: 120px; height: 120px; }
    .podcast-hero-inner { padding: 0 var(--spacing-5) var(--spacing-5); }
}

/* -------------------------------------------------------------------------
   Focus Visible (WCAG 2.4.7 / 2.4.11)
   ------------------------------------------------------------------------- */
*:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* High contrast mode support */
@media (forced-colors: active) {
    .btn-primary, .btn-secondary {
        border: 2px solid ButtonText;
    }
    .site-header {
        border-bottom: 1px solid ButtonText;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media screen and (max-width: 768px) {
    .head-section-btn a {
        width: 100%;
    }
    .footer-brand {
        width: 100%;
        max-width: 100%;
    }
    .footer-desc {
        margin: 12px auto 16px;
        max-width: 450px;
    }
}

@media screen and (min-width: 600px) and (max-width: 768px) {
    .head-section-btn a {
        width: 100%;
    }
    .redirect-btns-homepage {
        flex-direction: row !important;
    }
}

/* ==========================================================================
   Indianness Stories — fan / arch layout  (.home-indianness-stories)
   ========================================================================== */

.home-indianness-stories {
    display         : flex !important;
    flex-direction  : row !important;
    align-items     : center !important;
    justify-content : flex-start !important;
    gap             : 15px !important;
    overflow        : hidden !important;
    flex-wrap       : nowrap !important;
    padding         : 0 !important;
}

/* Each card: equal width, clear Elementor width overrides */
.home-indianness-stories > div {
    flex                : 1 1 0 !important;
    width               : auto !important;
    max-width           : none !important;
    min-width           : 0 !important;
    margin              : 0 !important;
    padding             : 0 !important;
    border-radius       : 12px !important;
    overflow            : hidden !important;
    cursor              : pointer;
    background-size     : cover !important;
    background-position : center top !important;
    transition          : box-shadow 300ms ease;
    position            : relative;
    box-sizing          : border-box !important;
}

.home-indianness-stories > div:hover {
    box-shadow : 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index    : 2;
}

/* Heights — symmetric arch */
.home-indianness-stories > div:nth-child(1),
.home-indianness-stories > div:nth-child(6) { height: 68vh !important; }

.home-indianness-stories > div:nth-child(2),
.home-indianness-stories > div:nth-child(5) { height: 53.7vh !important; }

.home-indianness-stories > div:nth-child(3),
.home-indianness-stories > div:nth-child(4) { height: 40.1vh !important; }

/* Slanted cards get clip-path: path() applied by JS (initStoriesClipPath)
   which computes pixel-accurate rounded trapezoid shapes with true arc
   commands. Remove border-radius here so JS arcs fully control the corners. */
.home-indianness-stories > div:nth-child(1),
.home-indianness-stories > div:nth-child(2),
.home-indianness-stories > div:nth-child(5),
.home-indianness-stories > div:nth-child(6) {
    border-radius : 0 !important;
}

/* Mobile: 2-column wrap, equal heights */
@media (max-width: 767px) {
    .home-indianness-stories {
        flex-wrap : wrap !important;
        gap       : 8px !important;
        overflow  : visible !important;
    }
    .home-indianness-stories > div {
        height : 160px !important;
        flex   : 0 0 calc(50% - 4px) !important;
    }
}

/* =========================================================================
   About Us page — tablet/small-desktop (1024px – 1200px)
   ========================================================================= */
@media (min-width: 1024px) and (max-width: 1200px) {
    .about-us-page-header {
        height : 80vh !important;
    }

    .about-indianness-section {
        flex-direction : column;
    }

    .about-indianness-section div:nth-child(1) {
        height              : 80vh !important;
        background-position : top center;
    }

    .about-us-page-header .about-us-hero-text span {
        font-size: 88px;
        line-height: 88px;
    }

    .about-us-founder {
        padding-top: 40vh !important;
    }
}

@media (min-width: 1024px) and (max-width: 1024px) {
    .about-us-founder {
        padding-top: 35vh !important;
    }
}

.vision-mission-icons img {
    width: 12%;
    background-color: #39af4a;
    padding: 10px;
    border-radius: 10px !important;
}

/* =========================================================================
   Vision-Mission icons — responsive widths
   ========================================================================= */
@media (max-width: 767px) {
    .vision-mission-icons img {
        width : 18%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .vision-mission-icons img {
        width : 25%;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .vision-mission-icons img {
        width : 18%;
    }
}

.podcast-hero-section-parent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ── Podcast hero — tablet (768px–1023px) ── */
@media (min-width: 768px) and (max-width: 1023px) {
    .podcast-hero-section {
        height: 150vh !important;
    }
    .podcast-hero-section-right {
        background-size: contain !important;
    }
}

/* ── Podcast hero — small desktop (1024px–1200px) ── */
@media (min-width: 1024px) and (max-width: 1200px) {
    .podcast-hero-section-parent {
        flex-direction: row !important;
    }
    .podcast-hero-section {
        height: 100vh !important;
    }
    .podcast-hero-section-left div:nth-child(1) span {
        font-size: 60px !important;
        line-height: 72px !important;
    }
}

/* ==========================================================================
   Guest Form  (.guest-form — Contact Form 7)
   ========================================================================== */

.guest-form {
    display        : flex;
    flex-direction : column;
    gap            : 24px;
}

/* ── Two-column row ── */
.cf7-row {
    display               : grid;
    grid-template-columns : 1fr 1fr;
    gap                   : 24px;
}

/* ── Full-width column ── */
.cf7-col-full {
    grid-column : 1 / -1;
}

/* ── Label ── */
.cf7-col label,
.cf7-col-full label {
    display       : block;
    font-family   : 'Poppins', sans-serif;
    font-size     : 14px;
    font-weight   : 600;
    line-height   : 20px;
    color         : #1a1a1a;
    margin-bottom : 8px;
}

/* ── All CF7 inputs, selects, textarea ── */
.guest-form .wpcf7-form-control:not([type="submit"]),
.guest-form input[type="text"],
.guest-form input[type="email"],
.guest-form input[type="url"],
.guest-form select,
.guest-form textarea {
    width            : 100%;
    display          : block;
    font-family      : 'Poppins', sans-serif;
    font-size        : 14px;
    font-weight      : 400;
    color            : #1a1a1a;
    background       : #ffffff;
    border           : 1.5px solid #ddd5cf;
    border-radius    : 10px;
    padding          : 14px 16px;
    outline          : none;
    transition       : border-color 200ms ease, box-shadow 200ms ease;
    box-sizing       : border-box;
    -webkit-appearance: none;
    appearance       : none;
}

.guest-form .wpcf7-form-control:not([type="submit"]):focus,
.guest-form input[type="text"]:focus,
.guest-form input[type="email"]:focus,
.guest-form input[type="url"]:focus,
.guest-form select:focus,
.guest-form textarea:focus {
    border-color : #ed9732;
    box-shadow   : 0 0 0 3px rgba(237, 151, 50, 0.15);
}

/* ── Placeholder ── */
.guest-form ::placeholder {
    color   : #a8998f;
    opacity : 1;
}

/* ── Select: custom dropdown arrow ── */
.guest-form select {
    background-image    : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat   : no-repeat;
    background-position : right 16px center;
    background-size     : 18px;
    padding-right       : 44px;
    cursor              : pointer;
}

/* ── Textarea ── */
.guest-form textarea {
    height    : 140px;
    resize    : vertical;
    min-height: 120px;
}

/* ── CF7 validation error ── */
.guest-form .wpcf7-not-valid {
    border-color : #e05252 !important;
}
.guest-form .wpcf7-not-valid-tip {
    font-family : 'Poppins', sans-serif;
    font-size   : 12px;
    color       : #e05252;
    margin-top  : 4px;
    display     : block;
}

/* ── Submit wrapper ── */
.cf7-submit-wrap {
    display         : flex;
    justify-content : center;
    margin-top      : 8px;
}

/* The <p> CF7 injects around the input becomes the visual button shell.
   <input type="submit"> is a replaced element — ::after won't render on it.
   Instead: style the <p> as the button, keep the input transparent (text only),
   and use p::after for the arrow with pointer-events:none so clicks fall
   through to the input underneath. */
.cf7-submit-wrap p {
    position        : relative;
    display         : inline-flex;
    align-items     : center;
    background      : #ed9732;
    border-radius   : 8px;
    margin          : 0;
    padding         : 0;
    cursor          : pointer;
    transition      : background 250ms ease, transform 200ms ease;
}

.cf7-submit-wrap p:hover {
    background : #d4831f;
    transform  : translateY(-2px);
}

/* Arrow drawn on <p>::after — pointer-events:none lets clicks reach the input */
.cf7-submit-wrap p::after {
    content          : "";
    position         : absolute;
    right            : 28px;
    top              : 50%;
    transform        : translateY(-50%);
    width            : 36px;
    height           : 14px;
    background-color : #ffffff;
    pointer-events   : none;
    transition       : transform 250ms ease;
    -webkit-mask     : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='1' y1='8' x2='42' y2='8'/%3E%3Cpolyline points='34 1 42 8 34 15'/%3E%3C/svg%3E") no-repeat center / contain;
            mask     : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='1' y1='8' x2='42' y2='8'/%3E%3Cpolyline points='34 1 42 8 34 15'/%3E%3C/svg%3E") no-repeat center / contain;
}

.cf7-submit-wrap p:hover::after {
    transform : translateY(-50%) translateX(5px);
}

/* Input = transparent text layer; extra right padding reserves space for the arrow */
.cf7-submit-wrap p input[type="submit"] {
    background  : transparent;
    border      : none;
    padding     : 16px 88px 16px 40px;
    font-family : 'Poppins', sans-serif;
    font-size   : 16px;
    font-weight : 600;
    color       : #ffffff;
    cursor      : pointer;
    line-height : 1;
    position    : relative;
    z-index     : 1;
}

/* Hide CF7's loading spinner (shows automatically on submit) */
.cf7-submit-wrap .wpcf7-spinner {
    display : none;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .cf7-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .cf7-submit-wrap p { width: 100%; justify-content: center; }
    .cf7-submit-wrap p input[type="submit"] { padding: 16px 88px 16px 32px; }
}

.align-center-of-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ==========================================================================
   Default Page Template (non-Elementor)
   ========================================================================== */

/* ── Page title (sits at top of .content-area) ── */
.page-hero__title {
    font-family   : "Cormorant Garamond", serif;
    font-size     : 56px;
    line-height   : 66px;
    font-weight   : 400;
    color         : #000000;
    text-align    : center;
    margin        : 0 0 40px;
    border        : none;
    padding       : 0;
}

/* ── Content wrapper (holds title + article) ── */
.content-area {
    width   : 100%;
    padding : 80px 100px;
}

/* ── Article wrapper ── */
.page-article {
    width : 100%;
}

/* ── Featured image ── */
.entry-featured-image {
    margin-bottom : 40px;
    line-height   : 0;
}

.entry-featured-image img {
    width         : 100%;
    height        : auto;
    display       : block;
    border-radius : 6px;
    object-fit    : cover;
}

/* ==========================================================================
   Entry content typography
   ========================================================================== */

.entry-content {
    font-family : "Poppins", sans-serif;
    font-size   : 18px;
    line-height : 27px;
    font-weight : 300;
    color       : #000000;
}

/* ── Paragraphs ── */
.entry-content p {
    margin      : 0 0 20px;
    font-size   : 18px;
    line-height : 27px;
    font-weight : 300;
    color       : #000000;
}

.entry-content p:last-child {
    margin-bottom : 0;
}

/* ── Entry content: full width, no max-width cap ── */
.entry-content.page-content {
    width     : 100%;
    max-width : none;
}

/* ── Headings — with short green underline bar ── */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family   : "Poppins", sans-serif;
    font-weight   : 700;
    color         : #000000;
    position      : relative;
    padding-bottom: 14px;
    margin        : 36px 0 20px;
    border-bottom : none;
}

/* Green underline bar below every heading */
.entry-content h1::after,
.entry-content h2::after,
.entry-content h3::after,
.entry-content h4::after,
.entry-content h5::after,
.entry-content h6::after {
    content    : "";
    position   : absolute;
    left       : 0;
    bottom     : 0;
    width      : 80px;
    height     : 0;
    border-top : 2px solid #214731;
}

.entry-content h1 { font-size: 44px; line-height: 54px; }
.entry-content h2 { font-size: 34px; line-height: 44px; }
.entry-content h3 { font-size: 28px; line-height: 38px; }
.entry-content h4 { font-size: 24px; line-height: 32px; }
.entry-content h5 { font-size: 20px; line-height: 28px; }
.entry-content h6 { font-size: 18px; line-height: 26px; }

/* ── Unordered list — square green bullets ── */
.entry-content ul,
.elementor-widget-text-editor ul {
    list-style  : none;
    padding     : 0;
    margin      : 0 0 20px;
}

.entry-content ul li,
.elementor-widget-text-editor ul li {
    position      : relative;
    padding-left  : 26px;
    margin-bottom : 10px;
    font-family   : "Poppins", sans-serif;
    font-size     : 18px;
    line-height   : 27px;
    font-weight   : 300;
    color         : #000000;
}

.entry-content ul li::before,
.elementor-widget-text-editor ul li::before {
    content          : "";
    position         : absolute;
    left             : 0;
    top              : 8px;
    width            : 10px;
    height           : 10px;
    background-color : #214731;
}

/* ── Ordered list ── */
.entry-content ol,
.elementor-widget-text-editor ol {
    padding     : 0 0 0 20px;
    margin      : 0 0 20px;
}

.entry-content ol li,
.elementor-widget-text-editor ol li {
    margin-bottom : 10px;
    font-family   : "Poppins", sans-serif;
    font-size     : 18px;
    line-height   : 27px;
    font-weight   : 300;
    color         : #000000;
    padding-left  : 6px;
}

/* ── Nested lists ── */
.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul,
.elementor-widget-text-editor ul ul,
.elementor-widget-text-editor ol ol,
.elementor-widget-text-editor ul ol,
.elementor-widget-text-editor ol ul {
    margin-top    : 8px;
    margin-bottom : 0;
    padding-left  : 16px;
}

/* ── Inline images ── */
.entry-content img {
    max-width     : 100%;
    height        : auto;
    display       : block;
    border-radius : 20px;
    margin        : 28px auto;
}

.entry-content img.alignleft  { float: left;  margin: 8px 24px 16px 0; }
.entry-content img.alignright { float: right; margin: 8px 0 16px 24px; }
.entry-content img.aligncenter { margin-left: auto; margin-right: auto; }
.entry-content img.alignnone  { margin-left: 0; }

.entry-content .wp-caption {
    max-width : 100%;
}

.entry-content .wp-caption-text {
    font-size   : 13px;
    font-weight : 300;
    color       : #666666;
    text-align  : center;
    margin-top  : 8px;
    font-style  : italic;
}

/* ── Blockquote ── */
.entry-content blockquote {
    border-left : 3px solid #204731;
    margin      : 28px 0;
    padding     : 16px 24px;
    background  : #faf5f0;
    border-radius: 0 6px 6px 0;
    font-style  : italic;
    color       : #333333;
}

.entry-content blockquote p {
    margin : 0;
}

/* ── Inline text formatting ── */
.entry-content strong,
.entry-content b {
    font-weight : 600;
    color       : #000000;
}

.entry-content a,
.entry-content a:hover,
.entry-content a:focus,
.entry-content a:visited {
    color           : #204731;
    text-decoration : none;
    transition      : color 200ms ease;
}

.entry-content a:hover {
    color : #f7831d;
}

/* ── Horizontal rule ── */
.entry-content hr {
    border      : none;
    border-top  : 1px solid #e0e0e0;
    margin      : 40px 0;
}

/* ── Tables ── */
.entry-content table {
    width           : 100%;
    border-collapse : collapse;
    margin          : 28px 0;
    font-size       : 15px;
}

.entry-content th,
.entry-content td {
    padding    : 12px 16px;
    border     : 1px solid #e0e0e0;
    text-align : left;
}

.entry-content th {
    background-color : #204731;
    color            : #ffffff;
    font-weight      : 600;
}

.entry-content tr:nth-child(even) td {
    background-color : #faf5f0;
}

/* ── Code blocks ── */
.entry-content pre,
.entry-content code {
    font-family  : monospace;
    font-size    : 14px;
    background   : #f4f4f4;
    border-radius: 4px;
    color        : #1a1a1a;
}

.entry-content pre {
    padding    : 16px 20px;
    overflow-x : auto;
    margin     : 24px 0;
}

.entry-content code {
    padding : 2px 6px;
}

/* ── Page edit link ── */
.entry-footer {
    margin-top  : 40px;
    padding-top : 20px;
    border-top  : 1px solid #e0e0e0;
}

.edit-link a {
    font-family : "Poppins", sans-serif;
    font-size   : 13px;
    color       : #666666;
    text-decoration: none;
}

/* ── Clearfix for floated images ── */
.entry-content::after {
    content : "";
    display : table;
    clear   : both;
}

/* ── Responsive ── */
/* Tablet: 768px – 1023px */
@media (max-width: 1023px) {
    .page-hero__title   { font-size: 44px; line-height: 54px; margin-bottom: 32px; }
    .content-area       { padding: 60px 80px; }
    .entry-content h1   { font-size: 38px; line-height: 48px; }
    .entry-content h2   { font-size: 30px; line-height: 40px; }
    .entry-content h3   { font-size: 24px; line-height: 32px; }
}

/* Mobile: ≤ 767px */
@media (max-width: 767px) {
    .page-hero__title   { font-size: 34px; line-height: 44px; margin-bottom: 24px; }
    .content-area       { padding: 40px 20px 48px; }
    .entry-content h1   { font-size: 30px; line-height: 40px; }
    .entry-content h2   { font-size: 26px; line-height: 34px; }
    .entry-content h3   { font-size: 22px; line-height: 30px; }
    .entry-content h4   { font-size: 20px; line-height: 28px; }
    .entry-content      { font-size: 16px; line-height: 26px; }
    .entry-content p    { font-size: 16px; line-height: 26px; }
    .entry-content ul li,
    .entry-content ol li,
    .elementor-widget-text-editor ul li,
    .elementor-widget-text-editor ol li { font-size: 16px; line-height: 26px; }
}

/* ==========================================================================
   Single Post Detail Page — Article & Press Release
   ========================================================================== */

/* ── Page wrapper ── */
.single-post-page {
    padding : 0;
}

/* ── Article container ── */
.sp-article {
    max-width : 100%;
    margin    : 0 auto;
    padding   : 100px;
}

/* ── Remove underlines for all links inside the article ── */
.sp-article a,
.sp-article a:hover,
.sp-article a:focus,
.sp-article a:visited {
    text-decoration : none;
}

/* ── Title ── */
.sp-title {
    font-family : "Cormorant Garamond", serif;
    font-size   : 72px;
    line-height : 80px;
    font-weight : 300;
    color       : #000000;
    margin      : 0 0 28px;
    border      : none;
    padding     : 0;
}

/* ── Meta row ── */
.sp-meta {
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    flex-wrap       : wrap;
    gap             : 16px;
    margin-bottom   : 36px;
}

.sp-meta__author {
    display     : flex;
    align-items : center;
    gap         : 10px;
}

.sp-meta__avatar {
    width         : 40px;
    height        : 40px;
    border-radius : 50%;
    object-fit    : cover;
    flex-shrink   : 0;
}

.sp-meta__by {
    font-family : "Poppins", sans-serif;
    font-size   : 16px;
    line-height : 24px;
    font-weight : 300;
    color       : #747787;
}

.sp-meta__sep {
    color        : #747787;
    margin       : 0 2px;
    font-weight  : 300;
}

.sp-meta__date {
    font-family : "Poppins", sans-serif;
    font-size   : 16px;
    line-height : 24px;
    font-weight : 300;
    color       : #ed9732;
}

.sp-meta__share {
    display     : flex;
    align-items : center;
    gap         : 12px;
}

.sp-meta__share-label {
    font-family : "Poppins", sans-serif;
    font-size   : 16px;
    line-height : 24px;
    font-weight : 300;
    color       : #747787;
}

.sp-share-btn {
    display          : inline-flex;
    align-items      : center;
    justify-content  : center;
    width            : 36px;
    height           : 36px;
    border-radius    : 50%;
    background       : #000000;
    color            : #ffffff;
    border           : none;
    cursor           : pointer;
    padding          : 0;
    text-decoration  : none;
    flex-shrink      : 0;
    transition       : opacity 200ms ease;
}

.sp-share-btn svg { color: #ffffff; fill: #ffffff; stroke: #ffffff; }

.sp-share-btn:hover { opacity: 0.7; }

/* ── Featured image ── */
.sp-featured-image {
    margin-bottom : 48px;
}

.sp-featured-image img {
    width         : 100%;
    height        : auto;
    display       : block;
    border-radius : 20px;
}

/* ── Content body ── */
.sp-content {
    margin-bottom : 60px;
    width         : 100%;
    max-width     : 100%;
    overflow-x    : hidden;
}

.sp-content p,
.sp-content li {
    font-family : "Poppins", sans-serif;
    font-size   : 18px;
    line-height : 27px;
    font-weight : 300;
    color       : #000000;
}

/* ── Footer banner — shared base ── */
.sp-pr-footer,
.sp-article-footer {
    background      : #214731;
    color           : #ffffff;
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    gap             : 40px;
    padding         : 56px 60px;
    margin          : 0;
}

/* Press Release banner — info block */
.sp-pr-footer__info p {
    font-family : "Poppins", sans-serif;
    font-size   : 16px;
    line-height : 28px;
    font-weight : 300;
    color       : #ffffff;
    margin      : 0 0 6px;
}

.sp-pr-footer__info p:last-child { margin-bottom: 0; }

.sp-pr-footer__info strong {
    font-weight : 600;
}

/* Article banner — note text */
.sp-article-footer__note {
    font-family : "Poppins", sans-serif;
    font-size   : 24px;
    font-weight : 300;
    color       : #ffffff;
    max-width   : 100%;
}

/* Shared CTA button */
.sp-footer-btn {
    display         : inline-flex;
    align-items     : center;
    box-sizing      : border-box;
    justify-content : center;
    gap             : 10px;
    white-space     : nowrap;
    flex-shrink     : 0;
    background      : #ed9732;
    color           : #ffffff;
    font-family     : "Poppins", sans-serif;
    font-size       : 20px;
    line-height     : 24px;
    font-weight     : 500;
    padding         : 16px 32px;
    border-radius   : 5px;
    text-decoration : none;
    transition      : background 200ms ease;
}

/* Long SVG arrow — same mask technique as .head-section-btn */
.sp-footer-btn::after {
    content          : "";
    display          : inline-block;
    width            : 40px;
    height           : 16px;
    margin-left      : 10px;
    background-color : currentColor;
    flex-shrink      : 0;
    transition       : transform 250ms ease;
    -webkit-mask     : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='1' y1='8' x2='42' y2='8'/%3E%3Cpolyline points='34 1 42 8 34 15'/%3E%3C/svg%3E") no-repeat center / contain;
            mask     : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='1' y1='8' x2='42' y2='8'/%3E%3Cpolyline points='34 1 42 8 34 15'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Hover — lift + shadow + darken; arrow slides right */
.sp-footer-btn {
    transition : transform 250ms ease, box-shadow 250ms ease,
                 background-color 250ms ease, color 250ms ease;
}

.sp-footer-btn:hover {
    background : #d4831f;
    color      : #ffffff;
    transform  : translateY(-3px);
    box-shadow : 0 8px 24px rgba(0, 0, 0, 0.22);
    filter     : brightness(0.90);
}

.sp-footer-btn:hover::after {
    transform : translateX(5px);
}

/* ── Responsive — Tablet ── */
@media (max-width: 1023px) {
    .sp-article        { padding: 48px 40px; }
    .sp-title          { font-size: 56px; line-height: 64px; }
    /* Footer contained within article padding — same side spacing as content */
    .sp-pr-footer,
    .sp-article-footer {
        margin        : 0;
        padding       : 40px;
        border-radius : 0;
    }
    .sp-article-footer__note { font-size: 18px; line-height: 28px; }
}

/* ── Responsive — Mobile ── */
@media (max-width: 767px) {
    .sp-article     { padding: 32px 20px; }
    .sp-title       { font-size: 40px; line-height: 50px; }
    .sp-meta        { flex-direction: column; align-items: flex-start; }
    .sp-meta__share { flex-wrap: wrap; }
    /* Footer contained within article padding — stacks vertically, full width */
    .sp-pr-footer,
    .sp-article-footer {
        flex-direction : column;
        align-items    : stretch;
        padding        : 32px 24px;
        margin         : 0;
        border-radius  : 0;
        gap            : 24px;
    }
    .sp-article-footer__note { font-size: 16px; line-height: 24px; }
    /* Action wrapper fills the column so button width: 100% resolves correctly */
    .sp-pr-footer__action,
    .sp-article-footer__action {
        width : 100%;
    }
    .sp-footer-btn {
        width            : 100%;
        justify-content  : center;
    }
}

/* ==========================================================================
   Submit Your Story Form  (.submit-your-story)
   ========================================================================== */

/* ── Layout ── */
.submit-your-story {
    width      : 100%;
    box-sizing : border-box;
}

.submit-your-story .form-row {
    display               : grid;
    grid-template-columns : 1fr 1fr;
    gap                   : 20px;
    margin-bottom         : 20px;
}

.submit-your-story .form-group {
    display        : flex;
    flex-direction : column;
    gap            : 6px;
    margin-bottom  : 5px;
}

.form-group.full-width {
    margin-bottom : 30px !important;
}

.submit-your-story .form-group p label span {
    display    : block;
    margin-top : 10px;
}

.submit-your-story .form-group.full-width {
    width : 100%;
}

/* ── Labels ── */
.submit-your-story label {
    font-family : "Poppins", sans-serif;
    font-size   : 14px;
    line-height : 26px;
    font-weight : 400;
    color       : #000000;
    display     : block;
}

.submit-your-story .form-group p label {
    margin      : 0 !important;
    font-size   : 14px;
    line-height : 26px;
    color       : #000000;
    font-weight : 400;
}

/* ── Inputs, Textarea, Select ── */
.submit-your-story input,
.submit-your-story input[type="file"],
.submit-your-story input[type="text"],
.submit-your-story input[type="email"],
.submit-your-story input[type="tel"],
.submit-your-story input[type="url"],
.submit-your-story input[type="number"],
.submit-your-story select {
    height : 50px !important;
}

.submit-your-story input[type="text"],
.submit-your-story input[type="email"],
.submit-your-story input[type="tel"],
.submit-your-story input[type="url"],
.submit-your-story input[type="number"],
.submit-your-story textarea,
.submit-your-story select {
    font-family      : "Poppins", sans-serif;
    font-size        : 12px;
    font-weight      : 300;
    color            : #000000;
    background-color : #ffffff;
    border           : 1px solid #1d75bd;
    border-radius    : 8px;
    padding          : 12px 16px;
    width            : 100%;
    box-sizing       : border-box;
    outline          : none;
    transition       : border-color 200ms ease;
}

.submit-your-story input[type="text"]:focus,
.submit-your-story input[type="email"]:focus,
.submit-your-story input[type="tel"]:focus,
.submit-your-story input[type="url"]:focus,
.submit-your-story input[type="number"]:focus,
.submit-your-story textarea:focus,
.submit-your-story select:focus {
    border-color : #1558a0;
}

/* ── Placeholders ── */
.submit-your-story input::placeholder,
.submit-your-story textarea::placeholder {
    font-family : "Poppins", sans-serif;
    font-size   : 12px;
    font-weight : 300;
    color       : rgba(0, 0, 0, 0.502);
    opacity     : 1;
}

/* ── Select — custom chevron ── */
.submit-your-story select {
    appearance           : none;
    -webkit-appearance   : none;
    background-image     : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat    : no-repeat;
    background-position  : right 14px center;
    padding-right        : 36px;
}

/* ── Textarea ── */
.submit-your-story textarea {
    resize     : vertical;
    min-height : 120px;
}

/* ── File input — styled to match other inputs ── */
.submit-your-story input[type="file"] {
    padding          : 0;
    cursor           : pointer;
    background-color : #ffffff;
    border           : 1px solid #1d75bd;
    border-radius    : 8px;
    overflow         : hidden;
    font-family      : "Poppins", sans-serif;
    font-size        : 12px;
    font-weight      : 300;
    color            : rgba(0, 0, 0, 0.502);
    width            : 100%;
    box-sizing       : border-box;
    height           : 50px;
    line-height      : 50px;
}

/* Style the "Choose File" button — webkit */
.submit-your-story input[type="file"]::-webkit-file-upload-button {
    background   : #e8e8e8;
    border       : none;
    border-right : 1px solid #d0d0d0;
    padding      : 0 16px;
    font-family  : "Poppins", sans-serif;
    font-size    : 12px;
    font-weight  : 500;
    color        : #000000;
    cursor       : pointer;
    height       : 48px;
    line-height  : 48px;
}

/* Style the "Choose File" button — standard (Firefox, Chrome 88+) */
.submit-your-story input[type="file"]::file-selector-button {
    background   : #e8e8e8;
    border       : none;
    border-right : 1px solid #d0d0d0;
    padding      : 0 16px;
    font-family  : "Poppins", sans-serif;
    font-size    : 12px;
    font-weight  : 500;
    color        : #000000;
    cursor       : pointer;
    height       : 48px;
    line-height  : 48px;
}

/* ── Checkbox row ── */
.submit-your-story .form-checkbox {
    display     : flex;
    align-items : flex-start;
    gap         : 10px;
    margin-bottom : 28px;
}

.submit-your-story .form-checkbox label {
    font-family     : "Poppins", sans-serif;
    font-size       : 13px;
    line-height     : 22px;
    font-weight     : 300;
    color           : #000000;
    cursor          : pointer;
    display         : flex;
    align-items     : center;
    justify-content : center;
    gap             : 10px;
}

.form-checkbox input[type="checkbox"] {
    width : 16px;
}

.submit-your-story .form-checkbox input[type="checkbox"] {
    width        : 16px;
    height       : 16px;
    border       : 1px solid #1d75bd;
    border-radius: 3px;
    flex-shrink  : 0;
    margin-top   : 3px;
    cursor       : pointer;
    accent-color : #ed9732;
}

/* ── Submit button ── */
.submit-your-story .form-submit {
    display    : flex;
    justify-content: center;
}

.submit-your-story .form-submit button {
    display         : inline-flex;
    align-items     : center;
    gap             : 10px;
    font-family     : "Poppins", sans-serif;
    font-size       : 20px;
    line-height     : 24px;
    font-weight     : 500;
    color           : #ffffff;
    text-align      : center;
    background      : #ed9732;
    border          : none;
    border-radius   : 5px;
    padding         : 16px 32px;
    cursor          : pointer;
    box-sizing      : border-box;
    transition      : transform 250ms ease, box-shadow 250ms ease,
                      background-color 250ms ease;
}

/* Arrow on submit button — same SVG mask as .head-section-btn */
.submit-your-story .form-submit button::after {
    content          : "";
    display          : inline-block;
    width            : 40px;
    height           : 16px;
    background-color : currentColor;
    flex-shrink      : 0;
    transition       : transform 250ms ease;
    -webkit-mask     : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='1' y1='8' x2='42' y2='8'/%3E%3Cpolyline points='34 1 42 8 34 15'/%3E%3C/svg%3E") no-repeat center / contain;
            mask     : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='1' y1='8' x2='42' y2='8'/%3E%3Cpolyline points='34 1 42 8 34 15'/%3E%3C/svg%3E") no-repeat center / contain;
}

.submit-your-story .form-submit button:hover {
    background  : #d4831f;
    transform   : translateY(-3px);
    box-shadow  : 0 8px 24px rgba(0, 0, 0, 0.22);
    filter      : brightness(0.90);
}

.submit-your-story .form-submit button:hover::after {
    transform : translateX(5px);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .submit-your-story .form-row {
        grid-template-columns : 1fr;
    }

    .submit-your-story .form-submit button {
        width           : 100%;
        justify-content : center;
    }
}

/* ==========================================================================
   Podcast Detail Page  (.podcast-detail-page)
   ========================================================================== */

.podcast-detail-page { padding: 0; }

/* Full-width wrapper — padding replaces all inner max-width/margin:auto */
.pd-wrapper {
    width      : 100%;
    box-sizing : border-box;
    padding    : 100px 100px 80px;
}

/* ── 1. Header ── */
.pd-header    { margin-bottom: 40px; }

.pd-episode {
    font-family    : "Poppins", sans-serif;
    font-size      : 13px;
    line-height    : 1;
    font-weight    : 600;
    color          : #ed9732;
    letter-spacing : 1.5px;
    text-transform : uppercase;
    margin         : 0 0 16px;
}

.pd-title {
    font-family : "Cormorant Garamond", serif;
    font-size   : 68px;
    line-height : 76px;
    font-weight : 300;
    color       : #000;
    margin      : 0 0 18px;
}

.pd-sub {
    font-family : "Poppins", sans-serif;
    font-size   : 18px;
    line-height : 28px;
    font-weight : 300;
    color       : #555;
    margin      : 0 0 28px;
}

/* Meta + Share — single flex row */
.pd-meta-share {
    display         : flex;
    align-items     : center;
    justify-content : space-between;
    gap             : 20px;
    flex-wrap       : wrap;
}

.pd-meta-row {
    display     : flex;
    align-items : center;
    gap         : 10px;
    flex-wrap   : wrap;
    font-family : "Poppins", sans-serif;
    font-size   : 15px;
    line-height : 22px;
    font-weight : 300;
    color       : #747787;
}

.pd-sep     { color: #ddd; }
.pd-date,
.pd-country,
.pd-year    { color: #747787; }

.pd-share {
    display     : flex;
    align-items : center;
    gap         : 10px;
    font-family : "Poppins", sans-serif;
    font-size   : 14px;
    font-weight : 300;
    color       : #747787;
    white-space : nowrap;
}

.pd-share__label { margin-right: 2px; }

.pd-share-btn {
    background      : none;
    border          : none;
    cursor          : pointer;
    padding         : 6px;
    color           : #214731;
    display         : inline-flex;
    align-items     : center;
    text-decoration : none;
    border-radius   : 50%;
    transition      : background 200ms ease, opacity 200ms ease;
}

.pd-share-btn:hover {
    background : rgba(33, 71, 49, 0.08);
    color      : #214731;
}

.pd-share-btn svg { width: 20px; height: 20px; }

/* ── 2. Featured Image ── */
.pd-featured-image {
    width         : 100%;
    height        : auto;
    margin-bottom : 40px;
    border-radius : 20px;
    overflow      : hidden;
}

.pd-featured-image img {
    width      : 100%;
    height     : auto;
    object-fit : cover;
    display    : block;
}

/* ── 3. YouTube Video Modal ── */
.pd-video-modal {
    position       : fixed;
    inset          : 0;
    z-index        : 9999;
    display        : flex;
    align-items    : center;
    justify-content: center;
    opacity        : 0;
    pointer-events : none;
    transition     : opacity 300ms ease;
}

.pd-video-modal.is-open {
    opacity        : 1;
    pointer-events : all;
}

.pd-video-modal__overlay {
    position   : absolute;
    inset      : 0;
    background : rgba(0, 0, 0, 0.88);
    cursor     : pointer;
}

.pd-video-modal__content {
    position  : relative;
    width     : 90%;
    max-width : 1000px;
    z-index   : 1;
}

.pd-video-modal__close {
    position    : absolute;
    top         : -44px;
    right       : 0;
    background  : none;
    border      : none;
    color       : #fff;
    font-size   : 36px;
    line-height : 1;
    cursor      : pointer;
    padding     : 0;
    opacity     : 0.85;
    transition  : opacity 200ms ease;
}

.pd-video-modal__close:hover { opacity: 1; }

.pd-video-wrap {
    position      : relative;
    padding-top   : 56.25%;
    border-radius : 12px;
    overflow      : hidden;
    box-shadow    : 0 16px 60px rgba(0, 0, 0, 0.5);
}

.pd-video-wrap iframe {
    position : absolute;
    inset    : 0;
    width    : 100%;
    height   : 100%;
    border   : 0;
}

/* ── 4. Platform Links Bar ── */
.pd-listen-bar {
    display         : flex;
    align-items     : center;
    gap             : 20px;
    flex-wrap       : wrap;
    padding         : 20px 0;
    margin-bottom   : 48px;
    border-top      : 1px solid rgba(33, 71, 49, 0.15);
    border-bottom   : 1px solid rgba(33, 71, 49, 0.15);
}

.pd-listen-bar__label {
    font-family : "Poppins", sans-serif;
    font-size   : 14px;
    font-weight : 600;
    color       : #214731;
    white-space : nowrap;
}

.pd-listen-bar__links {
    display   : flex;
    gap       : 12px;
    flex-wrap : wrap;
}

.pd-platform-btn {
    display         : inline-flex;
    align-items     : center;
    gap             : 8px;
    padding         : 10px 22px;
    border-radius   : 100px;
    background      : #214731;
    color           : #fff;
    font-family     : "Poppins", sans-serif;
    font-size       : 14px;
    font-weight     : 500;
    line-height     : 1;
    text-decoration : none;
    white-space     : nowrap;
    transition      : background 200ms ease, transform 200ms ease;
}

.pd-platform-btn:hover {
    background : #1a3828;
    transform  : translateY(-2px);
    color      : #fff;
}

.pd-platform-btn i { font-size: 15px; }

/* ── 5. Post Content ── */
.pd-content-wrap { margin-bottom: 60px; }

.pd-content.entry-content {
    width     : 100%;
    max-width : 100%;
}

/* ── 6. More Episodes ── */
.pd-related {
    padding-top : 48px;
    border-top  : 2px solid rgba(33, 71, 49, 0.1);
    margin-top  : 20px;
}

.pd-related__heading {
    font-family   : "Cormorant Garamond", serif;
    font-size     : 40px;
    line-height   : 48px;
    font-weight   : 400;
    color         : #000;
    margin        : 0 0 32px;
}

.pd-related-grid {
    display               : grid;
    grid-template-columns : repeat(3, 1fr);
    gap                   : 28px;
}

.pd-rel-card {
    text-decoration : none;
    color           : inherit;
    display         : flex;
    flex-direction  : column;
}

.pd-rel-card__image {
    border-radius : 16px;
    overflow      : hidden;
    margin-bottom : 16px;
    aspect-ratio  : 3 / 2;
    background    : #f0f0f0;
}

.pd-rel-card__image img {
    width      : 100%;
    height     : 100%;
    object-fit : cover;
    display    : block;
    transition : transform 300ms ease;
}

.pd-rel-card:hover .pd-rel-card__image img { transform: scale(1.04); }

.pd-rel-card__date {
    font-family   : "Poppins", sans-serif;
    font-size     : 14px;
    font-weight   : 500;
    color         : #ed9732;
    display       : block;
    margin-bottom : 8px;
}

.pd-rel-card__title {
    font-family : "Poppins", sans-serif;
    font-size   : 17px;
    font-weight : 600;
    line-height : 25px;
    color       : #111;
    margin      : 0;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
    .pd-wrapper      { padding: 80px 80px 60px; }
    .pd-title        { font-size: 50px; line-height: 58px; }
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .pd-wrapper          { padding: 20px 20px 40px; }
    .pd-title            { font-size: 34px; line-height: 42px; }
    .pd-sub              { font-size: 16px; line-height: 26px; }
    .pd-meta-share       { flex-direction: column; align-items: flex-start; gap: 14px; }
    .pd-listen-bar       { gap: 14px; }
    .pd-platform-btn     { padding: 9px 16px; font-size: 13px; }
    .pd-related-grid     { grid-template-columns: 1fr; gap: 20px; }
    .pd-related__heading { font-size: 30px; line-height: 38px; }
}

/* ================================================================
   INDIANNESS 100 — Single Detail Page  (.i100d-*)
   ================================================================ */

.i100-single-page { padding: 0; }

/* ── Article wrapper ── */
.i100d-article {
    max-width : 100%;
    margin    : 0;
}

/* ── Header ── */
.i100d-header {
    padding    : 80px 100px 60px;
    max-width  : 100%;
    background : #ffffff;
}

/* Eyebrow: badge + label */
.i100d-eyebrow {
    display     : flex;
    align-items : center;
    gap         : 12px;
    margin-bottom: 20px;
}

.i100d-eyebrow__badge {
    width      : 60px;
    height     : auto;
    object-fit : contain;
    display    : block;
    flex-shrink: 0;
}

.i100d-eyebrow__label {
    font        : 600 13px/1 "Poppins", sans-serif;
    color       : #ed9732;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Title */
.i100d-title {
    font-family : "Cormorant Garamond", serif;
    font-size   : 72px;
    line-height : 80px;
    font-weight : 300;
    color       : #000000;
    margin      : 0 0 16px;
    padding     : 0;
    border      : none;
}

/* Sub title */
.i100d-subtitle {
    font        : 300 20px/30px "Poppins", sans-serif;
    color       : #747787;
    margin      : 0 0 28px;
}

/* Meta + share row */
.i100d-meta-share {
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    flex-wrap       : wrap;
    gap             : 16px;
    padding-top     : 20px;
    border-top      : 1px solid #e8e8e8;
}

.i100d-meta-row {
    display     : flex;
    align-items : center;
    flex-wrap   : wrap;
    gap         : 8px;
}

.i100d-meta-item {
    display     : flex;
    align-items : center;
    gap         : 5px;
}

.i100d-meta-item__key {
    font        : 500 14px/1 "Poppins", sans-serif;
    color       : #747787;
}

.i100d-meta-item__sep {
    color : #ccc;
}

.i100d-meta-item__val {
    font        : 300 14px/1 "Poppins", sans-serif;
    color       : #ed9732;
    font-weight : 600;
}

.i100d-meta-pipe {
    color  : #ddd;
    font   : 300 14px/1 "Poppins", sans-serif;
    margin : 0 4px;
}

/* Share */
.i100d-share {
    display     : flex;
    align-items : center;
    gap         : 10px;
}

.i100d-share__label {
    font        : 300 14px/1 "Poppins", sans-serif;
    color       : #747787;
}

/* ── Featured image — reuses sp-featured-image + override ── */
.i100d-featured-image {
    padding   : 0 100px;
    margin-bottom: 0;
}

.i100d-featured-image img {
    border-radius : 20px;
}

/* ── ACF info strip ── */
.i100d-info-strip {
    display     : flex;
    flex-wrap   : wrap;
    gap         : 0;
    background  : #214731;
    margin      : 0;
    padding     : 0 100px;
}

.i100d-info-block {
    display        : flex;
    flex-direction : column;
    gap            : 6px;
    padding        : 28px 48px 28px 0;
    border-right   : 1px solid rgba(255,255,255,0.15);
    margin-right   : 48px;
}

.i100d-info-block:last-child {
    border-right : none;
    margin-right : 0;
    padding-right: 0;
}

.i100d-info-block__key {
    font        : 600 11px/1 "Poppins", sans-serif;
    color       : #ed9732;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.i100d-info-block__val {
    font  : 300 18px/26px "Poppins", sans-serif;
    color : #ffffff;
}

/* ── Content area ── */
.i100d-content-wrap {
    padding : 72px 100px 80px;
}

.i100d-content.entry-content {
    max-width : 100%;
}

.i100d-content.entry-content p,
.i100d-content.entry-content li {
    font-family : "Poppins", sans-serif;
    font-size   : 18px;
    line-height : 30px;
    font-weight : 300;
    color       : #1a1a1a;
}

.entry-content {
    max-width : 100%;
}

/* ── Related ── */
.i100d-related {
    background : #f7f3ee;
    padding    : 72px 100px 80px;
}

.i100d-related__heading {
    font        : 300 48px/56px "Cormorant Garamond", serif;
    color       : #000000;
    margin      : 0 0 40px;
    padding     : 0;
    border      : none;
}

.i100d-related__grid {
    display               : grid;
    grid-template-columns : repeat(3, 1fr);
    gap                   : 28px;
}

/* ── Responsive — Tablet ── */
@media (max-width: 1023px) {
    .i100d-header            { padding: 56px 48px 40px; }
    .i100d-title             { font-size: 52px; line-height: 60px; }
    .i100d-subtitle          { font-size: 17px; }
    .i100d-featured-image    { padding: 0 48px; }
    .i100d-info-strip        { padding: 0 48px; }
    .i100d-content-wrap      { padding: 52px 48px 60px; }
    .i100d-related           { padding: 52px 48px 60px; }
    .i100d-related__grid     { grid-template-columns: repeat(2, 1fr); }
    .i100d-related__heading  { font-size: 38px; line-height: 46px; }
}

/* ── Responsive — Mobile ── */
@media (max-width: 767px) {
    .i100d-header            { padding: 36px 20px 28px; }
    .i100d-title             { font-size: 38px; line-height: 46px; }
    .i100d-subtitle          { font-size: 15px; line-height: 24px; }
    .i100d-eyebrow__badge    { width: 44px; }
    .i100d-meta-share        { flex-direction: column; align-items: flex-start; gap: 16px; }
    .i100d-featured-image    { padding: 0 20px; }
    .i100d-info-strip        { padding: 0 20px; flex-direction: column; gap: 0; }
    .i100d-info-block        { padding: 20px 0; border-right: none; margin-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .i100d-info-block:last-child { border-bottom: none; }
    .i100d-content-wrap      { padding: 36px 20px 48px; }
    .i100d-related           { padding: 40px 20px 48px; }
    .i100d-related__grid     { grid-template-columns: 1fr; }
    .i100d-related__heading  { font-size: 32px; line-height: 40px; }
}

/* ==========================================================================
   Story Detail Page  (.strd-*)
   ========================================================================== */

/* ── Page wrapper ── */
.story-single-page { padding: 0; }

/* ── Article container — mirrors .sp-article with 100px padding ── */
.strd-article {
    max-width : 100%;
    margin    : 0 auto;
    padding   : 100px;
}

/* ── Eyebrow / category pill ── */
.strd-eyebrow {
    font           : 600 11px/1 "Poppins", sans-serif;
    color          : #ed9732;
    letter-spacing : 2px;
    text-transform : uppercase;
    margin         : 0 0 24px;
    display        : flex;
    align-items    : center;
    gap            : 12px;
}
.strd-eyebrow::before {
    content    : '';
    display    : inline-block;
    width      : 28px;
    height     : 2px;
    background : #ed9732;
    flex-shrink: 0;
}
.strd-eyebrow__link { color: inherit; text-decoration: none; }
.strd-eyebrow__link:hover { text-decoration: underline; }

/* ── Hero image — contained inside padding, matches sp-featured-image ── */
.strd-hero-image {
    margin-bottom : 48px;
    overflow      : hidden;
    border-radius : 20px;
}
.strd-hero-image img {
    width          : 100%;
    height         : auto;
    max-height     : 560px;
    object-fit     : cover;
    object-position: center 30%;
    display        : block;
    border-radius  : 20px;
}

/* ── Pull quote — contained dark green block, matches article padding ── */
.strd-quote-section {
    background    : #214731;
    margin        : 0 0 48px;
    padding       : 60px 72px;
    position      : relative;
    overflow      : hidden;
    text-align    : center;
    border-radius : 16px;
}
.strd-quote-section::before,
.strd-quote-section::after {
    font           : 300 200px/1 "Cormorant Garamond", serif;
    color          : rgba(255,255,255,0.07);
    position       : absolute;
    pointer-events : none;
    user-select    : none;
    line-height    : 1;
}
.strd-quote-section::before { content: '\201C'; top: -20px; left: 32px; }
.strd-quote-section::after  { content: '\201D'; bottom: -60px; right: 32px; }

.strd-quote-text {
    font          : 300 italic 34px/54px "Cormorant Garamond", serif !important;
    color         : #fff !important;
    padding       : 0 !important;
    border        : none !important;
    background    : transparent !important;
    border-radius : 0 !important;
}

.strd-quote-attr {
    display         : flex;
    align-items     : center;
    justify-content : center;
    gap             : 10px;
    font            : 500 13px/1 "Poppins", sans-serif;
    color           : #ed9732;
    margin          : 0;
}
.strd-quote-attr__dash { color: rgba(255,255,255,0.4); font-size: 18px; }
.strd-quote-attr__name { color: #fff; }
.strd-quote-attr__sep  { color: rgba(255,255,255,0.3); }
.strd-quote-attr__work { color: #ed9732; text-transform: uppercase; font-size: 11px; }

/* ── Profile card ── */
.strd-profile {
    display               : grid;
    grid-template-columns : 120px 1fr auto;
    gap                   : 36px;
    align-items           : center;
    background            : #fff;
    border                : 1px solid #ebebeb;
    border-radius         : 16px;
    padding               : 36px 44px;
    margin                : 48px 0;
    box-shadow            : 0 4px 40px rgba(0,0,0,0.06);
}

.strd-profile__avatar {
    width         : 120px;
    height        : 120px;
    border-radius : 50%;
    overflow      : hidden;
    background    : #ece8e2;
    box-shadow    : 0 0 0 3px #fff, 0 0 0 5px #214731;
}
.strd-profile__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.strd-profile__avatar--initial {
    width           : 100%;
    height          : 100%;
    display         : flex;
    align-items     : center;
    justify-content : center;
    font            : 600 44px/1 "Cormorant Garamond", serif;
    color           : #214731;
    background      : #faf5f0;
}

.strd-profile__details { min-width: 0; }

.strd-profile__name {
    font   : 600 24px/30px "Poppins", sans-serif;
    color  : #111;
    margin : 0 0 6px;
}
.strd-profile__work {
    font           : 500 11px/1 "Poppins", sans-serif;
    color          : #ed9732;
    letter-spacing : 1px;
    text-transform : uppercase;
    margin         : 0 0 20px;
}
.strd-profile__meta       { display: flex; gap: 28px; flex-wrap: wrap; }
.strd-profile__meta-item  { display: flex; flex-direction: column; gap: 5px; }
.strd-profile__meta-label {
    font           : 600 9px/1 "Poppins", sans-serif;
    color          : #bbb;
    text-transform : uppercase;
    letter-spacing : 1.2px;
}
.strd-profile__meta-val  { font: 400 14px/20px "Poppins", sans-serif; color: #333; }
.strd-profile__meta-link { color: #214731; text-decoration: none; font-weight: 500; }
.strd-profile__meta-link:hover { text-decoration: underline; }

.strd-linkedin-btn {
    display         : inline-flex;
    align-items     : center;
    gap             : 9px;
    padding         : 14px 22px;
    border-radius   : 100px;
    background      : #214731;
    color           : #fff;
    font            : 600 13px/1 "Poppins", sans-serif;
    text-decoration : none;
    white-space     : nowrap;
    flex-shrink     : 0;
    transition      : background 200ms ease, transform 200ms ease;
}
.strd-linkedin-btn:hover { background: #1a3828; color: #fff; transform: translateY(-2px); }

/* ==========================================================================
   Story Detail — Responsive
   ========================================================================== */

/* ── Tablet (<=1023px) — mirrors sp-article: padding 48px 40px ── */
@media (max-width: 1023px) {
    .strd-article        { padding: 48px 40px; }
    .strd-hero-image     { margin-bottom: 40px; }
    .strd-quote-section  { margin-bottom: 40px; padding: 48px 48px; }
    .strd-quote-section::before { font-size: 160px; top: -16px; left: 24px; }
    .strd-quote-section::after  { font-size: 160px; bottom: -50px; right: 24px; }
    .strd-quote-text     { font-size: 28px !important; line-height: 44px !important; }
    .strd-profile        { grid-template-columns: 110px 1fr; gap: 24px; padding: 28px 32px; margin: 40px 0; align-items: start; }
    .strd-profile__avatar { width: 110px; height: 110px; }
    .strd-profile__name  { font-size: 20px; line-height: 26px; }
    .strd-profile__meta  { gap: 12px 20px; }
    .strd-linkedin-btn   { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
}

/* ── Mobile (<=767px) — mirrors sp-article: padding 32px 20px ── */
@media (max-width: 767px) {
    .strd-article        { padding: 32px 20px; }
    .strd-hero-image     { margin-bottom: 32px; border-radius: 12px; }
    .strd-hero-image img { border-radius: 12px; }
    .strd-quote-section  { margin-bottom: 32px; padding: 40px 28px; border-radius: 12px; }
    .strd-quote-section::before { font-size: 120px; top: -12px; left: 16px; }
    .strd-quote-section::after  { font-size: 120px; bottom: -38px; right: 16px; }
    .strd-quote-text     { font-size: 22px !important; line-height: 36px !important; }
    .strd-quote-attr     { flex-wrap: wrap; gap: 6px; font-size: 12px; }
    .strd-profile        { grid-template-columns: 80px 1fr; gap: 16px; padding: 20px; margin: 32px 0; border-radius: 12px; }
    .strd-profile__avatar { width: 80px; height: 80px; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #214731; }
    .strd-profile__avatar--initial { font-size: 30px; }
    .strd-profile__name  { font-size: 18px; line-height: 24px; }
    .strd-profile__work  { font-size: 10px; margin-bottom: 12px; }
    .strd-profile__meta  { gap: 12px; }
    .strd-profile__meta-val { font-size: 13px; }
    .strd-linkedin-btn   { grid-column: 1 / -1; padding: 12px 18px; font-size: 12px; }
}

/* ── Small mobile (<=480px) ── */
@media (max-width: 480px) {
    .strd-article        { padding: 24px 16px; }
    .strd-hero-image     { margin-bottom: 28px; border-radius: 10px; }
    .strd-hero-image img { border-radius: 10px; }
    .strd-quote-section  { margin-bottom: 28px; padding: 36px 20px; border-radius: 10px; }
    .strd-quote-section::before,
    .strd-quote-section::after { display: none; }
    .strd-quote-text     { font-size: 19px !important; line-height: 30px !important; }
    .strd-profile        { grid-template-columns: 64px 1fr; gap: 12px; padding: 16px; margin: 24px 0; }
    .strd-profile__avatar { width: 64px; height: 64px; }
    .strd-profile__avatar--initial { font-size: 26px; }
    .strd-profile__name  { font-size: 15px; line-height: 22px; }
    .strd-profile__meta  { gap: 10px; }
    .strd-profile__meta-label { font-size: 8px; }
    .strd-profile__meta-val   { font-size: 12px; }
}