@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-VariableFont_wdth\,wght.ttf");
}

@font-face {
    font-family: "Familjen Grotesk";
    src: url("../fonts/FamiljenGrotesk-VariableFont_wght.ttf");
}

:root {
    --affina-brand: #a973fa;
    --affina-brand-700: #6d24cc;
    --affina-text: #1c1a20;
    --affina-text-secondary: rgba(0, 0, 0, 0.5);
    --affina-border: rgba(0, 0, 0, 0.05);
    --affina-surface: #ffffff;
    --affina-surface-soft: #f7f2ff;
    --affina-radius-lg: 16px;
    --affina-radius-xl: 24px;
    --affina-radius-full: 9999px;
    --affina-shadow: 0 24px 64px rgba(109, 36, 204, 0.14);
    --affina-max-width: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--affina-text);
    background:
        radial-gradient(circle at top right, rgba(169, 115, 250, 0.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
    font-family: "Roboto", sans-serif;
}

.affina-route-home .container,
.affina-route-about .container,
.affina-route-hub .container,
.affina-route-products .container,
.affina-route-product-detail .container,
.affina-route-advisor .container {
    max-width: 1180px;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    position: relative;
}

.site-main {
    padding-top: 0;
}

.site-header {
    position: sticky;
    top: 0;
    left: auto;
    right: auto;
    z-index: 1020;
}

.quiz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    backdrop-filter: blur(22px);
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.site-header__inner,
.quiz-header__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-mark {
    font-family: "Familjen Grotesk", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ff51ff;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    position: relative;
    padding: 32px 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: min(1280px, calc(100vw - 32px));
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 32px 80px rgba(17, 16, 20, 0.18);
    padding: 36px 36px 12px;
    opacity: 0;
    visibility: hidden;
    transition: 0.24s ease;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.mega-menu__column {
    padding-right: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.mega-menu__column:last-child {
    border-right: 0;
}

.mega-menu__column h4 {
    margin: 0 0 20px;
    text-transform: uppercase;
    color: #716c7a;
    font-family: "Familjen Grotesk", sans-serif;
    font-size: 1.05rem;
}

.mega-link,
.mega-menu__footer {
    display: block;
}

.mega-link {
    padding: 10px 0;
}

.mega-link__title {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}

.mega-link__desc {
    display: block;
    color: var(--affina-text-secondary);
    font-size: 0.92rem;
}

.mega-menu__footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: #9857f5;
    font-weight: 700;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-button,
.quiz-close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    cursor: pointer;
}

.icon-search {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.icon-search::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -6px;
    width: 8px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: center;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border-radius: var(--affina-radius-full);
    background: rgba(0, 0, 0, 0.03);
    font-size: 0.9rem;
}

.lang-switch a {
    min-width: 42px;
    padding: 8px 12px;
    border-radius: var(--affina-radius-full);
    color: var(--affina-text-secondary);
    text-align: center;
    text-transform: uppercase;
}

.lang-switch .is-current {
    background: #fff;
    color: var(--affina-text);
    box-shadow: 0 6px 16px rgba(17, 16, 20, 0.08);
}

.section,
.hero,
.page-hero {
    padding: 48px 0 88px;
}

.section-tight {
    padding-top: 16px;
}

.section-soft {
    background: linear-gradient(180deg, rgba(252, 250, 255, 0.95), rgba(247, 242, 255, 0.88));
}

.hero-copy h1,
.split-hero h1,
.page-hero h1,
.centered-heading h2,
.quiz-stage h1 {
    margin: 0 0 16px;
    font-family: "Familjen Grotesk", sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.page-hero h1 span,
.page-hero h1 em {
    font-family: "Familjen Grotesk", sans-serif;
    font-style: normal;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.2;
}

.centered-heading {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.left-align {
    margin-left: 0;
    text-align: left;
}

.centered-heading p,
.hero-copy p,
.split-hero p,
.page-hero p {
    margin: 0;
    color: var(--affina-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.eyebrow,
.tag,
.floating-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 14px;
    border-radius: var(--affina-radius-full);
    background: rgba(169, 115, 250, 0.12);
    color: var(--affina-brand);
    font-weight: 700;
    font-size: 0.82rem;
}

.hero-actions,
.cta-row,
.quiz-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.affina-btn-primary,
.affina-btn-secondary {
    min-height: 50px;
    padding-inline: 24px;
    font-weight: 700;
}

.affina-btn-primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #a973fa, #9857f5);
    box-shadow: 0 10px 24px rgba(162, 103, 239, 0.25);
}

.affina-btn-primary:hover,
.affina-btn-primary:focus {
    color: #fff;
    background: linear-gradient(135deg, #9857f5, #a973fa);
}

.affina-btn-secondary {
    color: #45404b;
    border-color: #d1cdd8;
    background: #fff;
}

.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.affina-stat-grid,
.stat-panel {
    margin-top: 28px;
}

.affina-stat-grid .stat-card,
.stat-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.affina-stat-grid .stat-card strong,
.stat-card strong {
    display: block;
    font-size: 2rem;
    font-family: "Familjen Grotesk", sans-serif;
    color: var(--affina-brand);
}

.affina-stat-grid .stat-card span,
.stat-card span {
    color: var(--affina-text-secondary);
    font-size: 0.95rem;
}

.hero-visual,
.photo-panel,
.product-story__image,
.leader-panel__photo,
.story-card__image {
    position: relative;
    border-radius: 32px;
    min-height: 360px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 151, 255, 0.44), transparent 25%),
        radial-gradient(circle at 75% 20%, rgba(169, 115, 250, 0.28), transparent 22%),
        linear-gradient(145deg, rgba(252, 250, 255, 0.98), rgba(231, 239, 255, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--affina-shadow);
}

.visual-card {
    position: absolute;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(109, 36, 204, 0.18);
}

.visual-card--accent {
    inset: 24px 90px 120px 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(245, 236, 255, 0.95));
}

.visual-card--portrait {
    right: 32px;
    top: 42px;
    width: 260px;
    min-height: 330px;
    padding: 18px;
}

.visual-card__caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-weight: 700;
}

.hub-feature-card,
.purchase-card,
.feature-article,
.recommended-card,
.cta-panel,
.event-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    box-shadow: var(--affina-shadow);
}

.hub-feature-card,
.feature-article {
    min-height: 360px;
    padding: 32px;
}

.card-grid,
.icon-grid--three {
    gap: 24px;
}

.icon-card,
.content-card,
.story-card,
.detail-card,
.testimonial-card,
.product-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--affina-radius-lg);
    border: 1px solid var(--affina-border);
}

