:root {
    --color-primary: #f4d84a;
    --color-secondary: #e8dc8a;
    --color-soft: #dadfaf;
    --color-line: #3a3a3a;
    --color-text: #333333;
    --color-muted: #666666;
    --color-bg: #fffdf0;
    --color-white: #ffffff;
    --shadow: 0 24px 70px rgba(58, 58, 58, 0.13);
    --radius: 1.25rem;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

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

img.inline {
    display: inline;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    z-index: 100;
    background: var(--color-line);
    color: var(--color-white);
    padding: 0.75rem 1rem;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 253, 240, 0.94);
    border-bottom: 2px solid rgba(58, 58, 58, 0.08);
    backdrop-filter: blur(16px);
}

.nav-shell {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand img {
    width: 52px;
    height: 52px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.brand small {
    color: var(--color-muted);
    font-size: 0.78rem;
}

.nav-toggle {
    border: 2px solid var(--color-line);
    background: var(--color-primary);
    color: var(--color-line);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-weight: 700;
}

.site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem;
    background: var(--color-white);
    border: 2px solid var(--color-line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.site-nav.open {
    display: flex;
}

.site-nav a {
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
}

.site-nav a:hover,
.site-nav a.active {
    background: var(--color-primary);
}

.nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin: 0.1rem 0 0.35rem 0.6rem;
    padding-left: 0.5rem;
    border-left: 2px solid rgba(58, 58, 58, 0.2);
}

.nav-dropdown-menu a {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 0.8rem 0.5rem 0.4rem;
    border-radius: 0.75rem;
}

.nav-dropdown-divider {
    display: block;
    height: 1px;
    margin: 0.35rem 0.2rem 0.25rem 0.4rem;
    background: rgba(58, 58, 58, 0.15);
    border: 0;
    align-self: stretch;
}

main {
    overflow: hidden;
}

.hero,
.section,
.page-hero,
.gallery-grid,
.footer-grid {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

.hero {
    display: grid;
    gap: 2rem;
    padding: 3rem 0 4rem;
}

.hero-copy {
    align-self: center;
}

.eyebrow {
    margin: 0 0 0.7rem;
    color: var(--color-line);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--color-line);
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.0rem, 13vw, 4.0rem);
    letter-spacing: -0.05em;
}

h2 {
    font-size: clamp(1.6rem, 7vw, 3.2rem);
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.35rem;
    margin-top: 1em;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.section-heading p {
    max-width: 46rem;
    color: var(--color-muted);
    font-size: 1.12rem;
}

img.rounded-thumbnail {
    border-radius: 50%;
    display: inline;
    float: left;
    /* Abstand zum Text */
    margin-right: 0.8em;
}

.hero-media {
    position: relative;
    margin: 0;
    min-height: 22rem;
    overflow: hidden;
    border: 3px solid var(--color-line);
    border-radius: 2rem;
    background: var(--color-soft);
    box-shadow: var(--shadow);
}

/*
.hero-media::before {
    content: "";
    position: absolute;
    inset: 1rem auto auto 1rem;
    width: 8rem;
    height: 8rem;
    border-radius: 999px;
    background: var(--color-primary);
    opacity: 0.86;
    z-index: 1;
}
*/

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 22rem;
    object-fit: cover;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.2rem;
    border: 2px solid var(--color-line);
    border-radius: 999px;
    color: var(--color-line);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 5px 5px 0 var(--color-line);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--color-line);
}

.button-primary {
    background: var(--color-primary);
}

.button-secondary {
    background: var(--color-white);
}

.button-dark {
    background: var(--color-line);
    color: var(--color-white);
    box-shadow: 5px 5px 0 var(--color-primary);
}

.section,
.page-hero {
    padding: 1.5rem 0;
}

.page-hero.compact {
    padding-bottom: 1.5rem;
}

.section-heading {
    margin-bottom: 1.5rem;
}

.card-grid,
.price-grid {
    display: grid;
    gap: 1rem;
}

.card,
.price-card,
.notice,
.contact-form,
.prose {
    background: var(--color-white);
    border: 2px solid rgba(58, 58, 58, 0.18);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 14px 35px rgba(58, 58, 58, 0.07);
    position: relative;
}

.card-image {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 25%;
    max-height: 100%;
    border-radius: 0 1.1rem 1.1rem 0;
    overflow: hidden;
}
.card-body {
    position: relative;
    z-index: 1;
    padding-right: 28%;
    padding-left: 1.25rem;

    h3 {
        margin-top: 0;
    }
}

