:root {
    --ink: #15191d;
    --muted: #65717c;
    --paper: #f5f7f4;
    --white: #ffffff;
    --black: #07090b;
    --line: #dce3dd;
    --green: #0f7f66;
    --green-dark: #075745;
    --copper: #b66b3d;
    --gold: #dfb85b;
    --blue: #276da8;
    --red: #b4443d;
    --shadow: 0 20px 60px rgba(12, 19, 24, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Tahoma, Arial, sans-serif;
    line-height: 1.7;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 50;
    display: flex;
    width: min(1180px, calc(100% - 28px));
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 70px;
    padding: 12px 16px;
    color: var(--white);
    background: rgba(15, 127, 102, .88);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(7, 87, 69, .26);
    transform: translateX(-50%);
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
    color: var(--ink);
    background: rgba(255, 255, 255, .88);
    border-color: rgba(220, 227, 221, .86);
    box-shadow: 0 18px 45px rgba(12, 19, 24, .13);
    backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand {
    flex: 0 1 auto;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: var(--white);
    background: var(--black);
    border: 2px solid rgba(255, 255, 255, .48);
    border-radius: 50%;
    font-weight: 800;
    line-height: 1;
}

.site-header.is-scrolled .brand-mark,
.footer-brand .brand-mark,
.admin-header .brand-mark {
    color: var(--white);
    background: var(--green-dark);
    border-color: rgba(15, 127, 102, .28);
}

.brand strong,
.footer-brand strong {
    display: block;
    max-width: 260px;
    overflow: hidden;
    font-size: 1.02rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand em,
.footer-brand p {
    display: block;
    margin: 2px 0 0;
    color: currentColor;
    font-size: .76rem;
    font-style: normal;
    opacity: .8;
}

.site-nav,
.admin-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.site-nav a,
.admin-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 11px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 700;
    transition: background .18s ease, color .18s ease;
}

.site-nav a:hover,
.admin-nav a:hover {
    background: rgba(255, 255, 255, .16);
}

.site-header.is-scrolled .site-nav a:hover,
.admin-nav a:hover {
    background: rgba(15, 127, 102, .1);
    color: var(--green-dark);
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 8px;
}

.site-header.is-scrolled .language-switch {
    border-color: rgba(15, 127, 102, .2);
}

.language-switch a {
    min-width: 38px;
    padding: 6px 8px;
}

.language-switch a.is-active {
    color: var(--ink);
    background: var(--white);
}

.site-header.is-scrolled .language-switch a.is-active {
    color: var(--white);
    background: var(--green-dark);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: inherit;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
}

.hero {
    position: relative;
    display: grid;
    min-height: 92vh;
    overflow: hidden;
    align-items: end;
    color: var(--white);
    background-image:
        linear-gradient(90deg, rgba(6, 12, 15, .88), rgba(6, 12, 15, .58), rgba(6, 12, 15, .16)),
        var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 22%;
    content: "";
    background: linear-gradient(180deg, rgba(245, 247, 244, 0), var(--paper));
    pointer-events: none;
}

.hero-brand-cover {
    min-height: clamp(300px, 34vw, 470px);
    align-items: center;
    color: var(--ink);
    background-color: var(--white);
    background-image: none;
}

.hero-brand-cover::after {
    z-index: 1;
    height: 35%;
    background: linear-gradient(180deg, rgba(245, 247, 244, 0), rgba(245, 247, 244, .82));
}

.hero-banner-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-brand-cover .hero-content {
    z-index: 2;
    padding: 112px 0 54px;
}

.hero-brand-cover .eyebrow {
    color: rgba(15, 127, 102, .7);
}

.hero-brand-cover h1 {
    max-width: 520px;
    color: rgba(7, 9, 11, .0); /*.58);*/
    font-size: clamp(2.4rem, 4.6vw, 4.9rem);
}

.hero-brand-cover .hero-copy {
    max-width: 510px;
    color: rgba(7, 9, 11, .54);
    font-size: 1.05rem;
}

.hero-brand-cover .hero-actions {
    margin-top: 22px;
    opacity: .82;
}

.hero-brand-cover .secondary-link.inverse,
.hero-brand-cover .ghost-link {
    color: rgba(7, 9, 11, .74);
    background: rgba(255, 255, 255, .48);
    border-color: rgba(7, 9, 11, .14);
}

.hero-brand-cover .hero-metrics {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 150px 0 130px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--copper);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--gold);
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.6rem);
    line-height: .95;
}

.hero-copy {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.primary-link,
.secondary-link,
.ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.primary-link {
    color: var(--white);
    background: var(--green);
}

.primary-link:hover {
    background: var(--green-dark);
}

.secondary-link {
    color: var(--green-dark);
    background: rgba(15, 127, 102, .1);
    border-color: rgba(15, 127, 102, .24);
}

.secondary-link.inverse {
    color: var(--white);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .34);
}

