/* ============================================================
   «Мама в центре» — V3 Polish (2026-04-08)
   Inspired by Notion (whisper borders, warm neutrals, multi-shadow)
   + Linear (compressed headlines, -letter-spacing) + restraint.
   ============================================================ */

/* === Tokens === */
:root {
    /* Поверхности */
    --bg: #FBFAF8;           /* тёплый почти-белый (без синевы) */
    --bg-alt: #F4F6F9;       /* очень бледная прохлада для альтернативных секций */
    --surface: #FFFFFF;

    /* Акценты (один акцент, тихий) */
    --accent: #6E95B9;       /* приглушённый голубой, деликатный */
    --accent-deep: #567C9F;  /* hover / emphasis */
    --accent-tint: rgba(110, 149, 185, 0.10);
    --accent-tint-strong: rgba(110, 149, 185, 0.16);

    /* Warm-neutral текст (чуть тёплый, без синевы) */
    --text: #1F2328;         /* near-black, тёплый */
    --text-2: #57606A;       /* secondary */
    --text-3: #8B949E;       /* muted */

    /* Whisper borders */
    --border: rgba(27, 31, 36, 0.08);    /* Notion whisper */
    --border-strong: rgba(27, 31, 36, 0.14);

    /* Шрифты */
    --font-heading: 'Montserrat', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Радиусы */
    --r-sm: 8px;
    --r: 12px;
    --r-md: 14px;
    --r-lg: 18px;
    --r-pill: 999px;

    /* Тени — многослойные, тихие */
    --shadow-1:
        0 1px 2px rgba(17, 24, 39, 0.04),
        0 2px 6px rgba(17, 24, 39, 0.04),
        0 8px 16px rgba(17, 24, 39, 0.04);
    --shadow-2:
        0 1px 3px rgba(17, 24, 39, 0.05),
        0 4px 12px rgba(17, 24, 39, 0.05),
        0 18px 36px rgba(17, 24, 39, 0.04);
    --shadow-cta:
        0 1px 2px rgba(86, 124, 159, 0.12),
        0 6px 16px rgba(86, 124, 159, 0.18);

    --transition: 220ms cubic-bezier(0.2, 0, 0, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-feature-settings: "kern", "liga", "calt";
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

a {
    color: var(--accent-deep);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--accent); }

/* === Container === */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 28px;
}

/* === Navigation === */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(251, 250, 248, 0.85);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: 0 1px 0 var(--border); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.nav-logo:hover { color: var(--accent-deep); }

.nav-links { display: flex; gap: 36px; }

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-2);
}

.nav-links a:hover { color: var(--text); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Typography primitives === */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 14px;
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('../img/hero-mama.jpg') right center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(251, 250, 248, 1.00) 0%,
        rgba(251, 250, 248, 0.96) 32%,
        rgba(251, 250, 248, 0.70) 50%,
        rgba(251, 250, 248, 0.20) 72%,
        rgba(251, 250, 248, 0.00) 100%
    );
}

.hero-content {
    position: relative;
    padding: 150px 0 90px;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-deep);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 7px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.4rem, 5.6vw, 3.75rem);
    color: var(--text);
    margin-bottom: 22px;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text-2);
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.55;
}

.hero-dates {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--accent-deep);
    background: var(--accent-tint);
    padding: 7px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-price-strip {
    font-size: 0.88rem;
    color: var(--text-3);
    margin-top: 20px;
}

/* === CTA Button === */
.cta-button {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--surface);
    background: var(--accent-deep);
    padding: 13px 28px;
    border-radius: var(--r);
    transition: all var(--transition);
    box-shadow: var(--shadow-cta);
    border: 1px solid transparent;
    cursor: pointer;
    letter-spacing: -0.005em;
}

.cta-button:hover {
    background: #456A8E;
    color: var(--surface);
    transform: translateY(-1px);
    box-shadow:
        0 2px 4px rgba(86, 124, 159, 0.16),
        0 10px 24px rgba(86, 124, 159, 0.24);
}

