:root {
    --text: #fff;
    --muted: #cbd5e1;
    --card: rgba(0, 0, 0, .62);
    --card2: rgba(0, 0, 0, .35);
    --line: rgba(255, 255, 255, .12);
    --shadow: 0 18px 60px rgba(0, 0, 0, .45);

    --menuBg: rgba(70, 70, 70, .92);
    --menuBorder: rgba(255, 255, 255, .08);
    --menuHover: rgba(255, 255, 255, .12);
    --menuText: #05c1ff;

    /* theme vars uit admin */
    --bg-mode: image;
    /* image|color */
    --bg-color: #0b1220;
    --bg-image: none;
    /* url("...") */
    --bg-dim: 45;
    /* 0-100 */
    --bg-pattern: granite;
    /* granite|noise|none */
    --bg-pos: 50% 50%;
    /* "x y" */
    --bg-scale: 1;
    /* zoom */

    --layout: boxed;
    --wrap-max: 1000px;
    --wrap-pad: 16px;

    --team-cols: 3;
    --team-cols-md: 2;
    --team-cols-sm: 1;
    --team-card-size: 240px;
    --team-img-size: 210px;
    --team-img-fit: cover;

    --widgetIconSize: 46px;
    --widgetLogoHeight: 42px;
}

/* base */
*,
*::before,
*::after {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: var(--text);
    background: var(--bg-color);
}

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

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

p {
    margin: 0 0 12px
}

h1,
h2,
h3 {
    margin: 0 0 10px
}

small,
.small {
    font-size: 12px;
    color: var(--muted)
}

code {
    background: rgba(0, 0, 0, .25);
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.wrap {
    width: 100%;
    max-width: var(--wrap-max);
    margin: 0 auto;
    padding: var(--wrap-pad)
}

.topspace {
    padding-top: 10px
}

.card,
.content,
.widget {
    overflow-wrap: anywhere;
    word-break: break-word
}

#topStack {
    max-width: 100%
}

/* =========================
   ✅ BACKGROUND (admin zoom/pos/dim/pattern + FIT + SIZE)
   Werkt met admin/theme.php:
   --bg-image (url), --bg-pos, --bg-scale (zoom), --bg-dim, data-bgpattern
   EXTRA:
   data-bgfit="cover|contain"
   --bg-size-pct (logo grootte %)
   ========================= */

body.site-bg {
    min-height: 100vh;
}

/* image layer */
.bgimg {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    overflow: hidden;
    background: var(--bg-color);
}

/* ✅ render achtergrond via ::before (zodat we cover/contain + zoom netjes kunnen sturen) */
.bgimg::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: var(--bg-image);
    background-repeat: no-repeat;
    background-position: var(--bg-pos);

    /* default (veilig) */
    background-size: cover;

    /* zoom */
    transform: scale(var(--bg-scale, 1));
    transform-origin: center center;
    will-change: transform;
}

/* ✅ Foto modus */
body.site-bg[data-bgfit="cover"] .bgimg::before {
    background-size: cover;
}

/* ✅ Logo modus (grootte % instelbaar) */
body.site-bg[data-bgfit="contain"] .bgimg::before {
    /* breedte = % van viewport, hoogte auto */
    background-size: calc(var(--bg-size-pct, 60) * 1%) auto;
}

/* fallback <img> (mag blijven bestaan, maar niet meer “mega”) */
.bgimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: var(--bg-pos);
    opacity: 0;
    /* verborgen fallback */
    pointer-events: none;
}

/* admin: bgmode=color => geen image layer */
body.site-bg[data-bgmode="color"] .bgimg {
    background-image: none;
}

body.site-bg[data-bgmode="color"] .bgimg::before {
    content: none;
}

body.site-bg[data-bgmode="color"] .bgimg img {
    display: none;
}

/* dim + pattern layer */
.bgfx {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    --dimA: calc(var(--bg-dim)/100);
    --dimB: calc((var(--bg-dim)+12)/100);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, var(--dimA)),
            rgba(0, 0, 0, var(--dimB)));
}

body.site-bg[data-bgpattern="granite"] .bgfx {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .05), transparent 38%),
        radial-gradient(circle at 88% 10%, rgba(125, 211, 252, .10), transparent 42%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, var(--dimA)),
            rgba(0, 0, 0, var(--dimB)));
}

body.site-bg[data-bgpattern="noise"] .bgfx {
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .02) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, .02) 0 1px, transparent 1px 4px),
        linear-gradient(to bottom,
            rgba(0, 0, 0, var(--dimA)),
            rgba(0, 0, 0, var(--dimB)));
}

