/* =========================
   LOCAL MONTSERRAT FONT
========================= */
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat-regular.woff2') format('woff2'),
         url('/fonts/montserrat-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat-bold.woff2') format('woff2'),
         url('/fonts/montserrat-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat-extrabold.woff2') format('woff2'),
         url('/fonts/montserrat-extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* =========================
   ROOT
========================= */
:root {
    --bg: #0f0f0f;
    --bg-elev: #141414;
    --bg-card: #171717;
    --bg-card-hover: #1d1d1d;
    --bg-soft: #121212;
    --text: #f5f5f5;
    --text-soft: #d0d0d0;
    --text-muted: #9c9c9c;
    --border: #262626;
    --border-strong: #3a3a3a;
    --white: #ffffff;
    --black: #111111;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.18);
    --shadow-strong: 0 18px 40px rgba(0, 0, 0, 0.28);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --container: 1120px;
}

/* =========================
   RESET / BASE
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.2px;
    background: var(--bg);
    color: var(--text);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

iframe {
    display: block;
    width: 100%;
    border: 0;
}

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

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

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--white);
    line-height: 1.18;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: 0.2px;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(1.45rem, 2.5vw, 2.05rem);
    font-weight: 800;
    letter-spacing: 0.1px;
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.08rem, 1.5vw, 1.22rem);
    font-weight: 700;
}

p {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--text-soft);
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 22px;
    color: var(--text-soft);
}

li + li {
    margin-top: 8px;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #202020;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 74px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.25s ease;
}

.logo a:hover {
    opacity: 0.92;
}

.logo img {
    display: block;
    height: 54px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.25px;
    color: #bdbdbd;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--white);
}

.main-nav a.active,
.main-nav a[aria-current="page"] {
    color: var(--white);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
    width: 100%;
}

/* =========================
   MOBILE HEADER ELEMENTS
========================= */
.mobile-quick-nav,
.menu-toggle,
.mobile-menu,
.menu-close {
    display: none;
}

/* QUICK NAV */
.mobile-quick-nav a {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--white);
    transition: opacity 0.25s ease;
}

.mobile-quick-nav a:hover,
.mobile-quick-nav a:focus-visible {
    opacity: 0.88;
}

.mobile-quick-nav a.active,
.mobile-quick-nav a[aria-current="page"] {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* BURGER BUTTON */
.menu-toggle {
    appearance: none;
    -webkit-appearance: none;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 63px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #161616;
    cursor: pointer;
    transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    border-color: var(--border-strong);
    background: #1b1b1b;
    transform: translateY(-1px);
}

.menu-toggle span {
    display: block;
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* MOBILE DROPDOWN MENU */
.mobile-menu {
    display: none;
    padding: 0 20px 16px;
    border-top: 1px solid #202020;
    background: rgba(15, 15, 15, 0.98);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 14px;
    margin-bottom: 8px;
    font-size: 0.96rem;
    font-weight: 700;
    color: #d0d0d0;
    text-align: center;
    border: 1px solid #242424;
    border-radius: 12px;
    background: #151515;
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.mobile-menu a:last-of-type {
    margin-bottom: 0;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu a.active,
.mobile-menu a[aria-current="page"] {
    color: var(--white);
    border-color: var(--border-strong);
    background: #1b1b1b;
}

/* CLOSE BUTTON */
.menu-close {
    display: none;
}

/* =========================
   MAIN
========================= */
.site-main {
    padding-top: 56px;
    padding-bottom: 80px;
}

.page-section {
    padding: 0;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    padding-top: 46px;
    padding-bottom: 14px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.07), transparent 38%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 30%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 820px;
    padding: 34px 34px 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 100%);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.hero-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent 45%);
    pointer-events: none;
}

.hero h1 {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.hero p {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-bottom: 0;
    font-size: 1.08rem;
    color: #d5d5d5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

/* =========================
   GENERIC SECTIONS
========================= */
.section-spacing {
    margin-top: 64px;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 22px;
}

.meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-soft);
    font-size: 0.92rem;
    color: #b7b7b7;
}

.muted {
    color: var(--text-muted);
}

/* =========================
   CARD GRID
========================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #171717 0%, #151515 100%);
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.card h2,
.card h3 {
    margin-bottom: 10px;
}

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

.card-grid a.card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card-grid a.card h2,
.card-grid a.card h3 {
    transition: color 0.25s ease, transform 0.25s ease;
}

.card-grid a.card:hover h2,
.card-grid a.card:hover h3 {
    color: var(--white);
}

.card .button,
.card .button-secondary {
    display: inline-flex;
    margin-right: 10px;
    margin-bottom: 10px;
}

.card .button:last-child,
.card .button-secondary:last-child {
    margin-right: 0;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.button-group .button,
.button-group .button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.92rem;
}

/* =========================
   DRIVES PAGE CARD UPGRADE
========================= */
.drives-page .card-grid {
    gap: 28px;
}

.drives-page .card-grid a.card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%),
        #171717;
}