.cta-button-large {
    font-size: 1rem;
    padding: 15px 34px;
    border-radius: var(--r-md);
}

/* === Sections === */
.section {
    padding: 104px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-head {
    margin-bottom: 56px;
}

.section-head.center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.9rem, 3.6vw, 2.75rem);
    color: var(--text);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section-lede {
    color: var(--text-2);
    font-size: 1.04rem;
    line-height: 1.6;
    max-width: 640px;
}

.section-head.center .section-lede {
    margin-left: auto;
    margin-right: auto;
}

/* === Letter section === */
.letter {
    background: var(--bg-alt);
}

.letter-card {
    max-width: 780px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 60px 64px 52px;
    box-shadow: var(--shadow-1);
}

.letter-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: var(--text);
    line-height: 1.75;
    text-align: center;
    border: none;
    padding: 0;
    margin: 0;
}

/* === Audience Cards (6) === */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.audience-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 30px 28px;
    transition: all var(--transition);
}

.audience-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-1);
}

.card-icon {
    color: var(--accent-deep);
    margin-bottom: 18px;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-tint);
    border-radius: 50%;
}

.audience-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.08rem;
    margin-bottom: 8px;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.audience-card p {
    color: var(--text-2);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* === Program Timeline === */
.program-timeline {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 820px;
    margin: 0 auto;
}

.program-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 34px 38px;
    transition: all var(--transition);
    position: relative;
}

.program-block:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-1);
}

.program-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-deep);
    background: var(--accent-tint);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.program-block h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--text);
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.program-block p {
    color: var(--text-2);
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.program-result {
    background: var(--bg-alt);
    border-left: 2px solid var(--accent);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 14px 18px;
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.6;
}

.program-result strong { color: var(--accent-deep); }

/* === Takeaways === */
.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.takeaway-item {
    display: flex;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 22px 24px;
    transition: all var(--transition);
}

.takeaway-item:hover {
    border-color: var(--border-strong);
}

.takeaway-icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: #B8941F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.takeaway-text strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text);
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}

.takeaway-text span {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.55;
}

/* === Includes List === */
.includes-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.includes-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px 22px;
    transition: all var(--transition);
}

.includes-item:hover {
    border-color: var(--border-strong);
}

.includes-check {
    flex-shrink: 0;
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 154, 79, 0.10);
    color: #1A7F37;
    font-weight: 700;
    border-radius: 50%;
    font-size: 0.88rem;
}

.includes-text { flex: 1; }

.includes-text strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 2px;
    letter-spacing: -0.005em;
}

.includes-old-price {
    font-size: 0.82rem;
    color: var(--text-3);
    text-decoration: line-through;
}

.includes-badge {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 600;
    color: #1A7F37;
    background: rgba(34, 154, 79, 0.10);
    padding: 4px 12px;
    border-radius: var(--r-pill);
    letter-spacing: 0.02em;
    border: 1px solid rgba(34, 154, 79, 0.18);
}

.includes-total {
    max-width: 780px;
    margin: 22px auto 0;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-2);
}

.includes-total strong {
    color: var(--text);
    font-weight: 600;
}

/* === Bonuses === */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 32px 32px 28px;
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}

.bonus-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-1);
}

.bonus-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--accent-tint);
    color: var(--accent-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.bonus-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.08rem;
    margin: 0 0 10px 0;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.bonus-card p {
    color: var(--text-2);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* === Reviews === */
.reviews {
    background: var(--bg-alt);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 10px;
    transition: all var(--transition);
    overflow: hidden;
}

.review-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-1);
}

.review-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.reviews-note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--text-3);
}

/* === Format === */
.format-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}

.format-item {
    display: flex;
    gap: 24px;
    background: var(--surface);
    padding: 22px 28px;
    align-items: flex-start;
}

.format-label {
    flex-shrink: 0;
    width: 150px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--accent-deep);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-top: 3px;
}

.format-text {
    flex: 1;
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* === Pricing === */
.pricing-container { text-align: center; }

.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 52px 44px 46px;
    box-shadow: var(--shadow-2);
    text-align: center;
}