body.site-bg[data-bgpattern="none"] .bgfx {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, var(--dimA)),
            rgba(0, 0, 0, var(--dimB)));
}

/* =========================
   HEADER
   ========================= */
.headercard {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: rgba(0, 0, 0, .18);
}

.headerimg {
    width: 100%;
    height: auto;
    display: block
}

.headerfade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .06), rgba(0, 0, 0, .38));
    pointer-events: none;
}

/* =========================
   MENU
   ========================= */
.menucard {
    margin-top: 10px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--menuBorder);
    background: var(--menuBg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .30);
}

.menuhead {
    display: none;
    padding: 10px 14px 0
}

.burger {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    width: 46px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
    cursor: pointer;
}

.burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    opacity: .95
}

.menurow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 14px;
    align-items: center;
    justify-content: center;
}

.menurow a {
    color: var(--menuText);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .25px;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background .15s ease, transform .05s ease, border-color .15s ease;
    border: 1px solid transparent;
}

.menurow a:hover {
    background: var(--menuHover);
    border-color: rgba(255, 255, 255, .10)
}

.menurow a:active {
    transform: translateY(1px)
}

.menurow2 {
    padding: 10px 14px 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.djlogin,
.sitelogin,
.btnlike {
    display: inline-block;
    color: #ff0000;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .25px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .10);
}

.djlogin:hover,
.sitelogin:hover,
.btnlike:hover {
    background: rgba(0, 0, 0, .28)
}

/* =========================
   PLAYER
   ========================= */
.playercard {
    margin-top: 12px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--card2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .30);
}

.playercard iframe {
    display: block;
    width: 100%
}

/* =========================
   LAYOUT + CARD
   ========================= */
.layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 16px;
    align-items: start;
    margin-top: 16px;
}

@media(max-width:980px) {
    .layout {
        grid-template-columns: 1fr
    }
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.content h1,
.content h2,
.content h3 {
    margin-top: 0
}

.content p {
    line-height: 1.6
}

.content img {
    border-radius: 12px
}

.content a:not(.djlogin):not(.menurow a),
.widget a {
    text-decoration: underline;
    text-underline-offset: 3px
}

.content a:hover,
.widget a:hover {
    opacity: .92
}

/* overflow safety (tegen “site te breed”) */
.content iframe,
.card iframe,
.widget iframe,
.playercard iframe {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    border: 0
}

/* =========================
   SIDEBAR WIDGETS
   ========================= */
.widget {
    overflow: hidden
}

.widget h3 {
    margin: 0 0 8px
}

.sidebar .widget {
    font-size: 13px;
    line-height: 1.45
}

.sidebar .widget p {
    margin: 0 0 10px
}

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

.sidebar .widget a img {
    display: inline-block;
    vertical-align: middle
}

.sidebar iframe[name="iReQuest_djdisplay"],
.sidebar iframe[src*="djdisplay"] {
    width: 150px !important;
    height: 150px !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
}

.sidebar .widget .iconlinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.sidebar .widget .iconlinks a {
    text-decoration: none
}

.sidebar .widget .iconlinks a>img,
.sidebar .widget a>img.widget-icon {
    height: var(--widgetIconSize);
    width: auto;
    max-height: var(--widgetIconSize);
    object-fit: contain;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .22);
}

.sidebar .widget .partners {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
    justify-items: center;
}

@media(max-width:980px) {
    .sidebar .widget .partners {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
}

@media(max-width:640px) {
    .sidebar .widget .partners {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

.sidebar .widget .partners a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.sidebar .widget .partners a img {
    width: 100%;
    height: 44px;
    object-fit: contain;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
}

/* =========================
   FOOTER
   ========================= */
.footer {
    border-top: 1px solid var(--line);
    margin-top: 24px;
    padding: 14px 0;
    color: var(--muted);
    background: rgba(0, 0, 0, .35);
    text-align: center;
}

/* =========================
   STATUS WIDGET — blauw accent, strak, GEEN scrollbars
   + top-row fix + song marquee (zonder zichtbare dubbele tekst)
   ========================= */

/* ✅ iframe widget */
.sidebar iframe[src*="stats"],
.sidebar iframe[src*="status"],
.widget iframe[src*="stats"],
.widget iframe[src*="status"] {
    width: 100% !important;
    max-width: 100% !important;
    height: 280px !important;
    border: 0 !important;
    display: block !important;
    background: transparent !important;
}

/* container */
.status-widget {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, .18);
    background: linear-gradient(180deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, .16));
    box-shadow:
        0 12px 34px rgba(0, 0, 0, .30),
        0 0 0 1px rgba(56,189,248,.06),
        0 0 22px rgba(56,189,248,.08);
    overflow: hidden;
}

/* TOP ROW */
.status-widget .sw-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.status-widget .sw-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}

