/* ============================================
   SWEDEN PROTESTS — Blog Format
   ============================================ */

/* ---- Base ---- */
body.story-page {
    background: #fff;
    color: var(--color-text);
}

/* ---- Utility: Narrow container ---- */
.s-narrow {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO — Full-bleed immersive
   ============================================ */
.s-hero {
    position: relative;
    height: clamp(520px, 72vh, 740px);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.s-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
}

.s-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(23, 17, 10, 0.45) 0%,
            rgba(23, 17, 10, 0.6) 40%,
            rgba(23, 17, 10, 0.6) 60%,
            rgba(23, 17, 10, 0.45) 100%
        );
}

.s-hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 0 clamp(24px, 5vw, 72px) clamp(48px, 7vh, 80px);
}

.s-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.25s ease;
}

.s-hero__back::before {
    content: '\2190';
    font-size: 15px;
    transition: transform 0.25s ease;
}

.s-hero__back:hover {
    color: #fff;
}

.s-hero__back:hover::before {
    transform: translateX(-4px);
}

.s-hero__date {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.s-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5.5vw, 64px);
    font-weight: 900;
    line-height: 1.06;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}

.s-hero__sub {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-weight: 400;
}

.s-hero__rule {
    width: 56px;
    height: 3px;
    background: var(--color-primary);
    margin-top: 28px;
    border-radius: 2px;
}

/* ============================================
   VIDEO
   ============================================ */
.s-video {
    background: #FCF1DD;
    padding: 56px 24px;
}

.s-video__inner {
    max-width: 960px;
    margin: 0 auto;
}

.s-video__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(23, 17, 10, 0.14);
}

.s-video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.s-video--inline {
    padding: 0 24px;
    margin: 0 auto 48px;
    max-width: 1008px;
    background: none;
}

/* ============================================
   LEDE
   ============================================ */
.s-lede {
    padding: 72px 0 56px;
    border-bottom: 1px solid rgba(153, 90, 59, 0.12);
    background: #FCF1DD;
}

.s-lede .s-narrow {
    max-width: 960px;
}

.s-lede p {
    font-family: var(--font-body);
    font-size: clamp(19px, 2.4vw, 24px);
    line-height: 1.75;
    color: #3d3228;
    margin: 0;
    font-weight: 400;
}

.s-lede p::first-letter {
    font-family: var(--font-heading);
    float: left;
    font-size: 3.6em;
    line-height: 0.8;
    font-weight: 900;
    color: var(--color-primary-dark);
    margin-right: 8px;
    margin-top: 6px;
}

.s-lede strong {
    font-weight: 700;
    color: var(--color-text);
}

/* ============================================
   ARTICLE BODY
   ============================================ */
.s-article {
    padding: 56px 0 0;
}

/* Vertical rhythm between narrow blocks */
.s-article > .s-narrow {
    margin-bottom: 48px;
}

.s-article > .s-narrow + .s-narrow {
    padding-top: 8px;
    border-top: 1px solid rgba(153, 90, 59, 0.08);
}

.s-article h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 900;
    line-height: 1.25;
    color: var(--color-text);
    margin: 0 0 20px;
}

.s-article h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(24px, 3vw, 32px);
    margin: 0 0 12px;
}

.s-article strong {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 21px;
}

.s-article li strong {
    font-size: 17px;
}

.s-article p {
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.85;
    color: #4a4a4a;
    margin: 0 0 24px;
}

.s-article p:last-child {
    margin-bottom: 0;
}

.s-article ul {
    list-style: disc;
    margin: 0 0 28px;
    padding: 0 0 0 22px;
}