.ghost-link {
    color: var(--white);
    border-color: rgba(255, 255, 255, .34);
}

.large {
    min-height: 52px;
    padding-inline: 20px;
}

.hero-metrics {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;
    display: grid;
    width: min(1160px, calc(100% - 32px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    transform: translateX(-50%);
}

.hero-metrics span {
    min-height: 70px;
    padding: 14px;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    font-weight: 800;
}

.section-inner {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.about-band,
.items-section,
.gallery-section,
.locations-section,
.contact-section {
    padding: 86px 0;
}

.about-band {
    background: var(--paper);
}

.about-grid,
.contact-grid,
.location-grid,
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: start;
}

.about-grid h2,
.section-heading h2,
.location-grid h2,
.contact-grid h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.05;
}

.about-logo {
    width: min(220px, 58vw);
    margin-top: 24px;
    border-radius: 8px;
}

.about-copy {
    color: var(--muted);
    font-size: 1.05rem;
}

.about-copy p {
    margin: 0 0 20px;
    white-space: pre-line;
}

.about-copy strong {
    display: block;
    color: var(--ink);
    font-size: 1.2rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.items-section {
    background: var(--white);
}

.item-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.item-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(12, 19, 24, .08);
}

.item-card img,
.item-card video {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #e7ece7;
}

.item-body {
    display: grid;
    min-height: 230px;
    padding: 20px;
}

.item-body h3 {
    margin: 0;
    font-size: 1.24rem;
    line-height: 1.25;
}

.item-body p {
    margin: 12px 0 18px;
    color: var(--muted);
}

.item-body strong {
    align-self: end;
    color: var(--green-dark);
    font-size: 1rem;
}

.gallery-section {
    background: #eef2ed;
}

.gallery-tile {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 0;
    background: #dce3dd;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(12, 19, 24, .11);
}

.gallery-tile img,
.gallery-tile video {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .25s ease;
}

.gallery-tile:hover img,
.gallery-tile:hover video {
    transform: scale(1.035);
}

.video-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 9px;
    color: var(--white);
    background: rgba(7, 9, 11, .74);
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 800;
}

.empty-note {
    margin: 0;
    padding: 24px;
    color: var(--muted);
    background: var(--white);
    border: 1px dashed var(--line);
    border-radius: 8px;
}

.locations-section {
    color: var(--white);
    background: var(--ink);
}

.locations-section .section-kicker {
    color: var(--gold);
}

.location-grid p {
    max-width: 520px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.08rem;
}

.map-panel {
    display: grid;
    min-height: 230px;
    align-content: space-between;
    padding: 24px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(15, 127, 102, .9), rgba(39, 109, 168, .82)),
        radial-gradient(circle at top right, rgba(223, 184, 91, .32), transparent 42%);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
}

.map-panel span {
    color: rgba(255, 255, 255, .8);
}

.map-panel strong {
    font-size: 1.7rem;
}

.contact-section {
    background: var(--paper);
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-form label,
.admin-field {
    display: grid;
    gap: 8px;
}

.contact-form span,
.admin-field span {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.admin-field input,
.admin-field textarea,
.link-row input {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.admin-field input:focus,
.admin-field textarea:focus,
.link-row input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(15, 127, 102, .12);
}

.form-button {
    width: fit-content;
}

.form-success,
.notice {
    margin: 18px 0 0;
    padding: 12px 14px;
    color: var(--green-dark);
    background: rgba(15, 127, 102, .1);
    border: 1px solid rgba(15, 127, 102, .2);
    border-radius: 8px;
    font-weight: 800;
}

.contact-panel {
    display: grid;
    gap: 10px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(12, 19, 24, .08);
}

.contact-panel h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.contact-panel a,
.contact-panel span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: #f8faf7;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow-wrap: anywhere;
}

.contact-panel a:hover {
    color: var(--green-dark);
    border-color: rgba(15, 127, 102, .26);
}

.site-footer {
    padding: 34px 0;
    color: var(--white);
    background: var(--black);
}

.footer-grid {
    align-items: center;
}

.footer-grid > p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    text-align: end;
}

.footer-brand p {
    max-width: 420px;
    overflow-wrap: anywhere;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(5, 8, 10, .84);
}

.lightbox[hidden] {
    display: none;
}

.lightbox img,
.lightbox video {
    max-width: min(980px, 96vw);
    max-height: 86vh;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lightbox button {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    font-size: 2rem;
    line-height: 1;
}

.admin-body {
    background: #f2f5f1;
}

.admin-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 5vw;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.admin-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 70px;
}