.drives-page .card-grid a.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.045), transparent 45%);
    opacity: 0.7;
    pointer-events: none;
}

.drives-page .card-grid a.card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.15));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.drives-page .card-grid a.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.14);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%),
        #1b1b1b;
    box-shadow: var(--shadow-strong);
}

.drives-page .card-grid a.card:hover::after {
    transform: scaleX(1);
}

.drives-page .card-grid a.card:hover h2 {
    transform: translateY(-1px);
}

.drives-page .card-grid a.card p {
    color: #c9c9c9;
}

/* =========================
   VIDEO
========================= */
.video-embed {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    background: #111111;
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.video-embed::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video-embed::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 30%);
    pointer-events: none;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* =========================
   BUTTONS
========================= */
.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    letter-spacing: 0.15px;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.button {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    opacity: 0.96;
}

.button-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    transform: translateY(-2px);
    border-color: #5e5e5e;
    background: #1a1a1a;
}

/* =========================
   TABLES
========================= */
table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-elev);
    box-shadow: var(--shadow-soft);
}

th,
td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #2b2b2b;
}

tr:last-child th,
tr:last-child td {
    border-bottom: 0;
}

th {
    width: 34%;
    color: var(--white);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.02);
}

td {
    color: var(--text-soft);
}

/* =========================
   FORMS
========================= */
input,
textarea,
select,
button {
    font: inherit;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #333333;
    border-radius: var(--radius-sm);
    background: #161616;
    color: var(--text);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

/* =========================
   RELATED LINKS
========================= */
.related-links {
    margin-top: 28px;
    padding: 20px 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-elev);
}

.related-links p {
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 700;
}

.related-links ul {
    margin: 0;
    padding-left: 20px;
}

.related-links a {
    color: #dddddd;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.related-links a:hover {
    color: var(--white);
}

/* =========================
   DRIVE PAGE SPECIAL STYLING
========================= */
.a0-bucharest-drive-page .hero-inner,
.dn7-romania-drive-page .hero-inner,
.constanta-city-drive-page .hero-inner {
    max-width: 900px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%),
        linear-gradient(90deg, rgba(255,255,255,0.02), transparent 35%);
}

.a0-bucharest-drive-page + .section-spacing .meta span,
.dn7-romania-drive-page + .section-spacing .meta span,
.constanta-city-drive-page + .section-spacing .meta span {
    background: #141414;
    border-color: #2d2d2d;
    color: #c2c2c2;
}

.a0-bucharest-drive-page ~ .section-spacing h2,
.dn7-romania-drive-page ~ .section-spacing h2,
.constanta-city-drive-page ~ .section-spacing h2 {
    position: relative;
    padding-left: 16px;
}

.a0-bucharest-drive-page ~ .section-spacing h2::before,
.dn7-romania-drive-page ~ .section-spacing h2::before,
.constanta-city-drive-page ~ .section-spacing h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.18em;
    width: 4px;
    height: 1.1em;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
}

.a0-bucharest-drive-page ~ .section-spacing table,
.dn7-romania-drive-page ~ .section-spacing table,
.constanta-city-drive-page ~ .section-spacing table {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%),
        #151515;
}

.a0-bucharest-drive-page ~ .section-spacing .card-grid .card,
.dn7-romania-drive-page ~ .section-spacing .card-grid .card,
.constanta-city-drive-page ~ .section-spacing .card-grid .card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%),
        #171717;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    padding-top: 48px;
    padding-bottom: 30px;
    background: #111111;
    border-top: 1px solid #222222;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-title,
