:root {
    --bg: #ffffff;
    --muted: #f5f7fa;
    --text: #1d1d1f;
    --border: #e5e7eb;
    /* aus Logo abgeleitet */
    --brand-blue: #2e86c1;
    --brand-green: #2ecc71;
    --brand-orange: #f39c12;
    --brand-red: #e74c3c;
    --accent: var(--brand-green);
    --accent-contrast: #ffffff;
    --shadow: 0 8px 24px rgba(0, 0, 0, .08);
    --header-h: 64px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

main {
    flex: 1
}

a {
    color: #2e3ed7;
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

/* A11y */
.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    padding: .5rem;
    background: var(--accent);
    color: var(--accent-contrast)
}

/* Buttons */
.btn {
    display: inline-block;
    padding: .7rem 1.1rem;
    border-radius: .9rem;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform .06s ease, box-shadow .2s ease
}

.btn:active {
    transform: scale(.98)
}

.btn.cta {
    background: var(--accent);
    color: var(--accent-contrast);
    border-color: var(--accent);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(46, 204, 113, .35)
}

.btn.cta:hover {
    filter: brightness(.95)
}

.btn.block {
    display: block;
    text-align: center
}

/* Layout Container */
main,
.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: var(--bg);
    box-shadow: var(--shadow)
}

.topbar {
    /* volle Breite sichtbar */
    z-index: 1400;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .6rem 1rem;
    border-bottom: 1px solid var(--border);
    background: #fff;
    justify-content: space-between;
}

.logo img {
    height: 55px;
    width: auto
}

.nav-desktop {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem
}

.nav-desktop ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0
}

.nav-desktop a {
    padding: .35rem .25rem;
    font-size: 19px;
    color: black;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 2px solid transparent
}

.nav-desktop a:hover {
    border-bottom-color: var(--brand-blue)
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    border-radius: .6rem;
    background: #fff;
    cursor: pointer;

    position: relative;
    z-index: 2000;
}

.hamburger .line {
    width: 24px;
    height: 2px;
    background: #333;
    transition: transform .25s ease, opacity .25s ease;
}

.hamburger .line+.line {
    margin-top: 6px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    margin: 4px auto
}

body.nav-open .hamburger .line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

body.nav-open .hamburger .line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* ===== MOBILE TOPBAR (Overlay) ===== */
.nav-mobile {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    display: none;
    z-index: 1400;
    overflow-y: auto;
    padding-top: .5rem;
}

.nav-mobile.open {
    display: block;
}

.nav-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Einträge */
.nav-mobile li {
    border-bottom: 1px solid var(--border);
}

/* Links */
.nav-mobile a {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #333;
    transition: background .2s ease, padding-left .2s ease;
}

.nav-mobile a:active,
.nav-mobile a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 1.75rem;
}

/* CTA */
.nav-mobile .btn.cta {
    margin: .75rem 0;
    display: block;
    text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--muted);
    border-top: 1px solid var(--border)
}

.site-footer .footer-inner {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 2fr 1fr 1fr;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem
}

.site-footer .footer-col h3,
.site-footer .footer-col h4 {
    margin: 0 0 .5rem
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.site-footer li {
    margin: .25rem 0
}

.site-footer .footer-base {
    border-top: 1px solid var(--border);
    padding: .75rem 1rem;
    text-align: center
}

/* ===== SEITEN-PEPP (dezent bunt) ===== */
.hero {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(46, 134, 193, .08), rgba(46, 204, 113, .08));
    border-bottom: 1px solid var(--border)
}

h1,
h2 {
    position: relative
}

h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 4px;
    margin-top: .4rem;
    background: var(--brand-blue)
}

.section-green h2::after {
    background: var(--brand-green)
}

.section-orange h2::after {
    background: var(--brand-orange)
}

.section-red h2::after {
    background: var(--brand-red)
}

/* ===== ADVENT ===== */
.advent .calendar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .5rem;
}

.advent .day {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: .7rem;
    background: #fff
}

.advent .day.locked {
    opacity: .5
}

/* ===== COOKIE-BANNER ===== */
.cookie-banner {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    z-index: 9999
}

.cookie-banner .cookie-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .9rem;
    box-shadow: var(--shadow);
    max-width: 560px;
    padding: 1rem 1.25rem
}

.cookie-banner p {
    margin: 0 0 .75rem
}

.cookie-actions {
    text-align: right
}