.status-widget .sw-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    white-space: nowrap;
}

/* ✅ Servernaam blauw */
.status-widget .sw-title {
    font-weight: 950;
    letter-spacing: .25px;
    font-size: 14px;
    line-height: 1.1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #7dd3fc;
    text-shadow:
        0 0 10px rgba(125,211,252,.35),
        0 1px 0 rgba(0,0,0,.55);
}

/* status dot */
.status-widget .sw-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .22) inset;
    flex: 0 0 10px;
}

.status-widget .sw-dot.sw-online {
    background: rgba(34, 197, 94, .95);
    animation: swBlinkG 1.15s infinite;
}

.status-widget .sw-dot.sw-offline {
    background: rgba(239, 68, 68, .95);
    animation: swBlinkR 1.15s infinite;
}

@keyframes swBlinkG {
    0%,100% { opacity: 1; }
    50% { opacity: .55; filter: drop-shadow(0 0 8px rgba(34,197,94,.55)); }
}

@keyframes swBlinkR {
    0%,100% { opacity: 1; }
    50% { opacity: .55; filter: drop-shadow(0 0 8px rgba(239,68,68,.55)); }
}

/* ONLINE / OFFLINE */
.status-widget .sw-state {
    font-weight: 950;
    letter-spacing: .35px;
    font-size: 12px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* GRID */
.status-widget .sw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.status-widget .sw-item {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(56,189,248,.14);
    background: rgba(0, 0, 0, .16);
    overflow: hidden;
}

/* “Nu te horen” over volle breedte */
.status-widget .sw-item:nth-child(2) {
    grid-column: 1 / -1;
}

/* labels */
.status-widget .sw-k {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 4px;
    color: rgba(186,230,253,.75);
}

/* ✅ waardes blauw */
.status-widget .sw-v {
    font-size: 14px;
    font-weight: 950;
    line-height: 1.2;
    color: #7dd3fc;
    text-shadow: 0 0 10px rgba(125,211,252,.25);
}

/* =========================
   NU TE HOREN — marquee
   ========================= */
.status-widget .sw-songline {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    word-break: normal;

    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.status-widget .sw-songline .sw-marquee {
    display: inline-flex;
    align-items: center;
    gap: 34px;
    transform: translateX(0);
    will-change: transform;
}

/* duplicate via ::after */
.status-widget .sw-songline.is-scroll .sw-marquee::after {
    content: attr(data-text);
    white-space: nowrap;
}

/* animatie */
.status-widget .sw-songline.is-scroll .sw-marquee {
    animation: swMarquee 14s linear infinite;
    animation-delay: 1.2s;
}

@keyframes swMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* mobiel */
@media (max-width: 420px) {
    .status-widget .sw-grid { grid-template-columns: 1fr; }
    .status-widget .sw-item:nth-child(2) { grid-column: auto; }
}

/* =========================
   TEAM — blauw accent (zoals programma)
   ========================= */
.team-wrap {
    display: grid;
    grid-template-columns: repeat(var(--team-cols), minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

@media(max-width:980px) {
    .team-wrap {
        grid-template-columns: repeat(var(--team-cols-md), minmax(0, 1fr))
    }
}

@media(max-width:650px) {
    .team-wrap {
        grid-template-columns: repeat(var(--team-cols-sm), minmax(0, 1fr))
    }
}

.team-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .18));
    box-shadow: 0 12px 34px rgba(0, 0, 0, .30);
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    min-height: calc(var(--team-card-size) - 10px);
}

.team-card:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, .35);
    box-shadow:
        0 16px 46px rgba(0, 0, 0, .40),
        0 0 0 1px rgba(56, 189, 248, .12),
        0 0 18px rgba(56, 189, 248, .12);
}

.team-photo,
.team-photo.placeholder {
    width: min(var(--team-img-size, 210px), 100%);
    aspect-ratio: 1/1;
    margin: 12px auto 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}

.team-photo {
    object-fit: var(--team-img-fit, cover)
}

