@font-face {
    font-family: 'Banerton';
    src: url('/fonts/Banerton.otf') format('opentype');
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

/* Base & tokens */
:root {
    --color-green-900: #0f2e22;
    --color-green-800: #16402f;
    --color-green-700: #1d4f3a;
    --color-yellow: #f5b914;
    --color-yellow-dark: #d9a30f;
    --color-black: #14140f;
    --color-ink: #23231d;
    --color-gray-600: #6b6b63;
    --color-gray-300: #dcdcd6;
    --color-gray-200: #e9e9e4;
    --color-gray-100: #f5f5f1;
    --color-white: #ffffff;

    --font-heading: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

    --container-width: 1160px;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-full: 999px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--color-white);
    color: var(--color-ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin: 0;
    color: var(--color-black);
}

p {
    margin: 0;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 24px;
}

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

.skip-link {
    position: absolute;
    left: 24px;
    top: -60px;
    background: var(--color-black);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    z-index: 1000;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 12px;
}

:focus-visible {
    outline: 3px solid var(--color-yellow);
    outline-offset: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

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

.btn--primary:hover {
    background: var(--color-green-700);
}

.btn--outline {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-green-900);
}

/* Site header */
.site-header {
    border-bottom: 1px solid var(--color-gray-200);
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 14px;
}

.site-header__brand img {
    height: 48px;
    width: auto;
}

.site-nav ul {
    display: flex;
    gap: 32px;
}

.site-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color-ink);
    padding-block: 6px;
    border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--color-green-900);
    border-color: var(--color-yellow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 0;
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    height: 2px;
    background: var(--color-black);
    border-radius: 2px;
}

/* Hero */
.hero {
    padding-top: 32px;
}

.hero__panel {
    position: relative;
    background: linear-gradient(160deg, var(--color-green-800), var(--color-green-900));
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 28px;
}

.hero__grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 15 tracks: the 11 face columns plus an empty gutter after columns 2, 5, 6 and 9. */
.hero__row {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    gap: 8px;
}

.hero__gap {
    aspect-ratio: 1 / 1;
}

.hero__tile {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .55);
}

.hero__tile .avatar-photo,
.hero__tile .avatar-placeholder {
    width: 100%;
    height: 100%;
}

.hero__tile .avatar-placeholder svg {
    width: 55%;
    height: 55%;
}

.hero__lockup {
    position: absolute;
    top: 50%;
    left: 28px;
    right: 28px;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
}

.hero__lockup img {
    flex: none;
    height: 56px;
    width: auto;
}

.hero__meta-label {
    flex: 1;
    text-align: left;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 14px;
}

.hero__meta-year {
    flex: 1;
    text-align: right;
    font-weight: 800;
    font-size: 20px;
    color: var(--color-yellow);
}

/* Sections */
.section {
    padding-block: 64px;
}

.section--alt {
    background: var(--color-gray-100);
}

.section-heading {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.section-heading__bar {
    flex: none;
    width: 6px;
    border-radius: var(--radius-full);
    background: var(--color-yellow);
}

.section-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-lede {
    max-width: 760px;
    color: var(--color-ink);
}

.section-lede+.section-lede {
    margin-top: 16px;
}

.section-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.section-footer {
    margin-top: 40px;
    text-align: center;
}

/* Song / anthem card */
.song-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    gap: 48px;
    background: var(--color-yellow);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.song-card__text {
    color: var(--color-green-900);
}

.song-card__eyebrow {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--color-green-900);
    opacity: .7;
}

.song-card__title {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    font-size: clamp(28px, 3.2vw, 44px);
}

.song-card__text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.song-card__text .btn {
    margin-top: 8px;
}

.video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-black);
}

.video-embed__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .8;
}

.video-embed__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    padding: 0;
    border: none;
    background: none;
    color: var(--color-yellow);
    cursor: pointer;
    transition: transform .15s ease;
}

.video-embed__play:hover,
.video-embed__play:focus-visible {
    transform: scale(1.08);
}

.video-embed__play svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35));
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 780px) {
    .song-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }
}

/* Personnalite cards */
.personnalites-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.personnalites-grid--featured {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .personnalites-grid--featured {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .personnalites-grid--featured {
        grid-template-columns: 1fr;
    }
}

.personnalite-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.personnalite-card__photo {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    background: var(--color-gray-300);
    overflow: hidden;
}

.avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.avatar-placeholder svg {
    width: 34%;
    height: 34%;
}

.personnalite-card__name {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.personnalite-card__name-text {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-ink);
}

.personnalite-card__lastname {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-black);
}

