:root {
    --cream: #fff5df;
    --sand: #ffd88a;
    --sun: #ff9d2e;
    --coral: #ff5f4d;
    --berry: #d9428f;
    --violet: #7f6bff;
    --sky: #d3cce6;
    --mint: #c8f0e8;
    --lagoon: #0f7783;
    --lagoon-deep: #11485a;
    --ink: #15252f;
    --muted: #5d6974;
    --white: #fffdf8;
    --line: rgba(21, 37, 47, 0.16);
    --shadow-soft: 0 20px 48px rgba(15, 35, 44, 0.1);
    --shadow-strong: 0 32px 86px rgba(15, 35, 44, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 216, 138, 0.58), transparent 18%),
        radial-gradient(circle at 86% 12%, rgba(217, 66, 143, 0.22), transparent 18%),
        radial-gradient(circle at 74% 32%, rgba(200, 240, 232, 0.86), transparent 16%),
        linear-gradient(180deg, #fff1d8 0%, #ffe2dd 18%, #ded2f3 42%, #c7eef0 72%, #f8f1e4 100%);
}

a {
    color: inherit;
}

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

.page-shell {
    width: min(1320px, calc(100% - 28px));
    margin: 14px auto 36px;
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 14px 18px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(90deg, rgba(217, 66, 143, 0.96), rgba(15, 119, 131, 0.95) 52%, rgba(255, 157, 46, 0.95));
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

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

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(76px, 8vw, 102px);
    min-width: 76px;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.brand-mark img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-text {
    display: grid;
    gap: 2px;
}

.brand-text strong,
.hero h1,
.page-hero h1,
.photo-copy h2,
.photo-copy h3,
.section-heading h2,
.overview-card h3,
.programme-item h3,
.feature-card h3,
.food-overview h3,
.food-card h4,
.partner-card h4,
.partners-group-head h3,
.group-copy h3,
.practical-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
}

.brand-text strong {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.brand-text small {
    color: rgba(255, 253, 248, 0.82);
    font-size: 0.82rem;
}

.menu-toggle {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.site-header.is-mobile-nav {
    grid-template-columns: 1fr auto;
}

.site-header.is-mobile-nav .menu-toggle {
    display: inline-flex;
}

.site-header.is-mobile-nav .site-nav {
    display: none;
}

.site-header.is-mobile-nav.menu-open .site-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
}

.site-header.is-mobile-nav.menu-open .site-nav a {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header.is-mobile-nav.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
}

.site-header.is-mobile-nav.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-mobile-nav.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.site-nav a,
.button,
.group-links a,
.partner-links a,
.footer-sponsor,
.overview-card {
    text-decoration: none;
}

.site-nav a {
    color: rgba(255, 253, 248, 0.88);
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #ffffff;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    font-weight: 700;
    transition: transform 180ms ease, filter 180ms ease;
}

.button-primary {
    background: linear-gradient(135deg, var(--sand), var(--sun));
    color: #4c2100;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.button:hover,
.group-links a:hover,
.partner-links a:hover {
    transform: translateY(-2px);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 360px);
    gap: 36px;
    align-items: end;
    margin-top: 20px;
    padding: clamp(28px, 4vw, 58px);
    min-height: 720px;
    background:
        linear-gradient(180deg, rgba(17, 72, 90, 0.18), rgba(17, 72, 90, 0.62)),
        linear-gradient(35deg, rgba(255, 95, 77, 0.14), rgba(217, 66, 143, 0.18), rgba(255, 216, 138, 0.12)),
        url("fond hero.jpg");
    background-position: center;
    background-size: cover;
    color: var(--white);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -60px;
    top: -50px;
    background: radial-gradient(circle, rgba(255, 216, 138, 0.88), rgba(255, 216, 138, 0));
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -80px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(200, 240, 232, 0.28), rgba(200, 240, 232, 0));
    pointer-events: none;
}