.card p, .card ul, .card ol,
.price-card p {
    color: var(--color-muted);
}

/*
 * Startseite — Angebote: Spaltenzahl hängt von der Anzahl sichtbarer Angebote ab.
 */
.home-offer-card-grid .card {
    display: grid;
    grid-template-columns: minmax(4.25rem, 30%) 1fr;
    gap: 0 1rem;
    align-items: stretch;
    padding: 0;
    min-height: 0;
    overflow: hidden;
}

.home-offer-card-grid .card-image {
    position: static;
    top: auto;
    right: auto;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 0;
    overflow: hidden;
    align-self: stretch;
}

.home-offer-card-grid .card-image a {
    display: block;
    height: 100%;
}

.home-offer-card-grid .card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-offer-card-grid .card-body {
    position: relative;
    z-index: 1;
    padding: 1.1rem 1.2rem 1.15rem 0;
    min-width: 0;
    align-self: center;
}

@media (max-width: 480px) {
    .home-offer-card-grid .card {
        grid-template-columns: 1fr;
        padding: 1rem;
        overflow: visible;
    }

    .home-offer-card-grid .card-image {
        max-width: 9rem;
        max-height: 12.5rem;
        height: auto;
        margin: 0 auto 0.25rem;
        border-radius: 0.8rem;
        aspect-ratio: 3 / 4;
    }

    .home-offer-card-grid .card-body {
        padding: 0;
    }
}

/*
 * /angebote/-Übersicht: Kurs-Karten, Bild oben, Hochformat 600×800 (3:4)
 */
.offer-card-grid .card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.offer-card-grid .card-image {
    position: static;
    order: -1;
    width: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: 3 / 4;
    border-radius: 1.1rem 1.1rem 0 0;
}

.offer-card-grid .card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.offer-card-grid .card-body {
    position: static;
    padding: 1.1rem 1.25rem 1.35rem;
}

.text-link {
    color: var(--color-line);
    font-weight: 800;
    text-decoration-color: var(--color-primary);
    text-decoration-thickness: 0.25em;
    text-underline-offset: 0.2em;
}

.static-page h2 {
    margin-top: 1.75rem;
}

.static-page h2:first-of-type {
    margin-top: 0;
}

.static-page .lead {
    font-size: 1.12rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.cta-band {
    width: min(100% - 2rem, var(--max-width));
    margin: 2rem auto 4rem;
    display: grid;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid var(--color-line);
    border-radius: 1.5rem;
    background: var(--color-primary);
}

.split-card {
    display: grid;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: var(--color-white);
    border-radius: 1.5rem;
}

.split-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 1rem;
}

.offer-hero {
    position: relative;
    min-height: 40vh;
    display: grid;
    align-items: end;
    padding: 5rem 1rem 3rem;
    background:
        linear-gradient(180deg, rgba(58, 58, 58, 0.12), rgba(58, 58, 58, 0.76)),
        var(--offer-hero-image) center / cover no-repeat,
        var(--color-soft);
}

.offer-hero-content {
    width: min(100%, 760px);
    margin-inline: auto;
    padding: 1.25rem;
    color: #333333;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
}

.offer-hero-content h1,
.offer-hero-content .eyebrow {
    color: var(--color-white);
}

.offer-hero-content .offer-teaser,
.offer-teaser {
    color: var(--color-line);
    font-size: clamp(1.2rem, 4vw, 1.7rem);
    font-weight: 800;
}

.offer-hero-content .offer-teaser {
    color: var(--color-primary);
}

.offer-hero-content p:not(.eyebrow) {
    max-width: 48rem;
}

.offer-consulting .offer-teaser {
    max-width: 56rem;
}

.offer-body {
    display: grid;
    gap: 1rem;
}

/* Layout-Utilities: vertikal stapeln, zweispaltig, Medienrahmen, Viewport-Breite */
.l-stack {
    display: grid;
    gap: var(--l-stack-gap, 1rem);
    min-width: 0;
}

.l-grid-split {
    /* Genau zwei direkte Kinder: linke Spalte (z. B. .l-stack), rechte Spalte (z. B. .l-stack mit Bild + Marginal). */
    display: grid;
    gap: var(--l-split-gap, 1.5rem);
    align-items: start;
    grid-template-columns: 1fr;
    min-width: 0;
}

