/* =========================================================
   Maple & May — Home page prototype
   Shares the design system with About Us / New Homes: the
   header and footer are the already-generated canonical
   components (Montserrat headings + Open Sans body).
   ========================================================= */

:root {
    --color-dark:        #455560;  /* Dark Grey */
    --color-dark-2:      #283035;  /* secondary/Black */
    --color-cream:       #E6DFD5;  /* Linen */
    --color-tan:         #AA9678;  /* Wheat */
    --color-soft-wheat:  #C1B199;  /* Soft Wheat */
    --color-grey:        #f3f1f0;  /* News section background */
    --color-white:       #ffffff;
    --color-body:        #283035;
    --color-green:       #11740a;  /* secondary/Green */
    --color-orange:      #e66712;  /* secondary/Orange */
    --color-black:       #000000;

    --container: 1200px;

    --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Type tokens — exact Figma values */
    --type-hero-mobile:  700 40px/44px var(--font-head);
    --type-hero-desktop: 700 72px/80px var(--font-head);   /* Desktop/Extra large per Figma */
    --type-h-mobile:     700 24px/32px var(--font-head);  /* Mobile section title */
    --type-h-desktop:    700 38px/48px var(--font-head);  /* Desktop/Large */
    --type-h-sm:         700 20px/28px var(--font-head);  /* Desktop/Small */
    --type-h-xs:         700 18px/24px var(--font-head);  /* Desktop/XS — news date */
    --type-label:        600 16px/24px var(--font-head);  /* p-default bold */
    --type-p-large:      400 24px/32px var(--font-body);  /* p-large */
    --type-p:            400 16px/24px var(--font-body);  /* p-default */
    --type-p-small:      400 12px/20px var(--font-body);  /* p-small */
}

/* ---------- Icons ---------- */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; width: 24px; height: 24px; }
.icon--arrow-down { width: 44px; height: 44px; }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
    margin: 0;
    font: var(--type-p);
    color: var(--color-body);
    background: var(--color-white);
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-head); }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

a:focus-visible, button:focus-visible {
    outline: 3px solid #f3c87a;
    outline-offset: 2px;
}

.section-title {
    font: var(--type-h-mobile);
    color: var(--color-dark);
    margin: 0 0 40px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    transition: background 0.15s ease;
    text-align: center;
}
.btn:hover { background: var(--color-dark-2); }
.btn--rect {
    border-radius: 5px;
    border: 1px solid var(--color-tan);
    font: var(--type-label);
}
.btn--rect .icon { color: var(--color-tan); }
.btn--block { width: 100%; justify-content: center; border-radius: 2px; border: 1px solid var(--color-tan); font: var(--type-label); }
.btn--block .icon { color: var(--color-tan); }

/* ---------- Header (already-generated, canonical) ---------- */
.site-header { background: var(--color-dark); color: var(--color-white); position: sticky; top: 0; z-index: 100; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 120px; gap: 1rem; }
.site-header__logo img { height: 62px; width: auto; }
.site-header__toggle { display: flex; flex-direction: column; justify-content: space-between; width: 48px; height: 48px; padding: 12px 8px; background: transparent; border: none; }
.site-header__toggle span { display: block; height: 3px; background: var(--color-tan); border-radius: 2px; }
.site-header__nav { display: none; }
.site-header__nav ul { display: flex; align-items: stretch; gap: 10px; }
.site-header__nav a { display: inline-flex; align-items: center; height: 120px; padding: 9px 17px; font: var(--type-label); color: var(--color-white); border-bottom: 3px solid transparent; transition: background 0.15s ease; }
.site-header__nav a:hover { background: rgba(255,255,255,0.06); }
.site-header__nav a.is-active { background: var(--color-tan); color: var(--color-dark-2); border-bottom-color: var(--color-tan); }
.site-header__nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-dark-2); }
.site-header__nav.is-open ul { flex-direction: column; gap: 0; }
.site-header__nav.is-open a { height: auto; padding: 1rem 20px; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: none; }