.footer-heading {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-text,
.footer-links-block p,
.footer-note p {
    margin: 0 0 10px;
    color: #bdbdbd;
}

.footer-links-block a,
.site-footer a {
    color: #d5d5d5;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-links-block a:hover,
.site-footer a:hover {
    color: var(--white);
}

.footer-social {
    min-width: 0;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    background: #181818;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: #202020;
    border-color: #4b4b4b;
}

.social-link svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: #f2f2f2;
}

.footer-note {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid #222222;
}

.affiliate-note {
    font-size: 0.95rem;
    color: #969696;
}

/* =========================
   PAGE SPECIFIC
========================= */
.contact-page .card a[href^="mailto:"] {
    font-weight: 700;
    color: var(--white);
    word-break: break-word;
}

.gear-page .card-grid {
    align-items: stretch;
}

.gear-page .card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.gear-page .card .button-secondary,
.gear-page .card .button {
    margin-top: auto;
    align-self: flex-start;
}

.gear-page .card h3 {
    min-height: 58px;
}

.gear-page .card p {
    flex-grow: 1;
}


.error-page .hero-inner {
    max-width: 760px;
}

.error-page h1 {
    font-size: 2.6rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .site-main {
        padding-top: 48px;
        padding-bottom: 68px;
    }

    .section-spacing {
        margin-top: 54px;
    }

    th {
        width: 38%;
    }
}

@media (max-width: 760px) {

       html, body {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
  }
    .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 12px;
        min-height: 40px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .logo {
        display: block;
    }

    .logo img {
        height: 34px;
        margin-top: 6px;
    }

    .main-nav {
        display: none;
    }

    .mobile-quick-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        min-width: 0;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .menu-close {
        display: block;
        width: 100%;
        margin-top: 14px;
        padding: 12px 14px;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--white);
        background: #1a1a1a;
        border: 1px solid var(--border-strong);
        border-radius: 12px;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    }

    .menu-close:hover,
    .menu-close:focus-visible {
        background: #222222;
        border-color: #5a5a5a;
        transform: translateY(-1px);
    }

    .site-main {
        padding-top: 38px;
        padding-bottom: 56px;
    }

    .hero {
        padding-top: 24px;
        padding-bottom: 8px;
    }

    .hero-inner {
        padding: 24px 20px 22px;
        border-radius: 20px;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-spacing {
        margin-top: 48px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

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

    .social-icons {
        gap: 10px;
    }

    .meta span {
        min-height: 36px;
        padding: 8px 12px;
        font-size: 0.88rem;
    }

    table,
    tbody,
    tr,
    th,
    td {
        display: block;
        width: 100%;
    }

    tr {
        border-bottom: 1px solid #2b2b2b;
    }

    tr:last-child {
        border-bottom: 0;
    }

    th,
    td {
        border-bottom: 0;
        padding: 12px 14px;
    }

    th {
        padding-bottom: 4px;
        background: transparent;
    }

    td {
        padding-top: 0;
    }

    .a0-bucharest-drive-page ~ .section-spacing h2,
    .dn7-romania-drive-page ~ .section-spacing h2,
    .constanta-city-drive-page ~ .section-spacing h2 {
        padding-left: 12px;
    }

    .a0-bucharest-drive-page ~ .section-spacing h2::before,
    .dn7-romania-drive-page ~ .section-spacing h2::before,
    .constanta-city-drive-page ~ .section-spacing h2::before {
        width: 3px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .logo img {
        height: 30px;
    }

    .mobile-quick-nav {
        gap: 10px;
    }

    .mobile-quick-nav a {
        font-size: 0.82rem;
    }

    .menu-toggle {
        width: 63px;
        height: 36px;
    }

    .mobile-menu {
        padding-left: 8px;
        padding-right: 8px;
    }

    .card,
    .related-links {
        padding: 18px;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group .button,
    .button-group .button-secondary,
    .hero-actions .button,
    .hero-actions .button-secondary {
        width: 100%;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-inner {
        padding: 20px 16px 18px;
        border-radius: 18px;
    }

    .video-embed {
        border-radius: 18px;
    }
}