.l-media-frame {
    margin: 0;
    /* Sonst min-content ≈ intrinsische Bildbreite (z. B. 900px) und die Spalte wächst über den Viewport — bei main { overflow: hidden } wird abgeschnitten. */
    min-width: 0;
    max-width: 100%;
}

.l-media-frame img,
.l-media-frame video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    /* aspect-ratio: var(--l-media-aspect, 3 / 4); */
    object-fit: contain;
    border-radius: var(--radius);
    /* border: 2px solid rgba(58, 58, 58, 0.14); */
    box-shadow: 0 14px 35px rgba(58, 58, 58, 0.07);
    margin-bottom: .5rem;
}

.l-viewport-bleed {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 1.5rem;
    padding-inline: 1rem;
    box-sizing: border-box;
}

.l-viewport-bleed .cta-band {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 4rem;
}

.content-block {
    padding: 1.25rem;
    border: 2px solid rgba(58, 58, 58, 0.14);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: 0 14px 35px rgba(58, 58, 58, 0.07);

    &.content-block-aside {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: #000;
        h4 {
            margin-top: 0;
            margin-bottom: 0.5rem;
        }
        p {
            color: #000;
            font-size: 0.9rem;
            line-height: 1.8;
        }
    }
}

.content-block p {
    color: var(--color-muted);
}

code {
    background: var(--color-soft);
    padding: 0.2rem 0.4rem;
    border-radius: 0.4rem;
}

code#google-plus-code {
    cursor: pointer;
}

.check-list {
    display: grid;
    gap: 0.55rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.7rem;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 0.8rem;
    height: 0.8rem;
    border: 2px solid var(--color-line);
    border-radius: 999px;
    background: var(--color-primary);
}

.price-card strong {
    display: block;
    margin: 1rem 0;
    color: var(--color-line);
    font-size: 1.8rem;
}