.team-photo.placeholder {
    display: grid;
    place-items: center;
    color: rgba(125, 211, 252, .85);
    font-size: 12px
}

.team-meta {
    padding: 12px 14px 14px
}

/* ✅ Naam blauw */
.team-name {
    font-weight: 950;
    font-size: 15px;
    letter-spacing: .2px;
    color: #7dd3fc;
    text-shadow:
        0 0 8px rgba(125, 211, 252, .25),
        0 1px 0 rgba(0, 0, 0, .55);
}

/* ✅ Rol koeler/blauwgrijs */
.team-role {
    color: rgba(186, 230, 253, .85);
    font-size: 12.5px;
    margin-top: 3px
}

/* BIO */
.team-bio {
    position: absolute;
    inset: auto 12px 12px 12px;
    background: rgba(0, 0, 0, .72);
    border: 1px solid rgba(125, 211, 252, .25);
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 12.5px;
    line-height: 1.35;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .15s ease, transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 0 18px rgba(125, 211, 252, .12);
}

.team-card.has-bio:hover .team-bio {
    opacity: 1;
    transform: translateY(0)
}

.team-card.bio-always .team-bio {
    position: static;
    margin: 10px 14px 14px;
    opacity: 1;
    transform: none
}

/* =========================
   PROGRAMMA
   ========================= */
.prog {
    padding: 16px
}

.prog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

.prog-title {
    margin: 0;
    color: #038ef7;
}

.prog-note {
    color: var(--muted);
    font-size: 13px
}

.prog-note strong {
    color: #038ef7;
}

/* ---------- TABS ---------- */
.prog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 8px
}

.prog-tab {
    border: 1px solid rgba(3, 142, 247, .28);
    background: rgba(3, 142, 247, .08);
    color: #038ef7;
    padding: 8px 10px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .2px;
}

.prog-tab:hover {
    background: rgba(3, 142, 247, .14)
}

.prog-tab.on {
    background: rgba(3, 142, 247, .22);
    border-color: rgba(3, 142, 247, .45);
}

/* ---------- LIJST ---------- */
.prog-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px
}

.prog-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px;
    align-items: stretch;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(3, 142, 247, .22);
    background: rgba(0, 0, 0, .18);
}

@media(max-width:700px) {
    .prog-item {
        grid-template-columns: 1fr
    }
}

.prog-item.is-now {
    border-color: rgba(3, 142, 247, .55);
    box-shadow: 0 0 0 6px rgba(3, 142, 247, .12)
}

/* ---------- TIJD ---------- */
.prog-time {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 142, 247, .10);
    border: 1px solid rgba(3, 142, 247, .35);
    border-radius: 14px;
    font-weight: 950;
}

.prog-time span {
    font-size: 14px;
    letter-spacing: .2px;
    color: #038ef7;
}

/* ---------- INFO ---------- */
.prog-main {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.prog-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.prog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .22);
    font-weight: 900;
    font-size: 12px;
}

.prog-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.prog-dot.live {
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, .12)
}

.prog-dot.nonstop {
    background: #ef4444;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, .10)
}

.prog-dot.special {
    background: #f59e0b;
    box-shadow: 0 0 0 6px rgba(245, 158, 11, .10)
}

.prog-now {
    font-weight: 950;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .10);
    animation: progPulse 1.1s infinite;
}

.prog-now.live {
    background: rgba(34, 197, 94, .14);
    border-color: rgba(34, 197, 94, .22)
}

.prog-now.nonstop {
    background: rgba(239, 68, 68, .14);
    border-color: rgba(239, 68, 68, .22)
}

.prog-now.special {
    background: rgba(245, 158, 11, .16);
    border-color: rgba(245, 158, 11, .24)
}

@keyframes progPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.04);
        opacity: .85
    }
}

/* ---------- TITELS ---------- */
.prog-name {
    font-weight: 950;
    font-size: 16px;
    color: #038ef7;
}

.prog-dj {
    color: rgba(3, 142, 247, .80);
    font-size: 13px
}

/* responsive menu */
@media(max-width:820px) {
    .menuhead {
        display: block
    }

    .menurow {
        display: none;
        padding: 10px 14px 12px
    }

    .menucard.is-open .menurow {
        display: flex
    }
}

@media(max-width:700px) {
    :root {
        --wrap-pad: 14px
    }

    .menurow {
        gap: 6px;
        padding: 10px
    }

    .menurow a {
        padding: 9px 10px
    }

    .menurow2 {
        padding: 10px
    }
}