.admin-hero,
.admin-panel,
.login-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 45px rgba(12, 19, 24, .08);
}

.admin-hero {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
    align-items: center;
    padding: 26px;
    margin-bottom: 18px;
}

.admin-hero h1,
.admin-panel h2,
.login-panel h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.stats-grid div {
    display: grid;
    gap: 4px;
    min-height: 110px;
    padding: 16px;
    background: #f7faf6;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.stats-grid strong {
    font-size: 2rem;
    line-height: 1;
}

.stats-grid span {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 800;
}

.admin-panel {
    padding: 26px;
    margin-top: 18px;
}

.admin-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.admin-form {
    display: grid;
    gap: 18px;
}

.admin-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-subsection {
    display: grid;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.admin-subsection h3 {
    margin: 0;
}

.gallery-admin-list,
.item-editor,
.message-list {
    display: grid;
    gap: 12px;
}

.gallery-admin-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: #f7faf6;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.gallery-admin-row img,
.gallery-admin-row video,
.item-editor-row > img,
.item-editor-row > video,
.admin-image-placeholder {
    width: 90px;
    height: 90px;
    object-fit: cover;
    background: #dde5df;
    border-radius: 8px;
}

.gallery-admin-row input[type="text"] {
    width: 100%;
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.check-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
}

.check-row input {
    width: 18px;
    height: 18px;
}

.danger,
.danger-button {
    color: var(--red);
}

.link-editor {
    display: grid;
    gap: 10px;
}

.link-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr;
    gap: 10px;
}

.item-editor-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 14px;
    background: #f7faf6;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.admin-image-placeholder {
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 800;
}

.item-editor-fields {
    display: grid;
    gap: 14px;
}

.item-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.admin-upload-inline {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
}

.admin-submit {
    width: fit-content;
    border: 0;
}

.message-row {
    display: grid;
    gap: 8px;
    padding: 16px;
    background: #f7faf6;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.message-row div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.message-row span,
.message-row a {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.message-row p {
    margin: 0;
}

.traffic-table {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.traffic-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid var(--line);
}

.traffic-row:first-child {
    border-top: 0;
}

.traffic-head {
    color: var(--muted);
    background: #f7faf6;
    font-weight: 800;
}

.login-wrap {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.login-panel {
    width: min(460px, 100%);
    padding: 30px;
}

.login-panel form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
    }

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

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        inset-inline: 0;
        display: none;
        padding: 12px;
        background: rgba(255, 255, 255, .96);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 18px 45px rgba(12, 19, 24, .13);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a,
    .language-switch {
        width: 100%;
        color: var(--ink);
    }

    .language-switch {
        justify-content: center;
        border-color: var(--line);
    }

    .language-switch a.is-active {
        color: var(--white);
        background: var(--green-dark);
    }

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

    .about-grid,
    .contact-grid,
    .location-grid,
    .footer-grid,
    .admin-hero {
        grid-template-columns: 1fr;
    }

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

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

    .admin-header,
    .admin-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
    }

    .brand strong {
        max-width: 170px;
    }

    .hero {
        min-height: 880px;
        background-position: center;
    }

    .hero-brand-cover {
        min-height: 360px;
        background-position: center top;
    }

    .hero-content {
        padding: 126px 0 270px;
    }

    .hero-brand-cover .hero-content {
        padding: 104px 0 34px;
    }

    .hero h1 {
        font-size: 3.1rem;
    }

    .hero-brand-cover h1 {
        max-width: 300px;
        font-size: 2.35rem;
    }

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

    .hero-brand-cover .hero-copy {
        max-width: 310px;
        font-size: .92rem;
    }

    .hero-actions,
    .item-row-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions a,
    .primary-link,
    .secondary-link,
    .ghost-link {
        width: 100%;
    }

    .hero-metrics,
    .item-grid,
    .gallery-grid,
    .admin-two-col,
    .link-row,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics span {
        min-height: 56px;
    }

    .about-band,
    .items-section,
    .gallery-section,
    .locations-section,
    .contact-section {
        padding: 62px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .item-body {
        min-height: auto;
    }

    .footer-grid > p {
        text-align: start;
    }

    .admin-main {
        width: min(100% - 20px, 1180px);
    }

    .admin-panel,
    .admin-hero,
    .login-panel {
        padding: 18px;
    }

    .gallery-admin-row,
    .item-editor-row {
        grid-template-columns: 1fr;
    }

    .gallery-admin-row img,
    .gallery-admin-row video,
    .item-editor-row > img,
    .item-editor-row > video,
    .admin-image-placeholder {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .traffic-row {
        grid-template-columns: 1fr 70px 70px 70px;
        overflow-x: auto;
    }
}