.personnalite-card__arrow {
    flex: none;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-ink);
}

.personnalite-card__role {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--color-gray-600);
}

/* Footer */
.site-footer {
    background: var(--color-green-900);
    color: rgba(255, 255, 255, .85);
    margin-top: 80px;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    padding-block: 56px 40px;
}

.site-footer__brand img {
    height: 54px;
    width: auto;
    margin-bottom: 16px;
}

.site-footer__brand p {
    max-width: 320px;
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
}

.site-footer h2 {
    color: var(--color-white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 16px;
}

.site-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__col a {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
}

.site-footer__col a:hover {
    color: var(--color-yellow);
}

.site-footer__contacts li {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 2px;
}

.site-footer__contacts span {
    color: rgba(255, 255, 255, .75);
}

.site-footer__contacts em {
    font-style: normal;
    color: rgba(255, 255, 255, .5);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
}

.site-footer__bottom-inner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.site-footer__bottom-inner a:hover {
    color: var(--color-white);
}

/* Page header (listing / detail / about / contact) */
.page-header {
    background: var(--color-green-900);
    color: var(--color-white);
    padding-block: 56px;
}

.page-header .section-title {
    color: var(--color-white);
}

.page-header p {
    max-width: 640px;
    margin-top: 12px;
    color: rgba(255, 255, 255, .75);
}

.breadcrumb {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 10px;
}

.breadcrumb a:hover {
    color: var(--color-yellow);
}

/* Personnalite profile (detail page) */
.profile-hero {
    display: grid;
    grid-template-columns: minmax(360px, 43%) 1fr;
    height: calc(100vh - 80px);
    min-height: 480px;
    background: var(--color-green-900);
    overflow: hidden;
}

.profile-hero__info {
    display: flex;
    align-items: center;
    padding: 32px 48px;
    min-height: 0;
}

.profile-hero__info-inner {
    display: flex;
    flex-direction: column;
    max-width: 480px;
    max-height: 100%;
}

.profile-hero__back {
    flex: none;
    display: inline-block;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.profile-hero__back:hover {
    color: var(--color-yellow);
}

.profile-hero__name {
    flex: none;
    margin: 0 0 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-yellow);
    font-size: clamp(32px, 4vw, 60px);
    line-height: .95;
}

.profile-hero__name span {
    display: block;
}

.profile-hero__bio {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 8px;
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    line-height: 1.6;
}

.profile-hero__bio strong {
    color: var(--color-yellow);
    font-weight: 700;
}

.profile-hero__bio em {
    color: var(--color-white);
    font-weight: 700;
    font-style: normal;
}

.profile-hero__share {
    flex: none;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.profile-hero__share-label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.profile-hero__share-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-hero__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-body);
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.profile-hero__share-btn svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.profile-hero__share-btn:hover,
.profile-hero__share-btn:focus-visible {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-green-900);
}

.profile-hero__share-btn--copy {
    width: auto;
    height: 38px;
    padding: 0 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.profile-hero__share-btn--copy.is-copied {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-green-900);
}

.profile-hero__logo {
    flex: none;
    align-self: flex-start;
    height: 36px;
    width: auto;
    margin-top: 20px;
}

.profile-hero__photo {
    overflow: hidden;
    background: var(--color-green-700);
}

.profile-hero__photo .avatar-photo,
.profile-hero__photo .avatar-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-hero__photo .avatar-placeholder svg {
    width: 22%;
    height: 22%;
}

@media (max-width: 900px) {
    .profile-hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .profile-hero__info {
        min-height: auto;
    }

    .profile-hero__info-inner {
        max-height: none;
    }

    .profile-hero__bio {
        overflow-y: visible;
    }

    .profile-hero__photo {
        aspect-ratio: 4 / 5;
    }

    .profile-hero__info {
        padding: 40px 24px;
    }
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-green-900);
}

.back-link:hover {
    color: var(--color-yellow-dark);
}

/* Piliers (about page) */
.piliers-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.pilier-card {
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    padding: 28px 24px;
}

.pilier-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--color-green-900);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pilier-card__icon svg {
    width: 22px;
    height: 22px;
}

.pilier-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.pilier-card p {
    font-size: 14px;
    color: var(--color-gray-600);
}

/* Contact page */
.contact-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.contact-card {
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
}

.contact-card h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--color-gray-600);
    margin-bottom: 10px;
}

.contact-card p {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
}