.mini-icon {
    width: 44px;
    height: 44px;
    display: inline-block;
    border-radius: 14px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(169, 115, 250, 0.16), rgba(255, 109, 250, 0.16));
}

.icon-card h3,
.content-card h3,
.story-card h3,
.detail-card h3,
.testimonial-card strong,
.product-card h2,
.feature-article h3,
.hub-feature-card h3,
.product-story h3 {
    margin: 0 0 10px;
    font-family: "Familjen Grotesk", sans-serif;
    font-size: 1.3rem;
    line-height: 1.25;
}

.icon-card p,
.content-card p,
.story-card p,
.detail-card p,
.testimonial-card p,
.product-card p,
.feature-article p,
.hub-feature-card p {
    margin: 0;
    color: var(--affina-text-secondary);
    line-height: 1.65;
}

.stacked-cards {
    display: grid;
    gap: 18px;
}

.story-card__image {
    min-height: 180px;
    margin-bottom: 18px;
    border-radius: 18px;
}

.event-card {
    padding: 20px 24px;
    margin: 0;
}

.event-date {
    width: 84px;
    min-height: 84px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(160deg, #9b5cf7, #d08eff);
    color: #fff;
    text-align: center;
}

.event-date strong {
    font-family: "Familjen Grotesk", sans-serif;
    font-size: 1.8rem;
}

.product-story {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--affina-shadow);
}

.product-story__image {
    flex: 1 1 42%;
    min-height: 320px;
    border-radius: 0;
    box-shadow: none;
}

.product-story__content {
    flex: 1 1 58%;
    padding: 24px;
}