/* ---------- Hero carousel ---------- */
.hero { position: relative; height: 600px; overflow: hidden; background: var(--color-dark); }
.hero__track { display: flex; height: 100%; transition: transform 0.4s ease; }
@media (prefers-reduced-motion: reduce) { .hero__track { transition: none; } }
.hero__slide { flex: 0 0 100%; height: 100%; position: relative; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.15) 100%);
}
.hero__content { color: var(--color-white); display: flex; flex-direction: column; gap: 24px; max-width: 1200px; margin-top: -4rem; }
.hero__content h1 { font: var(--type-hero-mobile); color: var(--color-white); }
.hero__content p { font: var(--type-p-large); color: var(--color-white); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__dots { position: absolute; left: 0; right: 0; bottom: 24px; display: flex; justify-content: center; gap: 10px; }
.hero__dot { width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; background: rgba(255,255,255,0.5); }
.hero__dot.is-active { background: var(--color-white); }

/* ---------- Register band (shared) ---------- */
.register {
    background: var(--color-white);
    border-top: 7px solid var(--color-dark);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.register__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 8px 32px;
    border-radius: 0 0 16px 16px;
    font: var(--type-h-sm);
    transition: background 0.15s ease;
}
.register__btn:hover { background: var(--color-dark-2); }
.register__btn-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: var(--color-soft-wheat); }

/* ---------- Intro ---------- */
.intro { padding: 72px 0; background: var(--color-white); }
.intro__inner { display: flex; flex-direction: column; gap: 24px; }
.intro__text { display: flex; flex-direction: column; gap: 24px; }
.intro__lead { font: var(--type-h-mobile); color: var(--color-dark); margin: 0; }
.intro__divider { width: 100%; height: 2px; background: var(--color-tan); border: 0; margin: 0; align-self: center; }
.section-divider { width: 70%; max-width: none; height: 2px; background: var(--color-tan); border: 0; margin: 0 auto; }
.intro__copy { display: flex; flex-direction: column; gap: 16px; }
.intro__copy p { font: var(--type-p); color: var(--color-body); margin: 0; }

/* Intro with video — two-column layout (tablet+) */
.intro__video { display: flex; flex-direction: column; gap: 16px; }
.intro__video-title { font: var(--type-desktop-sm); color: var(--color-dark); margin: 0; font-weight: 600; }
.intro__video-text { font: var(--type-p); color: var(--color-body); margin: 0; }

