:root {
    --bg-page: #f4f1ea;
    --bg-light: #fbf9f4;
    --bg-white: #ffffff;
    --bg-teal: #4c9e9b;
    --bg-teal-dark: #3e8b88;
    --bg-rose: #f7d6df;
    --bg-yellow: #efc323;
    --text-main: #153132;
    --text-soft: #4c6164;
    --text-inverse: #f7fbfb;
    --line: rgba(21, 49, 50, 0.12);
    --shadow-card: 0 18px 40px rgba(26, 55, 58, 0.12);
    --shadow-soft: 0 10px 24px rgba(26, 55, 58, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1160px;
    --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-display: "Trebuchet MS", "Avenir Next", sans-serif;
}

body.variant-1 {
    --accent: #1e7274;
    --accent-strong: #124d50;
    --accent-soft: #e5f3f0;
    --cta: #f5ca4a;
    --cta-text: #173032;
    --danger: #e34d5b;
}

body.variant-2 {
    --accent: #d84f67;
    --accent-strong: #a2364c;
    --accent-soft: #fde8ee;
    --cta: #f5ca4a;
    --cta-text: #173032;
    --danger: #cf324d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.55;
    overflow-x: hidden;
}

section[id],
.offer-section,
.faq-section,
.final-shell {
    scroll-margin-top: 28px;
}

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

button {
    font: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 56px 0;
}

.notice-bar {
    background: var(--accent-strong);
    color: var(--text-inverse);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 10px 16px;
    text-align: center;
    text-transform: uppercase;
}

.notice-bar-strong {
    background: var(--danger);
}

.hero {
    background: linear-gradient(180deg, #efede7 0%, #ece7df 100%);
    position: relative;
}

.hero-contrast {
    background: linear-gradient(180deg, #f1efea 0%, #e9e4dd 100%);
}

.hero::after {
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.75) 0, rgba(255,255,255,0) 62%);
    content: "";
    height: 420px;
    position: absolute;
    right: -120px;
    top: -80px;
    width: 420px;
}

.hero-shell,
.split-layout,
.final-grid,
.faq-shell {
    display: grid;
    gap: 28px;
}

.hero-shell,
.split-layout {
    align-items: center;
}

.hero-copy,
.hero-visual,
.final-grid > *,
.faq-side,
.faq-list {
    min-width: 0;
}

.eyebrow {
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero-headline,
.section h2,
.offer-card h2,
.cta-card h2 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.04;
}

.hero-headline {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    margin-bottom: 18px;
    max-width: 12ch;
}

.hero-support,
.section-copy,
.offer-lead,
.cta-card p,
.bio-card p {
    color: var(--text-soft);
    font-size: 1.06rem;
}

.hero-cta-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-pill {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(21,49,50,0.08);
    border-radius: 999px;
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 9px 14px;
}

.hero-price {
    color: var(--accent-strong);
    font-size: 0.98rem;
    font-weight: 800;
}

.btn {
    align-items: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    line-height: 1.1;
    min-height: 52px;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-1px);
}

.btn:focus-visible,
.faq-item summary:focus-visible {
    outline: 3px solid var(--cta);
    outline-offset: 4px;
}

.btn-primary {
    background: var(--cta);
    color: var(--cta-text);
    padding: 16px 28px;
}

.btn-soft {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(21, 49, 50, 0.12);
    color: var(--text-main);
    padding: 14px 24px;
}

.btn-lg {
    font-size: 1rem;
}

.btn-xl {
    font-size: 1rem;
    padding: 16px 26px;
    width: 100%;
}

