/* Extracted from views/frontend/home-new.blade.php */
/* Fjern gammelt rosa bakgrunnsbilde fra .front-page-new */
        .front-page-new {
            background-image: none !important;
        }

        .hero-wrapper {
            background: #fff;
            overflow: hidden;
        }

        .hero-section {
            max-width: 1140px;
            margin: 0 auto;
            padding: 3.5rem 2rem 0;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 3rem;
            align-items: start;
            min-height: 85vh;
        }

        .hero-section__content {
            padding-top: 2rem;
        }

        .hero-section__eyebrow {
            font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #8a8580;
            margin-bottom: 1.25rem;
        }

        .hero-section__heading {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(2.5rem, 4.5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            max-width: 520px;
        }

        .hero-section__heading em {
            font-style: italic;
            color: var(--secondary-red, #852635);
        }

        .hero-section__description {
            font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.125rem;
            font-weight: 300;
            line-height: 1.7;
            color: #5a5550;
            max-width: 440px;
            margin-bottom: 2rem;
        }

        .hero-section__ctas {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 6px;
            padding: 0.8rem 1.75rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .hero-cta--primary {
            background: var(--secondary-red, #852635);
            color: #fff;
            border: 2px solid var(--secondary-red, #852635);
        }

        .hero-cta--primary:hover {
            background: #9c2e40;
            border-color: #9c2e40;
            transform: translateY(-1px);
            color: #fff;
            text-decoration: none;
        }

        .hero-cta--primary .hero-cta__arrow {
            transition: transform 0.2s;
        }

        .hero-cta--primary:hover .hero-cta__arrow {
            transform: translateX(3px);
        }

        .hero-cta--secondary {
            background: transparent;
            color: #1a1a1a;
            border: 1.5px solid rgba(0, 0, 0, 0.1);
        }

        .hero-cta--secondary:hover {
            border-color: var(--secondary-red, #852635);
            color: var(--secondary-red, #852635);
            text-decoration: none;
        }

        .hero-section__stats {
            display: flex;
            gap: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
        }

        .hero-stat__number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .hero-stat__label {
            font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 0.8rem;
            font-weight: 400;
            color: #8a8580;
            letter-spacing: 0.3px;
        }

        .hero-section__image-wrapper {
            position: relative;
            align-self: stretch;
        }

        .hero-section__image-container {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 560px;
            border-radius: 12px;
            overflow: hidden;
            background: #e8e4df;
        }

        .hero-section__image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }

        .hero-section__quote {
            position: absolute;
            bottom: 1.5rem;
            right: -1.5rem;
            background: #fff;
            border-radius: 8px;
            padding: 1.25rem 1.5rem;
            max-width: 260px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        }

        .hero-section__quote::before {
            content: '';
            position: absolute;
            top: 1.25rem;
            left: -4px;
            width: 4px;
            height: 32px;
            background: var(--secondary-red, #852635);
            border-radius: 2px;
        }

        .hero-section__quote-text {
            font-family: 'Playfair Display', Georgia, serif;
            font-style: italic;
            font-size: 0.95rem;
            line-height: 1.5;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }

        .hero-section__quote-author {
            font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 0.75rem;
            color: #8a8580;
            font-weight: 500;
        }

        .hero-banner {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 2rem 3rem;
        }

        .hero-banner__inner {
            background: #faf8f5;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .hero-banner__left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hero-banner__icon {
            width: 44px;
            height: 44px;
            background: rgba(134, 39, 54, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero-banner__icon svg {
            width: 22px;
            height: 22px;
        }

        .hero-banner__title {
            font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.15rem;
        }

        .hero-banner__sub {
            font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 0.825rem;
            color: #5a5550;
            font-weight: 400;
        }

        .hero-banner__cta {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--secondary-red, #852635);
            text-decoration: none;
            white-space: nowrap;
            padding: 0.6rem 1.25rem;
            border: 1.5px solid var(--secondary-red, #852635);
            border-radius: 6px;
            transition: all 0.2s;
        }

        .hero-banner__cta:hover {
            background: var(--secondary-red, #852635);
            color: #fff;
            text-decoration: none;
        }

        @media (max-width: 900px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 2rem;
                min-height: auto;
                padding: 2rem 1.5rem;
            }

            .hero-section__content {
                padding-top: 0;
            }

            .hero-section__image-container {
                min-height: 400px;
            }

            .hero-section__quote {
                right: 1rem;
            }

            .hero-section__stats {
                gap: 1.5rem;
            }

            .hero-banner__inner {
                flex-direction: column;
                text-align: center;
            }

            .hero-banner__left {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .hero-section__heading {
                font-size: 2.2rem;
            }

            .hero-section__stats {
                flex-wrap: wrap;
                gap: 1.5rem;
            }

            .hero-stat {
                min-width: 80px;
            }
        }

        /* ── SISTE NYTT ───────────────────────────────────── */
        .siste-nytt {
            max-width: 1100px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .siste-nytt__heading {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2.5rem;
        }

        /* Featured announcement */
        .announcement {
            background: linear-gradient(135deg, #1c1917 0%, #2a2520 100%);
            border-radius: 14px;
            padding: 2.5rem;
            margin-bottom: 1.5rem;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .announcement::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(134, 39, 54, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .announcement__badge {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
            background: #862736;
            padding: 0.3rem 0.75rem;
            border-radius: 20px;
            margin-bottom: 0.85rem;
        }

        .announcement__badge-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: #4caf50;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .announcement__title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .announcement__desc {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
            max-width: 540px;
            margin-bottom: 1.25rem;
        }

        .announcement__features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.25rem;
        }

        .announcement__feature {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.85);
            padding: 0.3rem 0.65rem;
            background: rgba(255,255,255,0.08);
            border-radius: 20px;
        }

        .announcement__feature svg { width: 12px; height: 12px; stroke: #4caf50; }

        .announcement__progress {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .announcement__progress-bar {
            width: 120px; height: 4px;
            background: rgba(255,255,255,0.15);
            border-radius: 2px;
            overflow: hidden;
        }

        .announcement__progress-fill {
            height: 100%;
            background: #862736;
            border-radius: 2px;
        }

        .announcement__progress-text {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.5);
        }

        .announcement__visual {
            position: relative;
            width: 200px; height: 160px;
            flex-shrink: 0;
        }

        .announcement__mockup {
            width: 100%; height: 100%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            padding: 0.75rem;
            gap: 0.5rem;
        }

        .mockup-bar {
            height: 6px; border-radius: 3px;
            background: rgba(255,255,255,0.08);
        }
        .mockup-bar--short { width: 40%; }
        .mockup-bar--medium { width: 65%; }
        .mockup-bar--long { width: 85%; }
        .mockup-bar--accent { background: rgba(134, 39, 54, 0.4); width: 50%; }

        .mockup-dots { display: flex; gap: 4px; margin-top: auto; }
        .mockup-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.1); }
        .mockup-dot--done { background: rgba(46, 125, 50, 0.5); }

        /* News cards */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .news-card {
            background: #faf8f5;
            border-radius: 14px;
            padding: 1.5rem;
            transition: transform 0.15s, box-shadow 0.15s;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            text-decoration: none;
            color: inherit;
        }

        .news-card__badge {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 600;
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
            margin-bottom: 0.75rem;
            align-self: flex-start;
        }

        .news-card__badge--webinar { background: #862736; color: #fff; }
        .news-card__badge--reprise { background: #f4e8ea; color: #862736; }
        .news-card__badge--kurs { background: #e3f2fd; color: #1565c0; }

        .news-card__title {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.35rem;
            line-height: 1.35;
        }

        .news-card__meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.78rem;
            color: #8a8580;
            margin-top: auto;
            padding-top: 0.75rem;
        }

        .news-card__meta svg { width: 14px; height: 14px; stroke: #8a8580; flex-shrink: 0; }

        @media (max-width: 768px) {
            .announcement { grid-template-columns: 1fr; }
            .announcement__visual { display: none; }
            .news-grid { grid-template-columns: 1fr; }
        }

        /* ── ROMANKURS / NESTE KURSSTART ─────────────────── */
        .kurs-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .kurs-section__header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .kurs-section__heading {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .kurs-section__sub {
            font-size: 1rem;
            color: #5a5550;
        }

        /* Earlybird countdown */
        .earlybird-banner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            background: linear-gradient(135deg, #1c1917, #2a2520);
            border-radius: 14px;
            padding: 1.25rem 2rem;
            margin-bottom: 2rem;
            color: #fff;
            flex-wrap: wrap;
        }

        .earlybird-banner__badge {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #1c1917;
            background: #ffd54f;
            padding: 0.3rem 0.75rem;
            border-radius: 4px;
        }

        .earlybird-banner__text {
            font-size: 0.9rem;
            font-weight: 500;
        }

        .earlybird-banner__text strong { color: #ffd54f; }

        .earlybird-countdown {
            display: flex;
            gap: 0.6rem;
        }

        .earlybird-countdown__unit {
            text-align: center;
            background: rgba(255,255,255,0.1);
            border-radius: 6px;
            padding: 0.4rem 0.6rem;
            min-width: 48px;
        }

        .earlybird-countdown__number {
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1;
        }

        .earlybird-countdown__label {
            font-size: 0.55rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: rgba(255,255,255,0.6);
            margin-top: 2px;
        }

        /* Course hero card */
        .course-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: start;
            background: #faf8f5;
            border-radius: 14px;
            padding: 2.5rem;
            margin-bottom: 2rem;
        }

        .course-hero__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #862736;
            margin-bottom: 0.75rem;
        }

        .course-hero__eyebrow-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: #2e7d32;
        }

        .course-hero__title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            line-height: 1.25;
        }

        .course-hero__date {
            font-size: 0.875rem;
            color: #8a8580;
            margin-bottom: 1rem;
        }

        .course-hero__desc {
            font-size: 0.9rem;
            color: #5a5550;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .course-hero__features {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .course-hero__feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.825rem;
            color: #5a5550;
        }

        .course-hero__feature svg { width: 16px; height: 16px; stroke: #2e7d32; flex-shrink: 0; }

        .course-hero__social-proof {
            font-size: 0.78rem;
            color: #8a8580;
            font-style: italic;
            padding-top: 1rem;
            border-top: 1px solid rgba(0,0,0,0.08);
        }

        /* Pricing cards */
        .pricing-cards {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .pricing-card {
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            background: #fff;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            transition: border-color 0.15s, box-shadow 0.15s;
        }

        .pricing-card:hover {
            border-color: rgba(134,39,54,0.2);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        }

        .pricing-card--popular {
            border: 2px solid #862736;
            position: relative;
        }

        .pricing-card__popular-badge {
            position: absolute;
            top: -10px;
            left: 1.5rem;
            background: #862736;
            color: #fff;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 0.2rem 0.65rem;
            border-radius: 4px;
        }

        .pricing-card__info { flex: 1; }

        .pricing-card__name {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.15rem;
        }

        .pricing-card__desc {
            font-size: 0.75rem;
            color: #8a8580;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .pricing-card__price {
            text-align: right;
            flex-shrink: 0;
        }

        .pricing-card__earlybird {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: #862736;
            line-height: 1;
        }

        .pricing-card__original {
            font-size: 0.75rem;
            color: #8a8580;
            text-decoration: line-through;
            margin-top: 0.15rem;
        }

        .pricing-card__save {
            font-size: 0.65rem;
            font-weight: 600;
            color: #2e7d32;
            background: #e8f5e9;
            padding: 0.15rem 0.45rem;
            border-radius: 3px;
            margin-top: 0.3rem;
            display: inline-block;
        }

        .pricing-card__cta { flex-shrink: 0; }

        .btn-wine {
            display: inline-block;
            padding: 0.6rem 1.25rem;
            background: #862736;
            color: #fff;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.825rem;
            transition: background 0.15s;
            white-space: nowrap;
        }

        .btn-wine:hover { background: #9c2e40; color: #fff; text-decoration: none; }

        .btn-wine-outline {
            display: inline-block;
            padding: 0.6rem 1.25rem;
            background: transparent;
            color: #862736;
            border: 1.5px solid #862736;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.825rem;
            transition: all 0.15s;
            white-space: nowrap;
        }

        .btn-wine-outline:hover { background: #862736; color: #fff; text-decoration: none; }

        .pricing-note {
            font-size: 0.72rem;
            color: #8a8580;
            text-align: center;
            margin-top: 1rem;
            line-height: 1.5;
        }

        .kurs-section__footer {
            text-align: center;
            margin-top: 2rem;
        }

        @media (max-width: 768px) {
            .course-hero { grid-template-columns: 1fr; }
            .earlybird-banner { flex-direction: column; text-align: center; }
            .pricing-card { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
            .pricing-card__price { text-align: left; }
        }

        /* ── NETTKURS FORDELER ────────────────────────────── */
        .benefits-section {
            padding: 4rem 0;
        }

        .benefits-section__inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .benefits-section__heading {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2.5rem;
            color: #1a1a1a;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .benefit-card {
            background: #faf8f5;
            border-radius: 14px;
            padding: 2rem 1.5rem;
            text-align: center;
        }

        .benefit-card__icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 1rem;
            background: rgba(134, 39, 54, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-card__icon svg {
            width: 24px;
            height: 24px;
            stroke: #862736;
        }

        .benefit-card__title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }

        .benefit-card__desc {
            font-size: 0.85rem;
            color: #5a5550;
            line-height: 1.6;
        }

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

        /* ── GRATIS TEKSTVURDERING CTA ───────────────────── */
        .cta-section {
            padding: 4rem 0;
        }

        .cta-card {
            max-width: 1100px;
            margin: 0 auto;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, #862736, #5c1a25);
            border-radius: 14px;
            text-align: center;
            color: #fff;
        }

        .cta-card__title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .cta-card__desc {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .cta-card__btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            background: #fff;
            color: #862736;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .cta-card__btn:hover {
            background: #faf8f5;
            transform: translateY(-1px);
        }

        /* ── NEWSLETTER STRIP ────────────────────────────── */
        .newsletter-strip {
            background: #1c1917;
            padding: 2rem 0;
        }

        .newsletter-strip__inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .newsletter-strip__title {
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
        }

        .newsletter-strip__sub {
            color: rgba(255,255,255,0.6);
            font-size: 0.8rem;
        }

        .newsletter-strip__form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-strip__input {
            padding: 0.6rem 1rem;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 8px;
            background: rgba(255,255,255,0.08);
            color: #fff;
            font-size: 0.85rem;
            width: 260px;
            font-family: inherit;
        }

        .newsletter-strip__input::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .newsletter-strip__btn {
            padding: 0.6rem 1.25rem;
            background: #862736;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: background 0.2s;
        }

        .newsletter-strip__btn:hover {
            background: #9c2e40;
        }

        @media (max-width: 768px) {
            .newsletter-strip__inner {
                flex-direction: column;
                text-align: center;
            }
            .newsletter-strip__form {
                flex-direction: column;
                width: 100%;
            }
            .newsletter-strip__input {
                width: 100%;
            }
        }

        /* ── MØT MENTORENE ──────────────────────────────── */
        .mentors-section {
            padding: 4rem 0;
            background: #faf8f5;
        }

        .mentors-section__inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .mentors-section__heading {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .mentors-section__desc {
            font-size: 0.95rem;
            color: #5a5550;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        .mentors-section__names {
            font-size: 0.8rem;
            color: #8a8580;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        .mentors-section__btn {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            border: 1.5px solid #862736;
            border-radius: 8px;
            color: #862736;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }

        .mentors-section__btn:hover {
            background: #862736;
            color: #fff;
        }

        .mentors-section__image img {
            width: 100%;
            border-radius: 14px;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .mentors-section__inner {
                grid-template-columns: 1fr;
            }
            .mentors-section__image {
                order: -1;
            }
        }