/* Video player (matches dev-video in new-homes) */
.intro .dev-video { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--color-black); background-size: cover; background-position: center; overflow: hidden; }
.intro .dev-video__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.intro .dev-video__play { position: absolute; inset: 0; width: 100%; height: 100%; background: transparent; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.intro .dev-video__play svg { width: 80px; height: 80px; transition: transform 0.15s ease; }
.intro .dev-video__play:hover svg { transform: scale(1.08); }
.intro .dev-video iframe, .intro .dev-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Available Properties ---------- */
.properties { padding: 72px 0; background: var(--color-white); }
.property-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.property-card { background: var(--color-white); border: 1px solid var(--color-cream); overflow: hidden; display: flex; flex-direction: column; }
.property-card__media { position: relative; height: 197px; border-bottom: 2px solid var(--color-tan); overflow: hidden; }
.property-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; top: 16px; right: 0; padding: 8px 16px; color: var(--color-white); font: var(--type-p); border-radius: 0; }
.badge--open   { background: #008001; }
.badge--soon   { background: #008001; }
.badge--today  { background: #c0540d; }
.badge--closed { background: #bf0000; }
.badge--dev    { background: #333333; }
.badge--let    { background: #bf0000; }
.badge--sold   { background: #bf0000; }
.property-card__body { padding: 16px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.property-card__top { display: flex; flex-direction: column; gap: 16px; flex: 1; }
.property-card__footer { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.property-card__body h3 { font: var(--type-h-sm); color: var(--color-dark); margin: 0; }
.property-card__body p { font: var(--type-p); color: var(--color-dark); margin: 0; }
.property-card__address { color: var(--color-body); }
.property-card__meta { border-top: 2px solid var(--color-tan); padding-top: 16px; color: var(--color-body); margin-top: auto; }
.property-card__meta strong { font: var(--type-label); }

/* ---------- News ---------- */
.news { padding: 40px 0; background: var(--color-grey); }
.news-list { display: grid; grid-template-columns: 1fr; gap: 24px; }
.news-card { display: flex; flex-direction: column; background: var(--color-white); overflow: hidden; }
.news-card__media { width: 100%; height: 160px; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.news-card__date { font: var(--type-p); color: var(--color-body); margin: 0; }
.news-card h3 { font: var(--type-h-xs); color: var(--color-dark); margin: 0; }
.news-card h3 a:hover { color: var(--color-dark); text-decoration: underline; }
.news-card__excerpt { font: var(--type-p); color: var(--color-dark); margin: 0; }
.news__more { display: flex; justify-content: center; margin-top: 40px; }

/* ---------- Footer (already-generated, canonical) ---------- */
.site-footer { background: var(--color-dark); color: var(--color-white); padding: 72px 0 0; font: var(--type-p); }
.site-footer h4 { font: var(--type-label); color: var(--color-white); margin: 0 0 16px; }
.site-footer a { color: var(--color-white); }
.site-footer a:hover { text-decoration: underline; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
.site-footer__brand { display: flex; flex-direction: column; gap: 24px; }
.site-footer__brand-lockup { display: flex; align-items: center; gap: 16px; }
.site-footer__brand-lockup img { height: 68px; width: auto; }
.site-footer__strapline { display: flex; flex-direction: column; font: 400 26px/1.15 var(--font-head); color: var(--color-white); border-left: 1px solid rgba(255,255,255,0.35); padding-left: 16px; }
.site-footer__address p { font: var(--type-p); color: var(--color-white); margin: 0; }
.site-footer__links ul { display: flex; flex-direction: column; gap: 16px; }
.site-footer__links a { font: var(--type-p-small); }
.site-footer__social { display: flex; gap: 8px; margin: 0 0 16px; }
.site-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--color-white); color: var(--color-dark); border-radius: 50%; font: var(--type-label); font-size: 14px; }
.site-footer__social svg { width: 28px; height: 28px; }
.site-footer__contact { display: flex; flex-direction: column; gap: 16px; }
.site-footer__contact p { margin: 0; font: var(--type-label); color: var(--color-white); }
.site-footer__copy { padding: 0 0 40px; text-align: center; font: var(--type-p-small); color: var(--color-white); }
.site-footer__copy p { margin: 0; }

/* ---------- Tablet / Desktop ---------- */
@media (min-width: 768px) {
    .site-header__toggle { display: none; }
    .site-header__nav { display: block; }
    .site-header__nav ul { flex-direction: row; }

    .hero { height: 668px; }
    .hero__content h1 { font: var(--type-hero-desktop); }

    .section-title { font: var(--type-h-desktop); }
    .intro__lead { font: var(--type-h-desktop); }
    .intro--with-video .intro__inner { flex-direction: row; align-items: flex-start; gap: 64px; }
    .intro--with-video .intro__text { flex: 2 1 0; min-width: 0; }
    .intro__video { flex: 1 1 0; min-width: 0; }

    .property-grid { grid-template-columns: repeat(3, 1fr); }

    .news-list { grid-template-columns: 1fr 1fr; }
    .news-card { flex-direction: column; height: auto; padding-bottom: 10px; }
    .news-card__media { width: 100%; height: auto; aspect-ratio: 16 / 9; }
    .news-card__body { justify-content: flex-start; }

    .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 37px; }
    .site-footer__links, .site-footer__contact { position: relative; padding-left: 37px; }
    .site-footer__links::before, .site-footer__contact::before {
        content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--color-cream);
    }
}

/* =========================================================
   Register Your Interest â€” drop-down form
   Appended to every prototype's styles.css.
   Scoped to .register[data-register] so it doesn't affect
   other variants of .register (e.g. new-homes "Show more").
   ========================================================= */
.register[data-register] {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    min-height: 60px;
    transition: padding 0.2s ease;
}
.register[data-register].is-open { padding-bottom: 24px; }
.register[data-register] .register__btn { border: 0; cursor: pointer; font-family: inherit; }
.register[data-register].is-open .register__btn-icon svg { transform: rotate(180deg); }
.register[data-register] .register__btn-icon svg { transition: transform 0.2s ease; }

.register__panel[hidden] { display: none; }
.register__panel { width: 100%; display: flex; justify-content: center; padding: 24px 20px 0; }
.register-form { width: 100%; max-width: 482px; display: flex; flex-direction: column; gap: 16px; }
.register-form__field { display: flex; flex-direction: column; gap: 8px; }
.register-form__field label { font: 400 16px/24px var(--font-body); color: var(--color-body); }
.register-form__hint { font: 400 12px/20px var(--font-body); color: var(--color-body); }
.register-form__field input {
    width: 100%; height: 68px; padding: 12px;
    font: 400 16px/24px var(--font-body); color: var(--color-body);
    background: var(--color-white); border: 1px solid #808285; border-radius: 4px;
    outline: none; transition: border-color 0.15s ease;
}
.register-form__field input::placeholder { color: #808285; }
.register-form__field input:focus { border-color: var(--color-dark); box-shadow: 0 0 0 2px rgba(69,85,96,0.18); }
.register-form__submit {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px;
    background: var(--color-dark); color: var(--color-white);
    border: 1px solid var(--color-tan); border-radius: 2px;
    font: 600 16px/24px var(--font-head);
    cursor: pointer; transition: background 0.15s ease;
}
.register-form__submit:hover { background: var(--color-dark-2); }

/* Umbraco-Forms rendering uses the MapleMay theme
   (Views/Partials/Forms/Themes/MapleMay/), which controls the outer
   <form> and per-field wrapper but DELEGATES individual field markup
   to the Umbraco default theme. The default theme emits its own
   .umbraco-forms-* class names plus a generic <label>/<input>/<select>
   etc. — the rules below restyle that output so it visually matches
   the static prototype's .register-form design.
   Scoped to .register-form so nothing leaks to other forms. */

/* Strip the default theme's own wrappers / spacing inside our field wrapper */
.register-form .umbraco-forms-field,
.register-form .umbraco-forms-container,
.register-form .umbraco-forms-fieldset,
.register-form .umbraco-forms-page {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

/* Label */
.register-form label,
.register-form .umbraco-forms-label {
    display: block;
    font: 400 16px/24px var(--font-body);
    color: var(--color-body);
    margin: 0 0 8px;
}
.register-form label .umbraco-forms-indicator,
.register-form .umbraco-forms-indicator {
    color: var(--color-body);
    font: 400 12px/20px var(--font-body);
    margin-left: 4px;
}

/* All single-line inputs + select */
.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="tel"],
.register-form input[type="number"],
.register-form input[type="password"],
.register-form input[type="url"],
.register-form input[type="date"],
.register-form select,
.register-form .text {
    width: 100%;
    height: 68px;
    padding: 12px;
    font: 400 16px/24px var(--font-body);
    color: var(--color-body);
    background: var(--color-white);
    border: 1px solid #808285;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.register-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    resize: vertical;
    font: 400 16px/24px var(--font-body);
    color: var(--color-body);
    background: var(--color-white);
    border: 1px solid #808285;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.register-form input::placeholder,
.register-form textarea::placeholder { color: #808285; }
.register-form input:focus,
.register-form textarea:focus,
.register-form select:focus {
    border-color: var(--color-dark);
    box-shadow: 0 0 0 2px rgba(69,85,96,0.18);
}

/* Tooltip / help text */
.register-form .umbraco-forms-tooltip,
.register-form .help-block,
.register-form small {
    display: block;
    font: 400 12px/20px var(--font-body);
    color: var(--color-body);
    margin-top: 4px;
}

/* Validation messages */
.register-form .field-validation-error,
.register-form .help-block.field-validation-error,
.register-form .validation-summary-errors {
    font: 400 12px/20px var(--font-body);
    color: #b00020;
}

/* Radio / checkbox option layout */
.register-form .checkboxlist label,
.register-form .radiobuttonlist label,
.register-form label.checkbox,
.register-form label.radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    cursor: pointer;
}

/* =========================================================
   Sub-menu nav (About Us dropdown) — mirrors affordable-rent.
   Tenant-login pill is intentionally NOT included here.
   ========================================================= */
.site-header__nav.is-open > ul { flex-direction: column; gap: 0; }
.site-header__nav-toggle { appearance: none; background: transparent; border: 0; cursor: pointer; font-family: var(--font-head); font-weight: 600; color: inherit; }

.site-header__nav ul.site-header__submenu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; background: var(--color-white); }
.site-header__nav ul.site-header__submenu[hidden] { display: none; }
.site-header__nav .site-header__submenu li { display: block; width: 100%; }
.site-header__submenu a { display: flex; align-items: center; justify-content: center; gap: 20px; height: 72px; padding: 9px 17px; background: #696E72; color: var(--color-white); font: var(--type-body-bold); text-decoration: none; border: 0; border-bottom: 3px solid transparent; transition: background 0.15s ease, border-color 0.15s ease; }
.site-header__submenu a > span { flex: 1 0 0; min-width: 0; }
@media (hover: hover) {
    .site-header__submenu a:hover,
    .site-header__submenu a:focus-visible { background: var(--color-tan); border-bottom-color: var(--color-tan); }
}
.site-header__submenu .icon--chevron-right { width: 24px; height: 24px; color: var(--color-white); flex-shrink: 0; }

@media (min-width: 768px) {
    .site-header__nav-item--has-sub { position: relative; }
    .site-header__nav-toggle { display: inline-flex; align-items: center; height: 120px; padding: 9px 17px; font: var(--type-body-bold); color: var(--color-white); background: transparent; border-bottom: 3px solid transparent; transition: background 0.15s ease; }
    .site-header__nav-toggle:hover { background: rgba(255,255,255,0.06); }
    .site-header__nav-item--has-sub[data-submenu-open] .site-header__nav-toggle { background: var(--color-dark-2); border-bottom-color: var(--color-tan); }
    .site-header__submenu { position: absolute; top: 100%; left: 0; width: 266px; z-index: 50; }
}

/* Mobile drawer: 283px wide, dark-grey rows 72px tall */
.site-header__nav.is-open { width: 283px; right: auto; }
.site-header__nav.is-open > ul > li > a,
.site-header__nav.is-open > ul > li > .site-header__nav-toggle { display: flex; align-items: center; justify-content: flex-end; width: 100%; height: 72px; padding: 9px 32px; border: 0; background: var(--color-dark); color: var(--color-white); text-decoration: none; font: var(--type-body-bold); }
.site-header__nav.is-open > ul > .site-header__nav-item--has-sub > .site-header__nav-toggle { justify-content: space-between; }
.site-header__nav.is-open > ul > .site-header__nav-item--has-sub > .site-header__nav-toggle::before { content: "+"; flex: 0 0 auto; font-size: 24px; line-height: 1; color: var(--color-white); font-weight: 400; }
.site-header__nav.is-open .site-header__nav-item--has-sub[data-submenu-open] > .site-header__nav-toggle { background: var(--color-tan); }
.site-header__nav.is-open .site-header__nav-item--has-sub[data-submenu-open] > .site-header__nav-toggle::before { content: "\00d7"; font-size: 24px; }
.site-header__nav.is-open ul.site-header__submenu { background: var(--color-dark); }
.site-header__nav.is-open .site-header__submenu a { background: #313B42; }

/* Phone row (mobile drawer only) */
.site-header__nav-phone { display: none; }
.site-header__nav.is-open .site-header__nav-phone { display: block; }
.site-header__nav.is-open .site-header__nav-phone a { display: flex; align-items: center; justify-content: flex-start; gap: 16px; width: 100%; height: 72px; padding: 9px 32px; background: var(--color-dark); color: var(--color-white); text-decoration: none; font: var(--type-body-bold); }
.site-header__nav.is-open .site-header__nav-phone a::before { content: none; }
.site-header__nav.is-open .site-header__nav-phone .icon--phone { color: var(--color-white); flex-shrink: 0; }
@media (min-width: 768px) { .site-header__nav-phone { display: none !important; } }

/* Hamburger → X */
.site-header__toggle span { transition: transform 0.2s ease, opacity 0.15s ease; transform-origin: center; }
.site-header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Show more — Register-style band at container width, reveals hidden cards */
.show-more {
    background: transparent;
    border-top: 2px solid var(--color-dark);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
}
.show-more__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 0 17px;
    border: 0;
    border-radius: 0 0 10px 10px;
    font: var(--type-desktop-sm);
    font-size: 16px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-family: inherit;
}
.show-more__btn:hover { background: var(--color-dark-2); }
.show-more__btn-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: var(--color-tan-dark); }
.show-more.is-done { display: none; }