@media (min-width: 981px) {
    .hamburger {
        display: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width:980px) {

    /* Desktop-Navi aus, CTA im Header ausblenden; Hamburger an */
    .nav-desktop {
        display: none
    }

    .site-header .btn.cta {
        display: none
    }

    .hamburger {
        display: flex
    }
}

@media (max-width:900px) {
    .site-footer .footer-inner {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:760px) {
    .site-footer .footer-inner {
        grid-template-columns: 1fr
    }
}

/* Scroll sperren, wenn Mobile-Menü offen */
body.nav-open {
    overflow: hidden
}

/* ===== Home-Intro Box ===== */
.home-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 1.25rem
}

@media (max-width:980px) {
    .home-intro {
        grid-template-columns: 1fr
    }
}

.lead {
    font-size: 1.1rem;
    margin-top: .25rem;
    color: #333
}

.nice-list {
    padding-left: 1.1rem
}

.nice-list li {
    margin: .25rem 0
}

.nice-list.two {
    columns: 2;
    column-gap: 2rem
}

@media (max-width:760px) {
    .nice-list.two {
        columns: 1
    }
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .9rem;
    box-shadow: var(--shadow);
    padding: 1rem
}

.card h4 {
    margin-top: 0
}

.card .vr {
    margin: .75rem 0;
    color: #555
}

.info-note {
    margin-top: 1rem;
    background: #fff4e6;
    border: 1px solid #ffe0b2;
    border-radius: .7rem;
    padding: .75rem
}

/* ===== Artikel (2 Spalten) ===== */
.articles .grid.two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem
}

@media (max-width:900px) {
    .articles .grid.two-cols {
        grid-template-columns: 1fr
    }
}

.article.card {
    padding: 0;
    overflow: hidden
}

.article .thumb {
    height: 180px;
    background: #eef2f7 center/cover no-repeat
}

.article .content {
    padding: 1rem
}

.about-intro .lead {
    font-size: 1.1rem;
    margin: .5rem 0 1rem
}

.about-why .callout {
    margin-top: 1rem
}

.about-lists .cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

@media (max-width:760px) {
    .about-lists .cols {
        grid-template-columns: 1fr
    }
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: .75rem
}

@media (max-width:1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:640px) {
    .team-grid {
        grid-template-columns: 1fr
    }
}

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1rem;
    text-align: center
}

.team-card .photo {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto .5rem;
    background: #eef2f7
}

.team-card h3 {
    margin: .25rem 0 .25rem
}

.badge {
    display: inline-block;
    margin: .25rem 0;
    padding: .25rem .5rem;
    border-radius: 999px;
    font-size: .9rem;
    color: #fff
}

.role-chair {
    background: var(--brand-blue)
}

.role-vice {
    background: var(--brand-green)
}

.role-treasurer {
    background: var(--brand-orange)
}

.role-secretary {
    background: var(--brand-red)
}

.team-card .contact {
    font-size: .95rem;
    color: #333
}

.advent-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: .5rem
}

.advent-header h1 {
    margin: 0
}

.advent-header .year-switch {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .5rem
}

.advent-header select {
    padding: .4rem .6rem;
    border: 1px solid var(--border);
    border-radius: .5rem;
    background: #fff
}

.advent .calendar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .65rem;
    margin: 1rem 0;
}