.price-group-grid {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.price-card h3 {
    margin-top: 0;
}

.price-table-wrap {
    background: transparent;
}

.price-table {
    min-width: 0;
}

.terms-table {
    min-width: 0;
}

.price-table th,
.price-table td {
    padding: 0.75rem 0.6rem;
    vertical-align: top;
}

.price-table th:nth-child(2),
.price-table-amount {
    padding-right: 1.5rem;
    text-align: right !important;
}

.price-table strong {
    display: inline;
    margin: 0;
    font-size: 1rem;
    white-space: nowrap;
}

.table-wrap {
    overflow-x: auto;
    background: var(--color-white);
    border-radius: 1rem;
    margin-top:.7em;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.data-table th,
.data-table td {
    padding: 0.9rem;
    border-bottom: 1px solid rgba(58, 58, 58, 0.12);
    text-align: left;
    vertical-align: top;
}

.data-table th {
    background: var(--color-soft);
}

.status {
    display: inline-flex;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    background: var(--color-secondary);
    font-size: 0.85rem;
    font-weight: 800;
}

.gallery-grid {
    display: grid;
    gap: 0.9rem;
    padding: 2rem 0 4rem;
}

.gallery-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 1.2rem;
    background: var(--color-white);
    box-shadow: 0 14px 35px rgba(58, 58, 58, 0.08);
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

figcaption {
    padding: 0.2rem 0.75rem 0.75rem;
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-section {
    padding-top: 1rem;
}

.notice {
    margin-bottom: 1rem;
}

.notice.success {
    border-color: #6f8f2d;
    background: #f3ffd8;
}

.notice.error {
    border-color: #ad3d3d;
    background: #fff0f0;
}

.contact-form-captcha {
    margin: 0 0 1rem;
}

.form-required-hint,
.form-field-hint {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.form-field-hint {
    margin-bottom: 0.35rem;
}

.field-required {
    color: #ad3d3d;
    font-weight: 700;
}

.field-label-hint {
    font-weight: 400;
    color: var(--color-muted);
    font-size: 0.9em;
}

.form-field-group {
    border: 0;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.form-field-group legend {
    padding: 0;
    color: var(--color-line);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

label {
    display: grid;
    gap: 0.4rem;
    color: var(--color-line);
    font-weight: 800;
}

[hidden] {
    display: none !important;
}

.term-wish-field:not(.term-wish-field--visible) {
    display: none !important;
}

input,
select,
textarea {
    width: 100%;
    border: 2px solid rgba(58, 58, 58, 0.22);
    border-radius: 0.85rem;
    padding: 0.8rem 0.9rem;
    background: var(--color-white);
    color: var(--color-text);
    font: inherit;
}

textarea {
    resize: vertical;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 500;
}

.checkbox input {
    width: auto;
    margin-top: 0.35rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.site-footer {
    margin-top: 4rem;
    background: var(--color-line);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
    padding: 3rem 0;
}

.footer-logo {
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--color-primary);
}

.site-footer h2 {
    color: var(--color-white);
    font-size: 1.15rem;
}

.site-footer .text-link {
    color: var(--color-white);
}


@media (min-width: 680px) {
    .card-image {
        max-width: 20%;
    }

    .card-body {
        padding-right: 22%;
    }

    .offer-card-grid .card-image {
        max-width: none;
    }

    .offer-card-grid .card-body {
        padding-right: 1.25rem;
    }

    .home-offer-card-grid .card-image {
        max-width: none;
    }

    .home-offer-card-grid .card-body {
        padding-right: 0;
    }

    /*
    .card-grid,
    .price-grid,
    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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


@media (min-width: 960px) {
    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.1rem;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .site-nav a {
        padding: 0.55rem 0.75rem;
        font-size: 0.95rem;
    }

    .nav-dropdown {
        position: relative;
        width: auto;
        align-items: flex-start;
    }

    /* Kein margin-top: sonst Lücke zwischen Label und Menü, :hover fällt auf .nav-dropdown weg. */
    .nav-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 50;
        min-width: 16rem;
        margin: 0;
        /* Abstand nach innen, Menü-Box startet bündig unter dem Label und deckt damit die Hit-Area ab. */
        padding: 0.5rem 0.35rem 0.4rem;
        border: 2px solid var(--color-line);
        border-left: 2px solid var(--color-line);
        border-radius: 1rem;
        background: var(--color-white);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(0);
        pointer-events: none;
        transition:
            opacity 0.12s ease,
            visibility 0.12s ease;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .nav-dropdown:hover .nav-dropdown-label,
    .nav-dropdown:focus-within .nav-dropdown-label,
    .nav-dropdown.active .nav-dropdown-label {
        background: var(--color-primary);
    }

    .nav-dropdown-label::after {
        content: " \25BE";
        font-size: 0.85em;
        font-weight: 800;
    }

    .nav-dropdown-menu a {
        border-radius: 0.6rem;
        font-size: 0.9rem;
        font-weight: 700;
    }

    .nav-dropdown-divider {
        margin: 0.3rem 0.45rem 0.25rem 0.45rem;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
        /* min-height: calc(100vh - 76px); */
        align-items: center;
        padding: 4rem 0;
    }

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

    .card-grid.home-offer-card-grid.home-offer-card-grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid.home-offer-card-grid.home-offer-card-grid-three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .cta-band {
        grid-template-columns: 1fr auto;
        padding: 2rem;
    }

    .l-grid-split {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(var(--l-split-aside-min, 260px), var(--l-split-aside-fr, 0.42fr));
        gap: var(--l-split-gap-desktop, 2rem);
    }

    .l-sticky-aside {
        position: sticky;
        top: 1rem;
    }

    .split-card {
        grid-template-columns: 1fr 0.8fr;
        padding: 1.5rem;
    }

    .split-card:nth-child(even) {
        grid-template-columns: 0.8fr 1fr;
    }

    .split-card:nth-child(even) img {
        order: -1;
    }

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

    .gallery-grid figure:nth-child(6n + 1),
    .gallery-grid figure:nth-child(6n + 6) {
        grid-column: span 2;
    }

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

    .card-image {
        max-width: 35%;
    }

    .card-body {
        padding-right: 38%;
    }

    .offer-card-grid .card-image {
        max-width: none;
    }

    .offer-card-grid .card-body {
        padding-right: 1.25rem;
    }

    .home-offer-card-grid .card-image {
        max-width: none;
    }

    .home-offer-card-grid .card-body {
        padding-right: 0;
    }
}

@media (min-width: 1180px) {
    .site-nav a {
        padding-inline: 0.95rem;
    }
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0 0.2em;
    margin: 0;
    cursor: pointer;
    color: var(--color-muted);
    font-size: 1em;
    line-height: 1;
    vertical-align: middle;
    transition: color 0.15s;
}

.copy-btn:hover,
.copy-btn:focus-visible {
    color: var(--color-primary);
    outline: none;
}