.eyebrow,
.photo-tag,
.time,
.overview-kicker,
.footer-sponsors-title {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.eyebrow,
.photo-tag,
.time {
    color: var(--sand);
}

.hero h1 {
    max-width: 10ch;
    margin: 0 0 16px;
    font-size: clamp(3.4rem, 7vw, 6.8rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.hero-text,
.hero-panel-meta,
.programme-feature-copy p:last-child,
.group-copy p,
.section-heading p,
.programme-item p,
.associations-copy p,
.feature-card p,
.food-overview p,
.food-card p,
.partner-place,
.partner-meta,
.practical-card p,
.page-hero p:last-child {
    line-height: 1.75;
}

.hero-text {
    max-width: 58ch;
    margin: 0;
    color: rgba(255, 253, 248, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-panel {
    position: relative;
    display: grid;
    gap: 16px;
    align-content: end;
    padding: 22px 22px 22px 120px;
    border: 2px dashed rgba(255, 253, 248, 0.28);
    background: rgba(17, 72, 90, 0.26);
}

.hero-panel::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.98) url("poulpe-limousicolac.png") center/78% no-repeat;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.hero-panel-logo {
    display: none;
}

.hero-panel-meta {
    color: rgba(255, 253, 248, 0.86);
}

.hero-facts {
    display: grid;
    gap: 12px;
    margin: 0;
}

.hero-facts div {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 253, 248, 0.18);
}

.hero-facts dt {
    margin-bottom: 6px;
    color: rgba(255, 253, 248, 0.64);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-facts dd {
    margin: 0;
    font-weight: 700;
}

.photo-ribbon,
.overview-grid,
.groups-grid,
.association-cards,
.food-grid,
.partners-grid,
.practical-grid {
    display: grid;
    gap: 18px;
}

.photo-ribbon {
    grid-template-columns: 1.35fr 1fr 1fr;
    margin-top: 18px;
}

.photo-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform: rotate(-1deg);
}

.photo-card-large {
    min-height: 420px;
    transform: rotate(0deg);
}

.photo-card:nth-child(2) {
    transform: rotate(1.2deg);
}

.photo-card:nth-child(3) {
    transform: rotate(-1.5deg);
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 72, 90, 0.05), rgba(17, 72, 90, 0.7));
}

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

.photo-copy {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    color: var(--white);
}

.photo-copy h2,
.photo-copy h3 {
    max-width: 13ch;
    margin: 0;
    line-height: 0.96;
}

.photo-copy h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.photo-copy h3 {
    font-size: 1.55rem;
}

.subpage-main {
    display: grid;
    gap: 20px;
}

.page-hero {
    margin-top: 20px;
    padding: clamp(30px, 4vw, 48px) 0 10px;
    border-top: 6px solid var(--coral);
}

.page-hero h1 {
    max-width: 13ch;
    margin: 0 0 12px;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.section {
    margin-top: 10px;
    padding: clamp(26px, 3.5vw, 42px) 0;
    border-top: 1px solid var(--line);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

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

.overview-card {
    display: grid;
    gap: 10px;
    min-height: 220px;
    padding: 22px 0 0;
    border-top: 3px solid var(--line);
    color: var(--ink);
    transition: transform 180ms ease, color 180ms ease;
}

.overview-kicker {
    color: var(--berry);
}

.overview-card h3 {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1;
}

.overview-card:hover {
    transform: translateY(-4px);
}

.overview-card:nth-child(1) { border-top-color: var(--sun); }
.overview-card:nth-child(2) { border-top-color: var(--berry); }
.overview-card:nth-child(3) { border-top-color: var(--lagoon); }
.overview-card:nth-child(4) { border-top-color: #8fe13a; }
.overview-card:nth-child(5) { border-top-color: var(--coral); }
.overview-card:nth-child(6) { border-top-color: var(--violet); }

.programme-layout,
.associations-layout,
.food-layout {
    display: grid;
    gap: 24px;
}

.programme-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.programme-list {
    display: grid;
}

.programme-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.programme-item:first-child {
    border-top: 0;
}

.programme-item h3,
.feature-card h3,
.food-card h4,
.practical-card h3 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    line-height: 1;
}

.programme-feature {
    overflow: hidden;
    background: linear-gradient(180deg, var(--berry), var(--lagoon-deep));
    color: var(--white);
}

.programme-feature img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.programme-feature-copy {
    padding: 22px;
}

.section-programme,
.section-groups,
.section-associations,
.section-food,
.section-partners,
.section-practical {
    color: var(--white);
}

.section-programme,
.section-groups,
.section-associations,
.section-food,
.section-partners,
.section-practical {
    background: linear-gradient(135deg, rgba(217, 66, 143, 0.96), rgba(15, 119, 131, 0.95) 58%, rgba(255, 157, 46, 0.94));
    padding: clamp(28px, 4vw, 46px);
    box-shadow: var(--shadow-strong);
}

.section-programme .section-heading,
.section-groups .section-heading,
.section-associations .section-heading,
.section-food .section-heading,
.section-partners .section-heading,
.section-practical .section-heading {
    margin-bottom: 32px;
}

.section-programme .section-heading h2,
.section-programme .section-heading p,
.section-groups .section-heading h2,
.section-groups .section-heading p,
.section-associations .section-heading h2,
.section-associations .section-heading p,
.section-food .section-heading h2,
.section-food .section-heading p,
.section-partners .section-heading h2,
.section-partners .section-heading p,
.section-practical .section-heading h2,
.section-practical .section-heading p {
    color: var(--white);
}

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

.group-card {
    display: grid;
    gap: 16px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 253, 248, 0.18);
}

.group-card-featured {
    grid-column: span 3;
    grid-template-columns: minmax(220px, 280px) 1fr;
    align-items: center;
    gap: 24px;
}

.group-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 18px;
    background: rgba(255, 253, 248, 0.94);
}

.group-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.group-copy h3 {
    margin: 0 0 10px;
    font-size: 2rem;
    line-height: 0.96;
}

.group-copy p {
    color: rgba(255, 253, 248, 0.84);
}

.group-links,
.partner-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.group-links a,
.partner-links a {
    min-height: 38px;
    padding: 10px 14px;
    background: rgba(255, 253, 248, 0.16);
    color: var(--white);
    font-weight: 700;
}

.group-placeholder-mark,
.food-count,
.partner-tier {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.group-placeholder-mark {
    justify-self: start;
    background: #b8f14e;
    color: #17312c;
}

.associations-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.association-points {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.association-points li {
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.section-associations .associations-copy p,
.section-associations .feature-card p {
    color: rgba(255, 253, 248, 0.86);
}

.section-associations .association-points li,
.section-associations .feature-card {
    border-top-color: rgba(255, 253, 248, 0.18);
}

.association-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
}

.associations-directory {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 36px;
    margin-top: 36px;
}

.association-theme {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 253, 248, 0.22);
}

.association-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.association-list li {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 253, 248, 0.12);
    color: rgba(255, 253, 248, 0.88);
    line-height: 1.65;
}

.association-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.association-list strong {
    color: var(--white);
}

.feature-card-highlight {
    padding-left: 14px;
    border-left: 6px solid var(--coral);
    border-top-color: rgba(255, 95, 77, 0.22);
}

.food-layout {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
}

.food-overview {
    padding: 24px 0 0;
    border-top: 4px solid var(--sun);
}

.section-food .food-overview p,
.section-food .food-card p {
    color: rgba(255, 253, 248, 0.86);
}

.section-food .food-card {
    border-top-color: rgba(255, 253, 248, 0.18);
}

.food-overview h3 {
    margin: 0 0 10px;
    font-size: 1.9rem;
    line-height: 0.98;
}

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

.food-card {
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
}

.food-count {
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--lagoon), var(--berry));
    color: var(--white);
}