@media (max-width:760px) {
    .advent .calendar {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (max-width:460px) {
    .advent .calendar {
        grid-template-columns: repeat(3, 1fr)
    }
}

.advent .day {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: #fff;
    padding: 1rem .75rem;
    min-height: 86px;
    text-align: left;
    box-shadow: var(--shadow);
}

.advent .day .num {
    font-weight: 800;
    font-size: 1.2rem;
    display: block
}

.advent .day .lot {
    display: block;
    margin-top: .25rem;
    font-weight: 700
}

.advent .day .prize {
    display: block;
    color: #333
}

.advent .day.locked {
    opacity: .5;
    filter: grayscale(.25)
}

/* Logo-Farben im Wechsel */
.advent .day.c1 {
    border-color: #2e86c133;
    background: linear-gradient(180deg, #2e86c11a, #fff)
}

.advent .day.c2 {
    border-color: #2ecc7133;
    background: linear-gradient(180deg, #2ecc711a, #fff)
}

.advent .day.c3 {
    border-color: #f39c1233;
    background: linear-gradient(180deg, #f39c121a, #fff)
}

.advent .day.c4 {
    border-color: #e74c3c33;
    background: linear-gradient(180deg, #e74c3c1a, #fff)
}

/* Boxen */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1rem
}

.advent .check {
    margin: 1rem 0
}

.advent .check-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .5rem;
    align-items: start
}

.advent .check-form label {
    grid-column: 1 / -1
}

.advent .check-form input {
    padding: .6rem .75rem;
    border: 1px solid var(--border);
    border-radius: .6rem
}

.advent .check .result {
    margin-top: .5rem
}

.advent-info p {
    margin: .35rem 0
}

.small {
    font-size: .9rem
}

.muted {
    color: #666
}

/* Gewinnliste */
.winlist {
    margin-top: 1rem
}

.winlist>summary {
    cursor: pointer;
    list-style: none
}

.winlist>summary::-webkit-details-marker {
    display: none
}

.winlist>summary {
    display: flex;
    align-items: center;
    gap: .5rem
}

table.wins {
    width: 100%;
    border-collapse: collapse;
    margin-top: .5rem
}

table.wins th,
table.wins td {
    border-top: 1px solid var(--border);
    padding: .5rem .4rem;
    text-align: left
}

table.wins thead th {
    border-top: 0;
    color: #333
}

.advent-info.media {
    /*display: grid;*/
    grid-template-columns: 220px 1fr;
    gap: 1rem;
    align-items: stretch
}

.advent-info .media-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .75rem
}

.advent-info .rules {
    margin-top: .5rem;
    color: #444
}

@media (max-width:760px) {
    .advent-info.media {
        grid-template-columns: 1fr
    }

    .advent-info .media-img img {
        height: auto
    }
}

.legal h1 {
    margin-top: 0;
}

.legal h2 {
    margin-top: 1.25rem;
}

.legal h3 {
    margin-top: .9rem;
}

.legal address {
    font-style: normal;
    line-height: 1.6;
}

.legal .small {
    font-size: .9rem;
}

.years-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.year-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    text-decoration: none;
}

.year-card .year {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.year-card .hint {
    margin-top: .35rem;
    color: #555;
}

.months-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width:900px) {
    .months-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .months-grid {
        grid-template-columns: 1fr;
    }
}

.month-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 1rem;
}

.month-card .month-name {
    font-weight: 700;
}

.month-card .counts {
    margin-top: .35rem;
    color: #333;
}

.month-card .badge {
    display: inline-block;
    min-width: 1.5rem;
    text-align: center;
    padding: .1rem .4rem;
    border-radius: .6rem;
    background: var(--brand-blue);
    color: #fff;
    font-size: .85rem;
    margin-right: .25rem;
}

.month-card .badge.alt {
    background: var(--brand-green);
}

.month-card .sep {
    margin: 0 .35rem;
    color: #999;
}

.month-card.disabled {
    opacity: .5;
    pointer-events: none;
}

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: .5rem;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

/* Reuse Artikel-Grid aus Startseite */
.articles .grid.two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width:900px) {
    .articles .grid.two-cols {
        grid-template-columns: 1fr;
    }
}

.article.card {
    padding: 0;
    overflow: hidden;
}

.article .thumb {
    height: 180px;
    background: #eef2f7 center/cover no-repeat;
}

.article .content {
    padding: 1rem;
}

.contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

@media (max-width:900px) {
    .contact-page {
        grid-template-columns: 1fr;
    }
}

.alert {
    padding: .75rem 1rem;
    border-radius: .6rem;
    margin: .5rem 0 1rem;
}

.alert.error {
    background: #fde8e8;
    border: 1px solid #f5c2c0;
    color: #7a1f1a;
}

.alert.success {
    background: #e6f7ec;
    border: 1px solid #b8e6c6;
    color: #1f6b3a;
}

.card h2 {
    margin-top: 0;
}

.card .lead {
    margin: .25rem 0 1rem;
    color: #333;
}

/* Bankdaten */
.bank .kv {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: .5rem .75rem;
    align-items: center;
    margin: .35rem 0;
}

.bank .k {
    color: #555;
}

.bank .v code {
    font-weight: 700;
}

.bank .copy {
    margin-left: .5rem;
    padding: .35rem .6rem;
    border: 1px solid var(--border);
    border-radius: .5rem;
    background: #fff;
    cursor: pointer;
}

.donate-cta {
    margin: .5rem 0 1rem;
}

/* Formular */
.form label {
    display: block;
    margin: .5rem 0;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: .65rem .75rem;
    border: 1px solid var(--border);
    border-radius: .6rem;
    font: inherit;
}

.form .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

@media (max-width:640px) {
    .form .grid-2 {
        grid-template-columns: 1fr;
    }
}

.form .check {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-top: .25rem;
}

.form .actions {
    margin-top: .75rem;
    text-align: right;
}

/* Zusatzkarten */
.contact-card {
    margin-top: 1rem;
}

.btn+.btn {
    margin-left: .6rem
}

.actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

.ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

@media (max-width:760px) {
    .btn+.btn {
        margin-left: 0
    }

    .ctas {
        gap: .75rem
    }
}

:root {
    --radius: .7rem;
    --focus: #93c5fd;
}

input,
select,
textarea,
.btn {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-sizing: border-box;
    font: inherit;
}

input,
select,
textarea {
    width: 100%;
    padding: .7rem .8rem;
    background: #fff;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus {
    outline: 2px solid var(--focus);
    outline-offset: 0;
}

label {
    display: block;
    margin: .55rem 0;
}