.pricing-old {
    font-size: 0.9rem;
    color: var(--text-3);
    margin-bottom: 14px;
}

.pricing-old s { color: var(--text-3); }

.pricing-new {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3.6rem;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1;
    letter-spacing: -0.035em;
}

.pricing-new span { font-size: 1.5rem; font-weight: 600; }

.pricing-daily {
    font-size: 0.92rem;
    color: var(--text-2);
    margin-bottom: 18px;
}

.pricing-start {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--accent-deep);
    background: var(--accent-tint);
    padding: 6px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-limit {
    display: block;
    font-size: 0.85rem;
    color: var(--text-3);
    margin-bottom: 26px;
}

.pricing-forever {
    display: block;
    margin-top: 18px;
    font-size: 0.8rem;
    color: var(--text-3);
}

/* === Author === */
.author-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.author-photo {
    width: 280px;
    height: 340px;
    border-radius: var(--r-md);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-md);
    display: block;
}

.author-photo-placeholder {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--text-3);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.author-info {
    padding-top: 8px;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.author-role {
    font-size: 0.92rem;
    color: var(--accent-deep);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
}

.author-desc {
    color: var(--text-2);
    font-size: 0.96rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.author-credentials {
    list-style: none;
    margin-bottom: 22px;
    padding: 0;
}

.author-credentials li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.55;
}

.author-credentials li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 10px; height: 1px;
    background: var(--accent-deep);
}

.author-credentials strong {
    color: var(--text);
    font-weight: 600;
}

.author-quote {
    font-style: italic;
    font-size: 0.98rem;
    color: var(--text);
    border-left: 2px solid var(--accent);
    padding: 14px 18px;
    line-height: 1.65;
    background: var(--bg-alt);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.author-quote em {
    color: var(--accent-deep);
    font-weight: 500;
    font-style: italic;
}

/* === Final CTA === */
.section-cta {
    background: var(--bg-alt);
    text-align: center;
    padding: 96px 20px;
    border-top: 1px solid var(--border);
}

.section-cta h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    margin-bottom: 14px;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-cta p {
    color: var(--text-2);
    margin-bottom: 34px;
    font-size: 1rem;
}

/* === Footer === */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 36px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
}

.footer a { color: rgba(255, 255, 255, 0.92); }
.footer a:hover { color: #ffffff; }

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 960px) {
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .takeaways-grid { grid-template-columns: 1fr; }
    .bonuses-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }

    .author-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .author-photo { width: 240px; height: 300px; margin: 0 auto; }
    .letter-card { padding: 44px 36px; }
    .section { padding: 88px 0; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: rgba(251, 250, 248, 0.98);
        backdrop-filter: blur(14px);
        flex-direction: column;
        padding: 20px;
        gap: 18px;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open { display: flex; }
    .burger { display: flex; }

    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero {
        min-height: auto;
        padding-top: 68px;
    }

    .hero-image {
        position: relative;
        height: 62vw;
        max-height: 400px;
        background-position: center;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(251, 250, 248, 0.0) 0%,
            rgba(251, 250, 248, 0.7) 75%,
            rgba(251, 250, 248, 1) 100%
        );
    }

    .hero-content {
        padding: 44px 0 64px;
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle { margin-left: auto; margin-right: auto; }

    .hero-actions { justify-content: center; }

    .section-head { text-align: center; }

    .format-item { flex-direction: column; gap: 6px; }
    .format-label { width: auto; }

    .footer-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .section { padding: 72px 0; }

    .cta-button {
        display: inline-block;
    }

    .includes-item { flex-wrap: wrap; }
    .includes-badge { margin-left: 48px; }

    .pricing-card { padding: 40px 28px 36px; }
    .program-block { padding: 26px 24px; }

    .letter-card { padding: 36px 24px; }

    .bonus-icon { width: 42px; height: 42px; }
}

@media (max-width: 600px) {
    .audience-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 480px) {
    .pricing-new { font-size: 2.8rem; }
    .hero h1 { font-size: 2rem; }
}