.s-article li {
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.85;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.s-article li::marker {
    color: var(--color-primary-dark);
}

/* ============================================
   TEXT + IMAGE (side by side)
   ============================================ */
.s-text-image {
    max-width: 960px;
    margin: 0 auto 56px;
    padding: 0 24px;
}

.s-text-image__text p {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.7;
    color: #3d3228;
    font-weight: 400;
    font-style: italic;
    margin: 0 0 48px;
}

.s-text-image__figure {
    margin: 48px 0 0;
}

.s-text-image__figure img {
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}

.s-text-image__figure figcaption {
    font-family: var(--font-body);
    font-size: 13px;
    color: #8a7a6a;
    margin-top: 12px;
    line-height: 1.5;
}

/* ============================================
   INLINE BLOCKQUOTE
   ============================================ */
.s-blockquote {
    margin: 48px 0;
    padding: 36px 40px;
    border-left: 4px solid var(--color-primary-dark);
    background: var(--color-primary-light, #FCF1DD);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.s-blockquote::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--color-primary-dark);
    opacity: 0.2;
    line-height: 1;
}

.s-blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0 0 14px;
    font-style: italic;
}

.s-blockquote footer {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #6b5c4c;
}

.s-blockquote cite {
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
}

/* ============================================
   FIGURES
   ============================================ */
.s-figure {
    margin: 0;
}

.s-figure img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.s-figure figcaption {
    font-family: var(--font-body);
    font-size: 13px;
    color: #8a7a6a;
    margin-top: 14px;
    padding: 0 4px;
    line-height: 1.5;
}

/* Wide figure — breaks out of narrow */
.s-figure--bleed {
    max-width: 960px;
    margin: 44px auto 48px;
    padding: 0 24px;
}

/* ============================================
   IMAGE PAIR
   ============================================ */
.s-image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 56px auto 60px;
    padding: 0 24px;
}

.s-image-pair .s-figure img {
    object-fit: contain;
}

/* ============================================
   VOICES
   ============================================ */
.s-voices {
    margin: 64px 0 56px;
    padding: 64px 0;
    background: #FAF7F2;
    border-top: 1px solid rgba(153, 90, 59, 0.1);
    border-bottom: 1px solid rgba(153, 90, 59, 0.1);
}

.s-voices__heading {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    color: var(--color-text);
    margin: 0 0 40px;
    text-align: center;
}

.s-voices__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.s-voice {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(153, 90, 59, 0.1);
    box-shadow: 0 6px 24px rgba(23, 17, 10, 0.06);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.s-voice:hover {
    box-shadow: 0 12px 36px rgba(23, 17, 10, 0.12);
    transform: translateY(-3px);
}

.s-voice__img {
    margin: 0;
    overflow: hidden;
    line-height: 0;
    border-radius: 18px 18px 0 0;
}

.s-voice__img img {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.s-voice:hover .s-voice__img img {
    transform: scale(1.03);
}

.s-voice__quote {
    margin: 0;
    padding: 20px 22px;
}

.s-voice__quote p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: #5a4a3a;
    margin: 0;
    font-style: italic;
}

/* ============================================
   RESOURCES
   ============================================ */
.s-resources {
    margin: 56px 0;
    padding: 36px 40px;
    background: #FAF7F2;
    border-radius: 18px;
    border: 1px solid rgba(153, 90, 59, 0.1);
}

.s-resources h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--color-text);
    margin: 0 0 24px;
}

.s-resources__list {
    display: flex;
    flex-direction: column;
}

.s-resources__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-primary-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(153, 90, 59, 0.08);
    transition: color 0.2s ease, padding-left 0.25s ease;
}

.s-resources__list a:last-child {
    border-bottom: none;
}

.s-resources__list a:hover {
    color: var(--color-text);
    padding-left: 8px;
}

.s-resources__list a svg {
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.s-resources__list a:hover svg {
    opacity: 0.8;
    transform: translate(2px, -2px);
}

.s-resources__list a span {
    flex: 1;
    min-width: 0;
}

/* ============================================
   AUTHOR
   ============================================ */
.s-author {
    max-width: 960px;
    margin: 0 auto 56px;
    padding: 0 24px;
}

.s-author__card {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(153, 90, 59, 0.1);
    box-shadow: 0 12px 40px rgba(23, 17, 10, 0.08);
}

.s-author__img {
    margin: 0;
    line-height: 0;
}

.s-author__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.s-author__text {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.s-author__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    margin: 0 0 12px;
}

.s-author__name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-text);
    margin: 0 0 4px;
}

.s-author__role {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}

.s-author__bio {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: #5a4a3a;
    margin: 0;
}