.mockup-collage {
    background: linear-gradient(180deg, #ffffff 0%, #edf7f5 100%);
    border: 2px solid rgba(19, 48, 50, 0.12);
    border-radius: 34px;
    box-shadow: var(--shadow-card);
    min-height: 340px;
    overflow: hidden;
    padding: 26px;
    position: relative;
    transform: rotate(-2deg);
}

.mockup-figure {
    filter: drop-shadow(0 18px 28px rgba(37, 74, 73, 0.18));
    margin: 0;
}

.mockup-image {
    display: block;
    height: auto;
    width: 100%;
}

.mockup {
    background: #fefefe;
    border: 2px solid rgba(18, 77, 80, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 16px;
    position: absolute;
}

.mockup-screen {
    height: 220px;
    left: 50%;
    top: 32px;
    transform: translateX(-50%);
    width: min(76%, 420px);
}

.mockup-tablet {
    bottom: 46px;
    left: 30px;
    height: 150px;
    width: 160px;
}

.mockup-phone {
    bottom: 30px;
    height: 170px;
    right: 34px;
    width: 110px;
}

.mockup-label {
    color: var(--accent-strong);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.mockup-lines {
    background:
        linear-gradient(var(--accent-soft), var(--accent-soft)) 0 0 / 100% 30px no-repeat,
        linear-gradient(#e8eceb, #e8eceb) 0 46px / 88% 14px no-repeat,
        linear-gradient(#e8eceb, #e8eceb) 0 72px / 95% 14px no-repeat,
        linear-gradient(#e8eceb, #e8eceb) 0 98px / 76% 14px no-repeat,
        linear-gradient(#e8eceb, #e8eceb) 0 124px / 92% 14px no-repeat;
    border-radius: 14px;
    height: calc(100% - 24px);
}

.floating-note {
    background: var(--bg-white);
    border: 1px solid rgba(21, 49, 50, 0.08);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    color: var(--accent-strong);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 10px 14px;
    position: absolute;
    z-index: 3;
}

.note-a {
    left: 24px;
    top: 18px;
}

.note-b {
    bottom: 16px;
    right: 22px;
}

.section-yellow {
    background: var(--bg-yellow);
    position: relative;
}

.section-rose {
    background: var(--bg-rose);
    position: relative;
}

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

.section-teal {
    background: var(--bg-teal);
    color: var(--text-inverse);
    position: relative;
}

.section-yellow::before,
.section-rose::before,
.section-rose::after,
.section-teal::before {
    content: "";
    pointer-events: none;
    position: absolute;
}

.section-yellow::before {
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0, rgba(255,255,255,0) 64%);
    height: 240px;
    left: -90px;
    top: 20px;
    width: 240px;
}

.section-rose::before,
.section-rose::after {
    background:
        radial-gradient(circle at 30% 30%, rgba(76,158,155,0.26) 0 18%, transparent 19%),
        radial-gradient(circle at 68% 62%, rgba(76,158,155,0.16) 0 16%, transparent 17%);
    height: 180px;
    width: 180px;
}

.section-rose::before {
    left: -40px;
    top: 40px;
}

.section-rose::after {
    bottom: 40px;
    right: -60px;
}

.section-teal::before {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.08) 25%, transparent 25%) -16px 0 / 32px 32px,
        linear-gradient(225deg, rgba(255,255,255,0.08) 25%, transparent 25%) -16px 0 / 32px 32px;
    inset: 0;
    opacity: 0.34;
}

.section-title,
.section h2 {
    font-size: clamp(1.95rem, 3.4vw, 3.2rem);
    margin-bottom: 18px;
}

.section-title-light,
.section-copy-light,
.check-list-light li {
    color: var(--text-inverse);
}

.section-copy {
    margin-bottom: 20px;
}

.micro-grid {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.micro-card,
.outline-card,
.bio-card,
.cta-card,
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.micro-card {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    padding: 18px 18px;
    position: relative;
}

.section-yellow .micro-card,
.section-rose .micro-card {
    background: rgba(255,255,255,0.78);
}

.section-yellow .micro-card::after,
.section-rose .micro-card::after {
    background: linear-gradient(180deg, var(--danger), rgba(255,255,255,0));
    border-radius: 999px;
    content: "";
    height: 56%;
    left: 10px;
    position: absolute;
    top: 22%;
    width: 4px;
}

.micro-icon {
    color: var(--danger);
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 2px;
}

.person-panel {
    align-items: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.44) 0%, rgba(255,255,255,0.16) 100%);
    border: 1px solid rgba(21, 49, 50, 0.12);
    border-radius: 34px;
    display: grid;
    justify-items: center;
    min-height: 330px;
    padding: 24px;
    position: relative;
    z-index: 1;
}

.person-panel-hot {
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.24) 100%);
}

.person-panel-has-image {
    overflow: hidden;
    padding: 0;
}

.person-panel-image {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.person-figure {
    align-items: center;
    display: grid;
    justify-items: center;
}

.person-head {
    background: #e5b18a;
    border-radius: 50%;
    height: 68px;
    width: 68px;
}

.person-body {
    background: linear-gradient(180deg, #6e8f93 0%, #446a6d 100%);
    border-radius: 28px 28px 80px 80px;
    height: 170px;
    margin-top: 10px;
    width: 180px;
}

.emotion-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.emotion-chip {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    color: var(--accent-strong);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 9px 14px;
}

.check-list {
    display: grid;
    gap: 12px;
    list-style: none;
}

.check-list li {
    color: var(--text-main);
    padding-left: 26px;
    position: relative;
}

.check-list li::before {
    color: var(--accent);
    content: "✓";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
}

.center-intro {
    margin: 0 auto 28px;
    max-width: 760px;
    text-align: center;
}

.outline-grid,
.testimonials-grid,
.bonus-grid {
    display: grid;
    gap: 18px;
}

.outline-card {
    padding: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fafefe 100%);
}

.bonus-banner {
    background: var(--bg-teal);
    border-radius: 999px;
    color: var(--text-inverse);
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    margin: 24px 0 22px;
    padding: 14px 24px;
}

.bonus-banner-contrast {
    background: var(--accent);
}

.bonus-card {
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bonus-visual {
    background: linear-gradient(135deg, #d7efed 0%, #8ac3bf 100%);
    min-height: 160px;
    overflow: hidden;
    position: relative;
}

.bonus-image {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bonus-copy-block {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 20px;
}

.bonus-kicker,
.offer-topline {
    color: var(--accent-strong);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bonus-card h3 {
    font-size: 1.08rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.bonus-card p {
    color: var(--text-soft);
}

.bonus-meta {
    color: var(--danger);
    font-weight: 800;
    margin-top: auto;
    padding-top: 12px;
}

.offer-section {
    position: relative;
}

.offer-shell {
    display: flex;
    justify-content: center;
}

.offer-card {
    background: var(--bg-white);
    border: 1px solid rgba(21, 49, 50, 0.1);
    border-radius: 34px;
    box-shadow: var(--shadow-card);
    max-width: 620px;
    padding: 28px;
    position: relative;
    text-align: center;
    width: 100%;
}

.offer-card::before {
    background: linear-gradient(90deg, var(--accent), var(--cta));
    border-radius: 999px;
    content: "";
    height: 8px;
    left: 28px;
    position: absolute;
    right: 28px;
    top: 18px;
}

.offer-product-shell {
    margin: 24px auto 20px;
}

.offer-card .mockup-collage {
    min-height: 280px;
    transform: rotate(0deg);
}

.offer-card .mockup-screen {
    height: 180px;
}

.offer-checks {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 18px 0;
    text-align: left;
}

.offer-seal {
    background: var(--accent-soft);
    border-radius: 999px;
    color: var(--accent-strong);
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-top: 12px;
    padding: 10px 14px;
}

.offer-checks li {
    padding-left: 26px;
    position: relative;
}

.offer-checks li::before {
    color: #0da46f;
    content: "✓";
    font-weight: 900;
    left: 0;
    position: absolute;
}

.offer-benefit-line {
    color: var(--accent-strong);
    font-weight: 700;
    margin-top: 6px;
}

.offer-pricing {
    margin: 18px 0;
}

.offer-old-price {
    color: var(--text-soft);
    font-size: 0.95rem;
    text-decoration: line-through;
}

.offer-now {
    color: var(--danger);
    font-size: 2.35rem;
    font-weight: 900;
    margin-top: 6px;
}

.offer-stack-value,
.offer-guarantee,
.offer-footnote,
.testimonial-author,
.cta-footnote {
    color: var(--text-soft);
}

.offer-guarantee {
    margin-top: 14px;
}

.cta-support {
    color: var(--accent-strong);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 12px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.trust-pill {
    background: #f2f6f5;
    border-radius: 999px;
    color: var(--accent-strong);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 10px 12px;
}

.testimonials-grid {
    grid-template-columns: 1fr;
}

.testimonial-card {
    padding: 22px;
    position: relative;
}

.testimonial-quote {
    font-size: 1.02rem;
    margin-bottom: 12px;
}

.testimonial-stars {
    color: #f0b92f;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
}

.faq-section {
    position: relative;
}

.faq-shell {
    align-items: start;
}

.days-badge {
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px dashed rgba(255,255,255,0.5);
    border-radius: 50%;
    color: var(--cta);
    display: inline-flex;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    height: 110px;
    justify-content: center;
    margin-bottom: 20px;
    width: 110px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    padding: 18px;
}

.faq-item summary {
    align-items: center;
    color: var(--text-inverse);
    cursor: pointer;
    display: flex;
    font-weight: 800;
    gap: 14px;
    justify-content: space-between;
    list-style: none;
    min-height: 48px;
}

.faq-item p {
    color: rgba(247, 251, 251, 0.88);
    margin-top: 12px;
}

.faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.mobile-sticky-cta {
    display: none;
}

.final-grid {
    align-items: stretch;
}

.bio-card,
.cta-card {
    padding: 24px;
}

.cta-card {
    background: linear-gradient(180deg, #fffdfa 0%, #fff3cb 100%);
    border: 2px solid rgba(245,202,74,0.42);
}

.cta-card-contrast {
    background: linear-gradient(180deg, #fff9fa 0%, #ffd6df 100%);
    border: 2px solid rgba(216,79,103,0.24);
}

.footer {
    background: #173032;
    color: rgba(255,255,255,0.76);
    padding: 28px 0 34px;
}

.footer-shell {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

@media (min-width: 760px) {
    .hero-shell,
    .split-layout,
    .final-grid {
        grid-template-columns: 1.02fr 0.98fr;
    }

    .split-layout-reverse {
        grid-template-columns: 0.96fr 1.04fr;
    }

    .faq-shell {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .outline-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bonus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-yellow .split-layout-hero,
    .hero-shell {
        grid-template-columns: 1.08fr 0.92fr;
    }
}

@media (min-width: 1100px) {
    .hero-shell {
        gap: 44px;
    }

    .bonus-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .testimonial-card {
        min-height: 170px;
    }

    .hero-support,
    .section-copy,
    .offer-lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 759px) {
    body {
        padding-bottom: 96px;
    }

    .section {
        padding: 36px 0;
    }

    .hero-headline,
    .section h2,
    .offer-card h2,
    .cta-card h2 {
        text-align: center;
    }

    .hero-copy,
    .section-intro,
    .faq-side,
    .bio-card,
    .cta-card {
        text-align: center;
    }

    .container {
        padding: 0 14px;
    }

    .hero-shell,
    .split-layout,
    .final-grid,
    .faq-shell,
    .outline-grid,
    .bonus-grid,
    .testimonials-grid {
        gap: 18px;
    }

    .hero-headline {
        font-size: clamp(2.1rem, 10vw, 3rem);
        max-width: none;
    }

    .hero-support,
    .section-copy,
    .offer-lead,
    .cta-card p,
    .bio-card p {
        font-size: 0.98rem;
    }

    .hero-cta-row {
        align-items: stretch;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .hero-pill-row {
        justify-content: center;
    }

    .hero-pill {
        font-size: 0.72rem;
        padding: 8px 12px;
    }

    .btn-lg,
    .btn-soft {
        width: 100%;
    }

    .btn-lg,
    .btn-soft,
    .mobile-sticky-button {
        min-height: 54px;
    }

    .offer-card {
        border-radius: 26px;
        padding: 22px 16px;
    }

    .offer-card .mockup-collage {
        min-height: 240px;
        padding: 18px;
    }

    .offer-now {
        font-size: 2rem;
    }

    .offer-checks,
    .check-list {
        gap: 10px;
    }

    .offer-checks li,
    .check-list li {
        font-size: 0.95rem;
    }

    .mockup-screen {
        width: 78%;
    }

    .mockup-tablet {
        bottom: 22px;
        height: 124px;
        left: 18px;
        width: 128px;
    }

    .mockup-phone {
        bottom: 20px;
        height: 140px;
        right: 18px;
        width: 90px;
    }

    .mockup-figure {
        margin: 0 auto;
        max-width: 94%;
    }

    .person-panel {
        min-height: 252px;
        padding: 18px 14px;
    }

    .person-panel-has-image {
        min-height: 0;
        padding: 0;
    }

    .person-head {
        height: 56px;
        width: 56px;
    }

    .person-body {
        border-radius: 24px 24px 62px 62px;
        height: 124px;
        width: 132px;
    }

    .emotion-cloud {
        gap: 8px;
        margin-top: 14px;
    }

    .emotion-chip {
        font-size: 0.76rem;
        padding: 8px 11px;
    }

    .micro-card,
    .outline-card,
    .testimonial-card,
    .bio-card,
    .cta-card {
        border-radius: 18px;
        padding: 18px 16px;
    }

    .bonus-card {
        border-radius: 22px;
    }

    .bonus-visual {
        min-height: 190px;
    }

    .bonus-copy-block {
        padding: 16px 16px 18px;
    }

    .bonus-card h3 {
        font-size: 1rem;
    }

    .offer-section {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .offer-section-repeat {
        padding-top: 20px;
    }

    .trust-row {
        gap: 8px;
    }

    .trust-pill {
        font-size: 0.72rem;
        padding: 8px 10px;
    }

    .days-badge {
        font-size: 2.3rem;
        height: 88px;
        width: 88px;
    }

    .faq-item {
        padding: 16px 14px;
    }

    .faq-item summary {
        font-size: 0.95rem;
    }

    .offer-card::before {
        left: 18px;
        right: 18px;
    }

    .section-rose::before,
    .section-rose::after {
        opacity: 0.55;
        transform: scale(0.75);
    }

    .mobile-sticky-cta {
        align-items: center;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(21, 49, 50, 0.1);
        bottom: 0;
        box-shadow: 0 -12px 28px rgba(18, 34, 36, 0.14);
        display: grid;
        gap: 10px;
        grid-template-columns: minmax(0, 1fr) auto;
        left: 0;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        position: fixed;
        right: 0;
        z-index: 30;
    }

    .mobile-sticky-meta {
        min-width: 0;
    }

    .mobile-sticky-label {
        color: var(--accent-strong);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .mobile-sticky-price {
        color: var(--text-main);
        font-size: 1rem;
        font-weight: 900;
    }

    .mobile-sticky-button {
        min-width: 148px;
        padding: 14px 18px;
        white-space: nowrap;
    }
}