.food-card-wide {
    grid-column: span 2;
}

.partners-groups {
    display: grid;
    gap: 34px;
}

.partners-group {
    display: grid;
    gap: 18px;
}

.partners-group-head h3,
.partner-card h4 {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
}

.partners-group-head h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 0.98;
}

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

.partners-grid-local {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-card {
    display: grid;
    gap: 14px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 253, 248, 0.16);
    color: rgba(255, 253, 248, 0.92);
}

.partner-card-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.partner-logo-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 64px;
    padding: 0 16px;
    background: rgba(255, 253, 248, 0.98);
    color: var(--lagoon-deep);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partner-logo-image {
    width: min(100%, 180px);
    min-width: 120px;
    height: 74px;
    padding: 8px 12px;
}

.partner-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-tier {
    border: 1px solid rgba(255, 253, 248, 0.26);
    color: rgba(255, 253, 248, 0.76);
}

.partner-place,
.partner-meta {
    margin: 0;
}

.partner-meta {
    display: grid;
    gap: 6px;
    padding: 0;
    list-style: none;
    color: rgba(255, 253, 248, 0.72);
}

.section-partners .partner-card,
.section-partners .partner-links a {
    border-top-color: rgba(255, 253, 248, 0.18);
}

.section-practical {
    background:
        linear-gradient(135deg, rgba(217, 66, 143, 0.9), rgba(15, 119, 131, 0.88) 58%, rgba(255, 157, 46, 0.9)),
        url("sav-fond_infos_pratiques-stylized.jpg");
    background-position: center;
    background-size: cover;
}

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

.practical-card {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 253, 248, 0.18);
}

.section-practical .practical-card p {
    color: rgba(255, 253, 248, 0.86);
}

.site-footer {
    display: grid;
    gap: 16px;
    margin-top: 26px;
    padding: 18px 0 0;
    border-top: 3px solid rgba(255, 253, 248, 0.18);
    background: linear-gradient(90deg, rgba(17, 72, 90, 0.92), rgba(217, 66, 143, 0.78));
    color: rgba(255, 253, 248, 0.9);
}

.footer-sponsors {
    display: grid;
    gap: 10px;
    padding: 0 18px;
}

.footer-sponsors-title {
    color: rgba(255, 253, 248, 0.72);
}

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

.footer-sponsor {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    max-width: 170px;
    padding: 8px 10px;
    background: rgba(255, 253, 248, 0.12);
}

.footer-sponsor img {
    width: auto;
    max-width: 100%;
    height: 46px;
    object-fit: contain;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0 18px 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 253, 248, 0.12);
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.footer-link svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.site-footer p,
.site-footer a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 1120px) {
    .hero,
    .photo-ribbon,
    .programme-layout,
    .associations-layout,
    .food-layout {
        grid-template-columns: 1fr;
    }

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

    .group-card-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .association-cards,
    .partners-grid,
    .food-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .associations-directory {
        grid-template-columns: 1fr;
    }

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

    .hero {
        min-height: 620px;
    }
}

@media (max-width: 900px) {
    .overview-grid,
    .groups-grid,
    .association-cards,
    .partners-grid,
    .partners-grid-local,
    .food-grid,
    .practical-grid {
        grid-template-columns: 1fr;
    }

    .food-card-wide {
        grid-column: auto;
    }

    .programme-item {
        grid-template-columns: 1fr;
    }

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

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 18px, 1320px);
        margin-top: 8px;
    }

    .site-header {
        top: 8px;
    }

    .hero h1,
    .page-hero h1 {
        max-width: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-panel {
        padding-left: 22px;
    }

    .hero-panel::before {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 8px;
    }

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