.back-btn,
.practice-btn {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
}

.back-btn {
    color: #ffffff;
}

.back-btn:hover,
.practice-btn:hover {
    color: #ffffff;
}

.hero-img {
    max-width: 100%;
    height: auto;
}

.external-links {
    background: var(--soft-panel);
    overflow-wrap: anywhere;
}

.external-links a {
    color: var(--highlander-blue);
    font-weight: bold;
    text-decoration: none;
}

.external-links a:hover {
    color: var(--highlander-orange);
}

.cta-box {
    text-align: center;
}

.site-nav {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-nav__toggle,
.site-nav__menu-label {
    display: none;
}

.site-nav__inner {
    width: min(100% - 24px, 1400px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.site-nav a {
    flex: 0 0 auto;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    line-height: 1;
    padding: 15px 10px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #ffffff;
    border-bottom-color: var(--highlander-orange);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

@media (max-width: 650px) {
    .sticks-area {
        width: min(420px, calc(100dvw - 96px)) !important;
    }

    .site-nav {
        padding: 0;
    }

    .site-nav__toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .site-nav__menu-label {
        width: min(100% - 24px, 1400px);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 46px;
        color: #ffffff;
        font-weight: 800;
        letter-spacing: 0.02em;
        cursor: pointer;
        user-select: none;
    }

    .site-nav__menu-label::after {
        content: "+";
        color: var(--highlander-orange);
        font-size: 1.4rem;
        line-height: 1;
    }

    .site-nav__toggle:checked + .site-nav__menu-label::after {
        content: "-";
    }

    .site-nav__toggle:focus-visible + .site-nav__menu-label {
        outline: 2px solid var(--highlander-orange);
        outline-offset: -4px;
    }

    .site-nav__inner {
        display: none;
        width: min(100% - 24px, 1400px);
        padding: 0 0 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        overflow-x: visible;
        justify-content: stretch;
    }

    .site-nav__toggle:checked ~ .site-nav__inner {
        display: grid;
    }

    .site-nav a {
        font-size: 0.78rem;
        padding: 11px 9px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.06);
        text-align: center;
        white-space: normal;
        line-height: 1.15;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 651px) and (max-width: 1240px) {
    .site-nav__inner {
        justify-content: flex-start;
        overflow-x: auto;
    }
}