/*	Advent – Hero & Layout */
.advent .advent-hero {
    border-radius: 1rem;
    overflow: hidden;
    background: #f3f6fb;
    margin-bottom: 1rem;
}

.advent .advent-hero .media {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 1rem;
    align-items: stretch;
}

.advent .advent-hero .media-img {
    background: #e8eef7;
    min-height: 240px;
}

.advent .advent-hero .media-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.advent .advent-hero .media-body {
    padding: 1rem;
}

@media (max-width:900px) {
    .advent .advent-hero .media {
        grid-template-columns: 1fr;
    }
}

/* Kalender & Prüfbox gleiche Breite wie Wrapper */
.advent .calendar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .65rem;
    margin: 1rem 0;
}

@media (max-width:760px) {
    .advent .calendar {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:460px) {
    .advent .calendar {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advent .door {
    aspect-ratio: 1/1;
    border: 1px solid var(--border);
    border-radius: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.advent .door.open {
    background: #eef6ff;
    border-color: #b6dbff;
}

.advent .door.locked {
    opacity: .6;
}

/* Gewinntabelle */
.wins {
    width: 100%;
    border-collapse: collapse;
}

.wins th,
.wins td {
    padding: .55rem .6rem;
    border-top: 1px solid #eef2f7;
    text-align: left;
}

.wins thead th {
    background: #f8fafc;
}

details.summary-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1rem;
}

details.summary-card>summary {
    cursor: pointer;
    font-weight: 700;
}

.card {
    position: relative;
}

.card .stretched {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    text-indent: -9999px;
    overflow: hidden;
}

.advent .advent-hero .media-body {
    line-height: 1.6
}

.advent .advent-hero .media-body p {
    margin: .35rem 0
}

.advent .advent-hero ul {
    margin: .4rem 0 .2rem 1rem;
}

.advent .calendar {
    margin: 1rem 0;
}

.wrapper .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.slider-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.team-card .ctas.center {
    margin-top: 30px;
    justify-content: center;
}

/* etwas Mindestbreite, damit es nicht zu schmal wirkt */
.team-card .ctas .btn {
    min-width: 140px;
}

/* auf kleinen Screens darf der Button volle Breite nutzen */
@media (max-width:640px) {
    .team-card .ctas .btn {
        width: 100%;
        max-width: 260px;
    }
}

.team-card .contact {
    margin-bottom: 2rem;
}

/* Grids und Ausrichtung von „Aktuelles“ */
.cards-grid,
.articles-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.wrapper .cards-grid,
.wrapper .articles-grid,
.wrapper .news-grid {
    margin-left: 0;
    margin-right: 0;
}

/*	Tabs — Slider konsolidiert, mittig, responsiv */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.banner .slides {
    position: relative;
    aspect-ratio: 21 / 9;
    max-width: 1200px;
    width: 100%;
    margin: 0;
}

.banner .slide .overlay h2,
.banner .slide .overlay p {
    text-shadow:
        0 0 6px rgba(0, 0, 0, 0.75),
        0 0 12px rgba(0, 0, 0, 0.55);
}

@media (max-width: 900px) {
    .banner .slides {
        aspect-ratio: 16 / 10;
        width: 100%;
    }
}

.banner .slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
}

.banner .slide.active {
    display: block;
}

.banner .slide .stretched {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 3;
}

.banner .slide .overlay {
    position: absolute;
    left: clamp(1rem, 4vw, 2rem);
    right: clamp(1rem, 4vw, 2rem);
    bottom: clamp(0.75rem, 3vw, 2rem);
    text-shadow: 0.1px black;
    border-radius: 9999px;
    color: #fff;
    z-index: 2;
    text-align: center;
}

@media (max-width: 760px) {
    .banner .slide .overlay h2 {
        font-size: 1.35rem;
    }
}

.banner .dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: .75rem;
    display: flex;
    gap: .5rem;
    z-index: 4;
}

.banner .dots>button {
    width: .6rem;
    height: .6rem;
    border-radius: 9999px;
    border: 0;
    background: rgba(255, 255, 255, .6);
}

.banner .dots>button.active {
    background: #fff;
}

.pagination {
    font-size: 20px;
    margin-top: 10px;
    text-align: center;
}

.pagination>a {
    margin-left: 5px;
    margin-right: 5px;
}

.pagination>a.badge {
    font-weight: bold;
    font-size: 23px;
    color: #2ecc71;
    border-radius: 5px;
    border: 1px solid #2ecc71;
}

.intro-left h2,
.intro-left h3 {
    margin-top: 1.5rem;
}

.intro-left ul {
    margin-left: 1.2rem;
    list-style: disc;
}

.intro-left p {
    margin-bottom: 1rem;
    line-height: 1.6;
}