.s-author__copy {
    font-family: var(--font-body);
    font-size: 12px;
    color: #a99a8a;
    margin: 18px 0 0;
    letter-spacing: 0.02em;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
    padding: 40px 0 100px 0 !important;
    background: #FCF1DD !important;
    background-image: none !important;
    min-height: auto !important;
    display: block !important;
}
.cta-section::before,
.cta-section::after {
    display: none !important;
}
.cta-section .brxe-container,
.cta-section .cta-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 64px 56px !important;
    text-align: center !important;
    background: linear-gradient(135deg, #995A3B 0%, #BD9450 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(153, 90, 59, 0.2) !important;
}
.cta-section h2,
.cta-section .brxe-heading {
    font-family: "Playfair Display", serif !important;
    font-weight: 900 !important;
    font-size: clamp(44px, 5vw, 64px) !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin: 0 0 16px 0 !important;
}
.cta-section .brxe-text,
.cta-section .brxe-text p,
.cta-section > div > p {
    font-family: "Inter", sans-serif !important;
    font-size: 20px !important;
    line-height: 1.5 !important;
    color: #fff !important;
    margin: 0 0 24px 0 !important;
}
.cta-contact-row {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 16px !important;
}
.cta-section .brxe-button,
.cta-section .btn-primary,
.cta-section .btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 32px !important;
    font-family: "Inclusive Sans", sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    color: #1a1a1a !important;
    border: none !important;
    transition: all 0.3s ease !important;
    min-width: 200px !important;
}
.cta-contact-row .brxe-button:hover,
.cta-contact-row .btn-primary:hover {
    background-color: #2d4a3e !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}
.cta-buttons .brxe-button:hover,
.cta-buttons .btn-primary:hover,
.cta-buttons .btn-secondary:hover,
.cta-section .brxe-div .brxe-button:hover {
    background-color: #E8D5B7 !important;
    transform: translateY(-2px) !important;
}
.cta-buttons,
.cta-section .brxe-div {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* ============================================
   RESPONSIVE — 991px
   ============================================ */
@media (max-width: 991px) {
    .s-voices__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    .s-hero {
        height: clamp(380px, 58vh, 520px);
    }

    .s-hero__title {
        font-size: clamp(28px, 8vw, 42px);
    }

    .s-hero__rule {
        margin-top: 20px;
    }

    .s-lede {
        padding: 52px 0 40px;
    }

    .s-lede p {
        font-size: clamp(17px, 4.5vw, 20px);
    }

    .s-article > .s-narrow {
        margin-bottom: 36px;
    }

    .s-blockquote {
        margin: 36px 0;
        padding: 24px 28px;
    }

    .s-image-pair {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .s-voices {
        margin: 44px 0;
        padding: 44px 0;
    }

    .s-resources {
        padding: 28px 24px;
    }

    .s-author__card {
        grid-template-columns: 1fr;
    }

    .s-author__img img {
        aspect-ratio: 16 / 9;
    }

    .s-author__text {
        padding: 28px 28px;
    }

    .cta-section .brxe-container,
    .cta-section .cta-container {
        margin: 0 20px !important;
        padding: 40px 32px !important;
    }

    .cta-contact-row {
        margin: 0 0 12px 0 !important;
        width: 100%;
    }

    .cta-contact-row .brxe-button,
    .cta-contact-row .btn-primary {
        width: 100% !important;
        min-width: unset !important;
        margin: 0 !important;
    }

    .cta-buttons,
    .cta-section .brxe-div {
        flex-direction: column !important;
        gap: 12px !important;
        margin: 0 !important;
    }

    .cta-buttons .brxe-button,
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100% !important;
        margin: 0 !important;
    }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
    .s-hero__content {
        padding: 0 20px 32px;
    }

    .s-hero__back {
        margin-bottom: 18px;
    }

    .s-article p,
    .s-article li {
        font-size: 16px;
    }

    .s-article > .s-narrow {
        margin-bottom: 30px;
    }

    .s-lede p {
        font-size: 17px;
    }

    .s-lede p::first-letter {
        font-size: 3em;
    }

    .s-blockquote {
        padding: 20px 22px;
    }

    .s-blockquote p {
        font-size: 19px;
    }

    .s-voice__quote {
        padding: 18px 20px;
    }

    .s-resources {
        padding: 22px 18px;
    }

    .s-resources__list a {
        font-size: 14px;
        padding: 12px 0;
    }

    .s-author__text {
        padding: 24px 20px;
    }
}