.contact-card p.is-placeholder {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: italic;
    color: var(--color-gray-600);
}

/* Responsive */
@media (max-width: 900px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

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

    .detail__photo {
        max-width: 280px;
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-gray-200);
        max-height: 0;
        overflow: hidden;
        transition: max-height .2s ease;
    }

    .site-nav.is-open {
        max-height: 320px;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 24px 20px;
    }

    .site-nav a {
        display: block;
        padding-block: 12px;
    }

    .hero__grid,
    .hero__row {
        gap: 4px;
    }

    .hero__lockup {
        left: 16px;
        right: 16px;
        gap: 8px;
    }

    .hero__lockup img {
        height: 28px;
    }

    .hero__meta-label {
        font-size: 11px;
    }

    .hero__meta-year {
        font-size: 15px;
    }

    .section-intro {
        align-items: flex-start;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
    }
}

/* Admin */
.admin-bar {
    background: var(--color-black);
}

.admin-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-bar__links {
    display: flex;
    gap: 20px;
}

.admin-bar__links a {
    color: rgba(255, 255, 255, .8);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
}

.admin-bar__links a:hover {
    color: var(--color-yellow);
}

.admin-alert {
    margin-top: 24px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
}

.admin-alert--success {
    background: #e4f5ea;
    color: #1d6b3f;
}

.admin-alert--error {
    background: #fbe7e7;
    color: #a12626;
}

.admin-hint {
    margin-top: 20px;
    padding: 14px 18px;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.admin-hint code,
.admin-table code {
    background: var(--color-gray-200);
    color: var(--color-ink);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .95em;
}

.admin-table-wrap {
    margin-top: 32px;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th {
    text-align: left;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--color-gray-600);
    padding: 10px 12px;
    border-bottom: 2px solid var(--color-gray-200);
}

.admin-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--color-gray-200);
    vertical-align: middle;
}

.admin-table__photo {
    width: 56px;
}

.admin-avatar {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-gray-300);
}

.admin-avatar .avatar-placeholder {
    color: var(--color-white);
    background: var(--color-green-700);
}

.admin-table__role {
    max-width: 320px;
    color: var(--color-gray-600);
}

.admin-table__actions {
    display: flex;
    gap: 14px;
    align-items: center;
    white-space: nowrap;
}

.admin-table__actions a {
    font-weight: 600;
    color: var(--color-green-900);
}

.admin-table__actions a:hover {
    color: var(--color-yellow-dark);
}

.admin-table__delete {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    font-weight: 600;
    color: #a12626;
    cursor: pointer;
}

.admin-table__delete:hover {
    text-decoration: underline;
}

.admin-form-section {
    padding-top: 40px;
}

.admin-form {
    max-width: 560px;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-form__field label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
}

.admin-form__field input[type="text"],
.admin-form__field input[type="number"],
.admin-form__field input[type="password"],
.admin-form__field textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 10px 14px;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
}

.admin-form__field textarea {
    resize: vertical;
}

.admin-form__field p {
    font-size: 12px;
    color: var(--color-gray-600);
}

.admin-form__field ul {
    font-size: 13px;
    color: #a12626;
    padding-left: 18px;
}

.admin-form__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.admin-current-photo {
    margin-top: 24px;
}

.admin-current-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.admin-login {
    display: flex;
    justify-content: center;
}

.admin-login__card {
    width: 100%;
    max-width: 380px;
}

.admin-login__card .admin-form {
    max-width: none;
}

/* Audio consent player */
.audio-consent {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 200;
    width: 172px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.audio-consent__cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.audio-consent__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-green-900);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    transition: background-color .15s ease, transform .15s ease;
}

.audio-consent__btn:hover {
    background: var(--color-green-700);
    transform: translateY(-1px);
}

.audio-consent__bars {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 14px;
}

.audio-consent__bars span {
    display: block;
    width: 3px;
    background: var(--color-yellow);
    border-radius: 2px;
    height: 4px;
}

.audio-consent__btn.is-playing .audio-consent__bars span {
    animation: audio-consent-bar .9s ease-in-out infinite;
}

.audio-consent__bars span:nth-child(2) {
    animation-delay: .15s;
}

.audio-consent__bars span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes audio-consent-bar {
    0%, 100% {
        height: 4px;
    }

    50% {
        height: 14px;
    }
}

@media (max-width: 720px) {
    .audio-consent {
        right: 14px;
        bottom: 14px;
        width: 156px;
        gap: 8px;
    }

    .audio-consent__btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}