.meta-list,
.inline-meta,
.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.meta-list li,
.inline-meta li {
    color: var(--affina-text-secondary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.meta-list li::before,
.inline-meta li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--affina-brand);
}

.inline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
}

.inline-meta li {
    margin-bottom: 0;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.filters-row select,
.newsletter-form input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: var(--affina-radius-full);
    border: 1px solid #ddd7e6;
    background: #fff;
    font: inherit;
}

.product-card__head,
.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-insurer {
    font-weight: 700;
    color: #3f62d0;
}

.product-term {
    margin-top: 18px;
}

.product-price,
.purchase-card__price {
    margin: 18px 0 6px;
    font-family: "Familjen Grotesk", sans-serif;
    color: #ff51ff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.product-card__actions {
    margin-top: 20px;
}

.purchase-card {
    padding: 28px;
    position: sticky;
    top: 120px;
}

.timeline {
    gap: 20px;
}

.timeline-step {
    padding: 24px;
    border-radius: var(--affina-radius-lg);
    background: #fff;
    border: 1px solid var(--affina-border);
}

.timeline-step__index {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(169, 115, 250, 0.12);
    color: var(--affina-brand);
    font-weight: 700;
}

.faq-item {
    padding: 18px 20px;
    border-radius: var(--affina-radius-lg);
    background: #fff;
    border: 1px solid var(--affina-border);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
}

.faq-item p {
    margin: 12px 0 0;
    color: var(--affina-text-secondary);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(169, 115, 250, 0.18), rgba(255, 151, 255, 0.12));
}

.leader-panel__photo {
    min-height: 380px;
}

.partner-chip {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 70px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--affina-border);
    color: #6f687a;
    font-weight: 700;
}

.quiz-progress-wrap {
    padding-top: 28px;
}

.quiz-progress-label {
    margin-bottom: 12px;
    font-weight: 700;
}

.quiz-progress {
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(169, 115, 250, 0.14);
}

.quiz-progress span {
    display: block;
    height: 100%;
    background: var(--affina-brand);
    border-radius: inherit;
}

.quiz-stage {
    padding: 48px 0 96px;
}

.quiz-shell {
    max-width: 896px;
}

.quiz-options .quiz-option {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px;
    border-radius: var(--affina-radius-lg);
    border: 1px solid var(--affina-border);
    background: #fff;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.quiz-option.is-selected,
.chip.is-selected {
    border-color: var(--affina-brand);
    background: rgba(169, 115, 250, 0.06);
}

.quiz-option strong {
    font-family: "Familjen Grotesk", sans-serif;
    font-size: 1.2rem;
}

.quiz-option span {
    color: var(--affina-text-secondary);
}

.chip-group {
    margin-top: 24px;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.chip {
    min-height: 44px;
    padding: 0 18px;
    border-radius: var(--affina-radius-full);
    border: 1px solid var(--affina-border);
    background: #fff;
    cursor: pointer;
    font: inherit;
}

.chip.is-selected {
    color: #fff;
    background: var(--affina-brand);
}

.recommended-card {
    padding: 28px;
    margin-top: 20px;
    border-color: var(--affina-brand);
    box-shadow: 0 8px 48px rgba(162, 103, 239, 0.24);
}

.site-footer {
    margin-top: 72px;
    padding: 40px 0 24px;
    color: #fff;
    background: linear-gradient(135deg, #6d24cc 0%, #ff97ff 140%);
}

.footer-grid h3,
.footer-grid h4 {
    margin: 0 0 14px;
    font-family: "Familjen Grotesk", sans-serif;
}

.footer-grid p,
.footer-grid li,
.footer-bottom {
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.newsletter-form button {
    min-width: 110px;
    min-height: 52px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--affina-radius-full);
    background: #fff;
    color: var(--affina-brand-700);
    font-weight: 700;
    cursor: pointer;
}

.footer-brand {
    margin-top: 22px;
    font-family: "Familjen Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--affina-max-width));
    }

    .section,
    .hero,
    .page-hero {
        padding: 36px 0 64px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-story {
        flex-direction: column;
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

.site-main {
    padding-top: 0;
}

.quiz-header + .site-main {
    padding-top: 104px;
}

.affina-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: clamp(12px, 2vw, 24px) clamp(16px, 4vw, 48px);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(243, 241, 247, 0.9);
}

.affina-navbar-brand img {
    height: clamp(28px, 3vw, 34px);
    width: auto;
}

.affina-main-nav {
    gap: clamp(12px, 2vw, 24px);
}

.affina-main-nav .nav-link {
    color: #56515e;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 600;
}

.affina-main-nav .nav-link:hover,
.affina-main-nav .nav-link:focus,
.affina-main-nav .nav-link[aria-expanded="true"] {
    color: #a973fa;
}

.affina-header__actions img {
    width: 24px;
    height: 24px;
}

.affina-header__search {
    border: 0;
    padding: 0;
    background: transparent;
}

.affina-language-link span {
    color: #000;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 400;
}

.product-dropdown {
    position: fixed;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #f3f1f7;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.product-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-col {
    padding: clamp(16px, 2.5vw, 28px) clamp(16px, 2.5vw, 32px);
}

.dropdown-group-label {
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    color: #a973fa;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.dropdown-product-card {
    display: flex;
    align-items: flex-start;
    gap: clamp(8px, 1vw, 12px);
    padding: clamp(8px, 1vw, 10px);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.15s;
}

.dropdown-product-card:hover {
    background: #f9f4ff;
}

.dropdown-product-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(28px, 3vw, 36px);
    height: clamp(28px, 3vw, 36px);
    color: #a973fa;
    flex-shrink: 0;
}

.dropdown-product-title {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    color: #1a1225;
}

.dropdown-product-desc {
    font-size: clamp(11px, 0.9vw, 12px);
    color: #9691a4;
    line-height: 1.4;
    margin-top: 2px;
}

.dropdown-see-all {
    border-top: 1px solid #f3f1f7;
    padding: clamp(12px, 1.5vw, 16px) clamp(16px, 2.5vw, 32px);
    text-align: center;
}

.dropdown-see-all-link {
    color: #a973fa;
    font-size: clamp(13px, 1vw, 14px);
    font-weight: 600;
    text-decoration: none;
}

.dropdown-see-all-link:hover {
    color: #7b2fbe;
}

.footer-bg {
    background: linear-gradient(180deg, #ff6dfa 0%, #9a0e93 100%);
    display: flex;
    padding: clamp(24px, 4vw, 48px);
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 2.5vw, 32px);
}

.footer-newsletter-input {
    min-height: 48px;
}

.footer-newsletter-btn {
    background: #fff;
    color: #ff51ff;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-newsletter-btn:hover {
    background: #580a78;
    color: #fff;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: clamp(12px, 1vw, 13px);
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
}

.footer-social {
    width: clamp(32px, 3vw, 36px);
    height: clamp(32px, 3vw, 36px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 1.2vw, 16px);
    text-decoration: none;
    transition: background 0.2s;
}

.footer-social:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.ls-1 {
    letter-spacing: 0.08em;
}

@media (max-width: 991.98px) {
    .affina-header {
        padding: 12px 16px;
    }

    .product-dropdown {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .footer-bg {
        padding: 24px 16px;
    }

    .article-content {
        font-size: 16px;
        line-height: 1.85;
    }
}

.article-page {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.article-card {
    width: 100%;
    max-width: 100%;
    padding: 0;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(35, 17, 44, 0.08);
}

.article-header {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    margin-bottom: 24px;
    padding: 20px 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.article-title {
    margin: 0;
    font-family: "Familjen Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    width: 100%;
}

.article-content {
    color: #332f39;
    line-height: 1.8;
    font-size: 16px;
    font-family: "Familjen Grotesk", sans-serif;
    padding: 0 15px 15px;
}

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

.article-related {
    width: 100%;
}

.article-related-head {
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-related-title {
    margin: 0;
    font-family: "Familjen Grotesk", sans-serif;
    font-size: clamp(1.75rem, 2.4vw, 2.5rem);
    line-height: 1.15;
    color: #1C1A20;
}
