* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family: "Montserrat", Arial, sans-serif;
    color: #2d2926;

    background-image: url("flugzeugfenster.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hintergrund-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            180deg,
            rgba(255, 239, 225, 0.24),
            rgba(255, 165, 95, 0.17)
        );

    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.navigation {
    position: sticky;
    top: 18px;
    z-index: 1000;

    width: min(1450px, calc(100% - 60px));
    min-height: 96px;

    margin: 30px auto 0;
    padding: 14px 28px;

    display: grid;
    grid-template-columns: 320px 1fr 150px;
    align-items: center;
    gap: 20px;

    background: rgba(255, 246, 239, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 28px;

    box-shadow:
        0 18px 45px rgba(75, 39, 19, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition:
        min-height 0.3s ease,
        padding 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.navigation.verkleinert {
    min-height: 76px;
    padding-top: 8px;
    padding-bottom: 8px;

    background: rgba(255, 246, 239, 0.88);

    box-shadow:
        0 12px 35px rgba(75, 39, 19, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.logo-bereich {
    display: flex;
    align-items: center;
    gap: 14px;

    color: inherit;
    text-decoration: none;
}

.logo-bild {
    width: 68px;
    height: 68px;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;

    box-shadow: 0 8px 20px rgba(65, 36, 20, 0.15);

    transition:
        width 0.3s ease,
        height 0.3s ease,
        transform 0.25s ease;
}

.logo-bereich:hover .logo-bild {
    transform: scale(1.04);
}

.navigation.verkleinert .logo-bild {
    width: 54px;
    height: 54px;
}

.logo-text {
    color: #f56f13;

    font-size: clamp(24px, 2.4vw, 36px);
    font-weight: 800;
    letter-spacing: -1.5px;
    white-space: nowrap;
    text-decoration: none;
}

.menue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4vw, 68px);
}

.menue a {
    position: relative;

    padding: 10px 0;

    color: #2c2927;

    font-size: 17px;
    font-weight: 600;
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.menue a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #f56f13;
    border-radius: 999px;

    transform: translateX(-50%);

    transition: width 0.25s ease;
}

.menue a:hover {
    color: #f56f13;
    transform: translateY(-2px);
}

.menue a:hover::after {
    width: 100%;
}

.navigation-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.icon-button,
.instagram-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;

    color: #f56f13;

    font-size: 23px;
    line-height: 1;
    text-decoration: none;

    cursor: pointer;

    box-shadow: 0 8px 18px rgba(64, 34, 17, 0.08);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.icon-button {
    font-family: inherit;
}

.icon-button:hover,
.instagram-icon:hover {
    transform: translateY(-2px);
    background: #f56f13;
    color: white;
}

.menue-button {
    display: none;

    background: transparent;
    border: 0;

    color: #f56f13;

    font-size: 30px;
    cursor: pointer;
}

.startseite {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0 100px;
}

.hero {
    text-align: center;
}

.hero h1 {
    position: relative;

    display: inline-block;

    margin: 0;

    color: #f56f13;

    font-size: clamp(60px, 10vw, 145px);
    font-weight: 800;
    letter-spacing: -7px;
    line-height: 0.95;

    text-shadow:
        0 10px 30px rgba(255, 107, 0, 0.14);
}

.flugzeug-symbol {
    display: inline-block;

    margin-left: 10px;

    font-size: 0.32em;
    vertical-align: middle;

    transform: rotate(-10deg);
}

.hero-text {
    margin: 24px 0 45px;

    color: rgba(52, 35, 26, 0.82);

    font-size: 20px;
    font-weight: 600;
}

.instagram-karte {
    width: min(820px, 100%);
    margin: 0 auto;

    overflow: hidden;

    background: rgba(255, 247, 241, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;

    box-shadow:
        0 28px 65px rgba(83, 45, 23, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.instagram-kopf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 24px 30px;

    font-size: 16px;
    font-weight: 600;
}

.instagram-titel {
    display: flex;
    align-items: center;
    gap: 14px;
}

.instagram-symbol {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    color: #f56f13;
    border: 3px solid #f56f13;
    border-radius: 11px;

    font-size: 25px;
    line-height: 1;
}

.instagram-kopf a {
    color: #f56f13;
    font-weight: 600;
    text-decoration: none;
}

.instagram-inhalt {
    padding: 0 28px;
}

.instagram-platzhalter {
    min-height: 380px;

    display: grid;
    place-items: center;

    padding: 40px;

    background:
        linear-gradient(
            rgba(245, 111, 19, 0.08),
            rgba(255, 255, 255, 0.12)
        ),
        url("flugzeugfenster.png");

    background-position: center;
    background-size: cover;

    border-radius: 18px;
    overflow: hidden;
}

.instagram-platzhalter p {
    max-width: 430px;
    margin: 0;
    padding: 22px 28px;

    background: rgba(255, 247, 241, 0.82);
    border-radius: 16px;

    color: #3f3028;

    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.instagram-link {
    display: block;

    padding: 24px;

    color: #f56f13;

    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.instagram-link:hover {
    color: #d95200;
    background: rgba(245, 111, 19, 0.07);
}

.inhalt-bereich {
    margin-top: 100px;
    padding: 50px;

    background: rgba(255, 247, 241, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 28px;

    box-shadow: 0 20px 50px rgba(83, 45, 23, 0.16);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.inhalt-bereich h2 {
    margin-top: 0;

    color: #f56f13;

    font-size: 38px;
}

.inhalt-bereich p {
    margin-bottom: 0;

    font-size: 18px;
    line-height: 1.7;
}

.suchfenster {
    position: fixed;
    inset: 0;
    z-index: 2000;

    display: none;
    align-items: flex-start;
    justify-content: center;

    padding-top: 140px;

    background: rgba(37, 25, 18, 0.35);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.suchfenster.aktiv {
    display: flex;
}

.suchfenster-inhalt {
    width: min(620px, calc(100% - 40px));

    display: grid;
    grid-template-columns: 1fr 54px;
    gap: 10px;

    padding: 16px;

    background: rgba(255, 248, 242, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;

    box-shadow: 0 25px 60px rgba(41, 23, 13, 0.3);
}

.suchfenster input {
    width: 100%;

    padding: 15px 18px;

    background: white;
    border: 1px solid rgba(245, 111, 19, 0.22);
    border-radius: 14px;
    outline: none;

    color: #2c2927;

    font-family: inherit;
    font-size: 17px;
}

.suchfenster input:focus {
    border-color: #f56f13;
    box-shadow: 0 0 0 4px rgba(245, 111, 19, 0.12);
}

.suchfenster button {
    border: 0;
    border-radius: 14px;

    background: #f56f13;
    color: white;

    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 1050px) {
    .navigation {
        grid-template-columns: 1fr auto auto;
    }

    .menue-button {
        display: block;
    }

    .menue {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        gap: 4px;

        padding: 18px;

        background: rgba(255, 246, 239, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.82);
        border-radius: 22px;

        box-shadow: 0 20px 45px rgba(65, 35, 18, 0.2);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .menue.aktiv {
        display: flex;
    }

    .menue a {
        width: 100%;
        padding: 14px;

        text-align: center;
    }
}

@media (max-width: 600px) {
    body {
        background-attachment: scroll;
    }

    .navigation {
        top: 10px;

        width: calc(100% - 20px);
        min-height: 74px;

        margin-top: 10px;
        padding: 10px 14px;

        grid-template-columns: 1fr auto;
        gap: 10px;

        border-radius: 20px;
    }

    .logo-bild {
        width: 48px;
        height: 48px;
    }

    .logo-text {
        font-size: 21px;
        letter-spacing: -1px;
    }

    .navigation-icons {
        display: none;
    }

    .menue-button {
        display: block;
    }

    .startseite {
        width: calc(100% - 24px);
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 58px;
        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 16px;
    }

    .instagram-karte {
        border-radius: 22px;
    }

    .instagram-kopf {
        flex-direction: column;
        align-items: flex-start;

        padding: 20px;
    }

    .instagram-inhalt {
        padding: 0 14px;
    }

    .instagram-platzhalter {
        min-height: 300px;
        padding: 20px;
    }

    .inhalt-bereich {
        margin-top: 60px;
        padding: 30px 22px;
    }

    .inhalt-bereich h2 {
        font-size: 30px;
    }

    .suchfenster {
        padding-top: 100px;
    }
}/* =========================
   ÜBER-UNS-SEITE
========================= */

.ueber-uns-seite {
    min-height: 100vh;

    background-image: url("flugzeugfenster.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.team-hauptbereich {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 65px 0 110px;
}

.team-bereich {
    width: 100%;
}

.team-ueberschrift {
    margin-bottom: 42px;
    text-align: center;
}

.team-ueberschrift p {
    margin: 0 0 8px;

    color: #f56f13;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.team-ueberschrift h1 {

    position: relative;

    display: inline-block;

    margin: 0;

    color: #f56f13;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: clamp(60px, 10vw, 145px);

    font-weight: 800;

    letter-spacing: -7px;

    line-height: 0.95;

    text-shadow:
        0 10px 30px rgba(255,107,0,.14);

}

.team-ueberschrift span {
    display: block;

    width: 76px;
    height: 3px;

    margin: 22px auto 0;

    background: #f56f13;
    border-radius: 999px;
}

.profil-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;

    width: min(900px, 100%);
    margin: 0 auto;
}

.profil-karte {
    overflow: hidden;

    background: rgba(255, 247, 241, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 28px;

    box-shadow:
        0 28px 65px rgba(83, 45, 23, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.profil-karte:hover {
    transform: translateY(-7px);

    box-shadow:
        0 34px 75px rgba(83, 45, 23, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.profil-bildrahmen {
    height: 410px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.25);
}

.profil-bild {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    transition: transform 0.4s ease;
}

.profil-karte:hover .profil-bild {
    transform: scale(1.025);
}

.profil-inhalt {
    padding: 34px 34px 30px;
    text-align: center;
}

.profil-inhalt h2 {
    margin: 0;

    color: #f56f13;

    font-family: "Playfair Display", Georgia, serif;
    font-size: 43px;
    font-weight: 700;
}

.profil-linie {
    width: 46px;
    height: 3px;

    margin: 16px auto 22px;

    background: #f56f13;
    border-radius: 999px;
}

.profil-inhalt p {
    margin: 0 0 14px;

    color: #40352f;

    font-size: 16px;
    line-height: 1.75;
}

.profil-inhalt p:last-of-type {
    margin-bottom: 26px;
}

.profil-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.profil-links a {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    color: #f56f13;
    background: rgba(255, 255, 255, 0.38);
    border: 2px solid rgba(245, 111, 19, 0.55);
    border-radius: 50%;

    font-size: 24px;
    line-height: 1;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.profil-links a:hover {
    color: white;
    background: #f56f13;
    transform: translateY(-3px);
}

.menue .aktiver-link {
    color: #f56f13;
}

.menue .aktiver-link::after {
    width: 100%;
}

/* Tablet */

@media (max-width: 900px) {
    .profil-grid {
        gap: 28px;
    }

    .profil-bildrahmen {
        height: 360px;
    }

    .profil-inhalt {
        padding: 28px 24px;
    }
}

/* Smartphone */

@media (max-width: 700px) {
    .ueber-uns-seite {
        background-attachment: scroll;
    }

    .team-hauptbereich {
        width: calc(100% - 24px);
        padding: 45px 0 75px;
    }

.team-ueberschrift h1 {
    position: relative;
    display: inline-block;

    margin: 0;

    color: #f56f13;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(60px, 10vw, 145px);
    font-weight: 800;
    letter-spacing: -7px;
    line-height: 0.95;

    text-shadow:
        0 10px 30px rgba(255, 107, 0, 0.14);
}

    .profil-grid {
        grid-template-columns: 1fr;
        gap: 28px;

        width: min(460px, 100%);
    }

    .profil-bildrahmen {
        height: 410px;
    }

    .profil-inhalt h2 {
        font-size: 38px;
    }
}

@media (max-width: 430px) {
    .profil-bildrahmen {
        height: 340px;
    }

    .profil-inhalt {
        padding: 26px 20px;
    }

    .profil-inhalt p {
        font-size: 15px;
    }
}/* =========================
   IMPRESSUM UND DATENSCHUTZ
========================= */

.rechtliches-seite {
    min-height: 100vh;

    background-image: url("flugzeugfenster.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.rechtliches-hauptbereich {
    width: min(1000px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0 80px;
}

.rechtliches-karte {
    padding: clamp(28px, 5vw, 60px);

    background: rgba(255, 247, 241, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;

    box-shadow:
        0 28px 65px rgba(83, 45, 23, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.rechtliches-karte h1 {
    margin: 0 0 45px;

    color: #f56f13;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 1;
}

.rechtliches-karte h2 {
    margin: 38px 0 14px;

    color: #f56f13;

    font-size: 23px;
    line-height: 1.3;
}

.rechtliches-karte p {
    margin: 0 0 18px;

    color: #40352f;

    font-size: 16px;
    line-height: 1.75;
}

.rechtliches-karte a {
    color: #d95c00;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.seiten-footer {
    width: min(1000px, calc(100% - 40px));
    margin: 30px auto;
    padding: 24px 30px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 28px;

    background: rgba(255, 247, 241, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 22px;

    box-shadow:
        0 18px 40px rgba(83, 45, 23, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.seiten-footer a {
    position: relative;

    color: #40352f;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    padding: 8px 2px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.seiten-footer a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #f56f13;
    border-radius: 999px;

    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.seiten-footer a:hover {
    color: #f56f13;
    transform: translateY(-2px);
}

.seiten-footer a:hover::after {
    width: 100%;
}

.seiten-footer a:visited {
    color: #40352f;
}

.seiten-footer p {
    width: 100%;
    margin: 8px 0 0;

    color: #6b5b52;

    font-size: 14px;
    text-align: center;
}/* =========================
   KREDITKARTEN-SEITE
========================= */

.kreditkarten-seite {
    min-height: 100vh;

    background-image: url("flugzeugfenster.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.kreditkarten-hauptbereich {
    width: min(1500px, calc(100% - 40px));
    margin: 0 auto;
    padding: 65px 0 90px;
}

.kreditkarten-ueberschrift {
    margin-bottom: 45px;
    text-align: center;
}

.kreditkarten-ueberschrift h1 {
    margin: 0;

    color: #f56f13;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(58px, 9vw, 130px);
    font-weight: 800;
    letter-spacing: -7px;
    line-height: 0.95;

    text-shadow:
        0 10px 30px rgba(255, 107, 0, 0.14);
}

.kreditkarten-ueberschrift p {
    margin: 24px 0 0;

    color: #40352f;

    font-size: 18px;
    font-weight: 600;
}

.karten-karussell-bereich {
    position: relative;

    width: 100%;

    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    align-items: center;
    gap: 14px;
}

.karten-karussell {
    display: flex;
    gap: 28px;

    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    padding: 20px 10px 35px;

    scrollbar-width: none;
}

.karten-karussell::-webkit-scrollbar {
    display: none;
}

.kreditkarten-karte {
    flex: 0 0 min(380px, 82vw);

    overflow: hidden;
    scroll-snap-align: center;

    background: rgba(255, 247, 241, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 28px;

    box-shadow:
        0 26px 60px rgba(83, 45, 23, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.kreditkarten-karte:hover,
.kreditkarten-karte:focus-visible {
    transform: translateY(-8px);

    box-shadow:
        0 34px 75px rgba(83, 45, 23, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);

    outline: none;
}

.kreditkarten-bildrahmen {
    height: 255px;
    overflow: hidden;

    display: grid;
    place-items: center;

    padding: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.44),
            rgba(255, 225, 204, 0.2)
        );
}

.kreditkarten-bild {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0.88;

    filter:
        saturate(0.92)
        contrast(0.96);

    transition:
        opacity 0.25s ease,
        transform 0.35s ease,
        filter 0.25s ease;
}

.kreditkarten-karte:hover .kreditkarten-bild {
    opacity: 1;

    filter:
        saturate(1)
        contrast(1);

    transform: scale(1.035);
}

.kreditkarten-inhalt {
    min-height: 260px;
    padding: 28px 30px 32px;

    display: flex;
    flex-direction: column;

    text-align: center;
}

.karten-anbieter {
    margin: 0 0 8px;

    color: #a04a10;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.kreditkarten-inhalt h2 {
    margin: 0 0 18px;

    color: #f56f13;

    font-size: 31px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.kreditkarten-inhalt > p:not(.karten-anbieter) {
    margin: 0;

    color: #40352f;

    font-size: 16px;
    line-height: 1.65;
}

.mehr-erfahren {
    margin-top: auto;
    padding-top: 24px;

    color: #f56f13;

    font-size: 15px;
    font-weight: 700;
}

.karussell-pfeil {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    padding: 0;

    background: rgba(255, 247, 241, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;

    color: #f56f13;

    font-family: Arial, sans-serif;
    font-size: 43px;
    line-height: 1;

    box-shadow: 0 15px 35px rgba(83, 45, 23, 0.18);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.karussell-pfeil:hover {
    color: white;
    background: #f56f13;

    transform: scale(1.06);
}

.vergleich-bereich {
    width: min(700px, 100%);
    margin: 45px auto 0;
    padding: 30px;

    background: rgba(255, 247, 241, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 24px;

    text-align: center;

    box-shadow: 0 20px 50px rgba(83, 45, 23, 0.17);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.vergleich-bereich p {
    margin: 0 0 20px;

    color: #40352f;

    font-size: 17px;
    font-weight: 600;
}

.vergleich-button {
    padding: 15px 30px;

    background: #f56f13;
    border: none;
    border-radius: 999px;

    color: white;

    font-family: inherit;
    font-size: 16px;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 12px 28px rgba(245, 111, 19, 0.3);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.vergleich-button:hover {
    background: #d95c00;

    transform: translateY(-3px);

    box-shadow: 0 16px 34px rgba(245, 111, 19, 0.36);
}

/* Modalfenster */

.karten-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(35, 22, 14, 0.5);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.karten-modal.aktiv {
    display: flex;
}

.karten-modal-inhalt {
    position: relative;

    width: min(620px, 100%);
    max-height: calc(100vh - 50px);

    overflow-y: auto;

    padding: 42px;

    background: rgba(255, 248, 242, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;

    box-shadow: 0 35px 85px rgba(34, 19, 10, 0.38);

    text-align: center;
}

.modal-schliessen {
    position: absolute;
    top: 16px;
    right: 16px;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(245, 111, 19, 0.18);
    border-radius: 50%;

    color: #f56f13;

    font-size: 20px;

    cursor: pointer;
}

.modal-kartenbild {
    width: min(440px, 100%);
    max-height: 260px;

    margin: 10px auto 28px;

    object-fit: contain;
}

.modal-anbieter {
    margin: 0 0 8px;

    color: #a04a10;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.karten-modal-inhalt h2 {
    margin: 0 0 20px;

    color: #f56f13;

    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -2px;
}

.karten-modal-inhalt > p:not(.modal-anbieter) {
    color: #40352f;

    font-size: 17px;
    line-height: 1.7;
}

.detail-hinweis {
    margin-top: 25px;
    padding: 16px;

    background: rgba(245, 111, 19, 0.09);
    border-radius: 15px;

    color: #6d3a18;

    font-size: 14px;
    line-height: 1.6;
}

.vergleich-modal-inhalt {
    width: min(1100px, 100%);
    text-align: left;
}

.vergleich-modal-inhalt h2 {
    padding-right: 55px;
}

.vergleich-einleitung {
    margin-bottom: 28px;
}

.vergleich-tabelle-rahmen {
    overflow-x: auto;

    border: 1px solid rgba(245, 111, 19, 0.18);
    border-radius: 18px;
}

.vergleich-tabelle {
    width: 100%;
    min-width: 760px;

    border-collapse: collapse;

    background: rgba(255, 255, 255, 0.55);
}

.vergleich-tabelle th,
.vergleich-tabelle td {
    padding: 17px 18px;

    border-bottom: 1px solid rgba(88, 60, 43, 0.12);

    color: #40352f;

    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.vergleich-tabelle th {
    background: rgba(245, 111, 19, 0.12);

    color: #b64d08;

    font-weight: 800;
}

.vergleich-tabelle tbody tr:last-child td {
    border-bottom: none;
}

/* Tablet */

@media (max-width: 900px) {
    .karten-karussell-bereich {
        grid-template-columns: 52px minmax(0, 1fr) 52px;
        gap: 5px;
    }

    .karussell-pfeil {
        width: 48px;
        height: 48px;

        font-size: 36px;
    }
}

/* Smartphone */

@media (max-width: 650px) {
    .kreditkarten-seite {
        background-attachment: scroll;
    }

    .kreditkarten-hauptbereich {
        width: calc(100% - 20px);
        padding: 45px 0 65px;
    }

    .kreditkarten-ueberschrift h1 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .kreditkarten-ueberschrift p {
        font-size: 15px;
    }

    .karten-karussell-bereich {
        display: block;
    }

    .karten-karussell {
        gap: 18px;
        padding-right: 25px;
        padding-left: 25px;
    }

    .kreditkarten-karte {
        flex-basis: 85vw;
    }

    .karussell-pfeil {
        position: absolute;
        top: 210px;
        z-index: 5;

        width: 44px;
        height: 44px;

        font-size: 32px;
    }

    .karussell-pfeil-links {
        left: 2px;
    }

    .karussell-pfeil-rechts {
        right: 2px;
    }

    .kreditkarten-bildrahmen {
        height: 225px;
    }

    .kreditkarten-inhalt {
        min-height: 235px;
        padding: 25px 22px;
    }

    .kreditkarten-inhalt h2 {
        font-size: 27px;
    }

    .vergleich-bereich {
        margin-top: 30px;
        padding: 25px 18px;
    }

    .karten-modal {
        padding: 12px;
    }

    .karten-modal-inhalt {
        padding: 55px 22px 28px;
        border-radius: 22px;
    }
}/* =========================
   KREDITKARTEN-GRUPPEN
========================= */

.karten-gruppe {
    width: 100%;
    margin-top: 45px;
    padding: 30px;

    background: rgba(255, 247, 241, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 30px;

    box-shadow:
        0 26px 60px rgba(83, 45, 23, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.weitere-karten-gruppe {
    margin-top: 38px;
}

.karten-gruppen-kopf {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;

    margin-bottom: 14px;
    padding: 0 8px;
}

.gruppen-label {
    margin: 0 0 8px;

    color: #a04a10;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.karten-gruppen-kopf h2 {
    margin: 0;

    color: #f56f13;

    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -2px;
}

.gruppen-pfeile {
    display: flex;
    gap: 10px;
}

.gruppen-pfeil {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    padding: 0;

    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;

    color: #f56f13;

    font-family: Arial, sans-serif;
    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 10px 25px rgba(83, 45, 23, 0.12);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.gruppen-pfeil:hover {
    color: white;
    background: #f56f13;

    transform: translateY(-2px);
}

.karten-gruppe .karten-karussell {
    padding-top: 15px;
    padding-bottom: 20px;
}

/* Die zweite Reihe wirkt kompakter */

.weitere-karten-gruppe .kreditkarten-karte {
    flex-basis: min(430px, 85vw);
}

@media (max-width: 700px) {
    .karten-gruppe {
        padding: 22px 12px;
        border-radius: 24px;
    }

    .karten-gruppen-kopf {
        align-items: center;
        padding: 0 10px;
    }

    .karten-gruppen-kopf h2 {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .gruppen-pfeil {
        width: 42px;
        height: 42px;

        font-size: 30px;
    }

    .karten-gruppe .karten-karussell {
        padding-right: 15px;
        padding-left: 15px;
    }
}/* =========================
   GUIDE-SEITE
========================= */

.guide-seite {
    min-height: 100vh;

    background-image: url("flugzeugfenster.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.guide-hauptbereich {
    width: min(1250px, calc(100% - 40px));
    margin: 0 auto;
    padding: 65px 0 90px;
}

.guide-ueberschrift {
    margin-bottom: 45px;
    text-align: center;
}

.guide-ueberschrift h1 {
    margin: 0;

    color: #f56f13;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(60px, 10vw, 145px);
    font-weight: 800;
    letter-spacing: -7px;
    line-height: 0.95;

    text-shadow:
        0 10px 30px rgba(255, 107, 0, 0.14);
}

.guide-ueberschrift p {
    margin: 24px 0 0;

    color: #40352f;

    font-size: 18px;
    font-weight: 600;
}

.guide-karte {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    align-items: stretch;
    gap: 0;

    width: min(1050px, 100%);
    margin: 0 auto;

    overflow: hidden;

    background: rgba(255, 247, 241, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 30px;

    box-shadow:
        0 28px 65px rgba(83, 45, 23, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.guide-bildbereich {
    min-height: 650px;

    padding: 38px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.46),
            rgba(255, 223, 198, 0.22)
        );
}

.guide-bild-link {
    position: relative;

    display: block;

    width: min(360px, 100%);

    color: inherit;
    text-decoration: none;

    transition: transform 0.3s ease;
}

.guide-bild-link:hover {
    transform: translateY(-7px);
}

.guide-bild {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 18px;

    opacity: 0.88;

    box-shadow:
        0 25px 55px rgba(66, 38, 22, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.68);

    transition:
        opacity 0.25s ease,
        transform 0.3s ease,
        filter 0.25s ease;
}

.guide-bild-link:hover .guide-bild {
    opacity: 1;
    transform: scale(1.015);
    filter: saturate(1.04);
}

.guide-download-hinweis {
    position: absolute;
    left: 50%;
    bottom: 24px;

    padding: 12px 20px;

    color: white;
    background: rgba(245, 111, 19, 0.92);
    border-radius: 999px;

    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;

    box-shadow: 0 10px 25px rgba(75, 39, 19, 0.25);

    transform: translateX(-50%);

    opacity: 0;
    transition:
        opacity 0.25s ease,
        bottom 0.25s ease;
}

.guide-bild-link:hover .guide-download-hinweis {
    bottom: 32px;
    opacity: 1;
}

.guide-inhalt {
    padding: clamp(38px, 6vw, 70px);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guide-kategorie {
    margin: 0 0 12px;

    color: #a04a10;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.guide-inhalt h2 {
    margin: 0 0 28px;

    color: #f56f13;

    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1.04;
}

.guide-inhalt p {
    margin: 0 0 18px;

    color: #40352f;

    font-size: 16px;
    line-height: 1.75;
}

.guide-inhalt .guide-einleitung {
    font-size: 18px;
    font-weight: 600;
}

.guide-themen {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 10px;
}

.guide-themen span {
    padding: 9px 14px;

    color: #9b470f;
    background: rgba(245, 111, 19, 0.1);
    border: 1px solid rgba(245, 111, 19, 0.18);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
}

.guide-aktionen {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 34px;
}

.guide-download-button,
.guide-vorschau-button {
    min-height: 50px;

    padding: 14px 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.guide-download-button {
    color: white;
    background: #f56f13;
    border: 2px solid #f56f13;

    box-shadow: 0 12px 28px rgba(245, 111, 19, 0.28);
}

.guide-download-button:hover {
    color: white;
    background: #d95c00;
    border-color: #d95c00;

    transform: translateY(-3px);

    box-shadow: 0 16px 34px rgba(245, 111, 19, 0.35);
}

.guide-vorschau-button {
    color: #f56f13;
    background: rgba(255, 255, 255, 0.48);
    border: 2px solid rgba(245, 111, 19, 0.55);
}

.guide-vorschau-button:hover {
    color: white;
    background: #f56f13;

    transform: translateY(-3px);
}

/* PDF-Vorschau */

.guide-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(35, 22, 14, 0.58);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.guide-modal.aktiv {
    display: flex;
}

.guide-modal-inhalt {
    width: min(1050px, 100%);
    height: min(900px, calc(100vh - 50px));

    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;

    overflow: hidden;

    background: rgba(255, 248, 242, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 28px;

    box-shadow: 0 35px 90px rgba(30, 17, 9, 0.42);
}

.guide-modal-kopf {
    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-bottom: 1px solid rgba(89, 57, 39, 0.12);
}

.guide-modal-kopf h2 {
    margin: 0;

    color: #f56f13;

    font-size: 24px;
    font-weight: 800;
}

.guide-modal-schliessen {
    width: 44px;
    height: 44px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    color: #f56f13;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(245, 111, 19, 0.2);
    border-radius: 50%;

    font-size: 20px;

    cursor: pointer;
}

.guide-pdf {
    width: 100%;
    height: 100%;

    border: 0;
    background: white;
}

.guide-modal-fuss {
    padding: 16px 24px;

    display: flex;
    justify-content: center;

    border-top: 1px solid rgba(89, 57, 39, 0.12);
}

/* Tablet */

@media (max-width: 900px) {
    .guide-karte {
        grid-template-columns: 1fr;
    }

    .guide-bildbereich {
        min-height: auto;
        padding: 45px 30px;
    }

    .guide-bild-link {
        width: min(330px, 100%);
    }

    .guide-inhalt {
        padding: 45px 35px;
    }
}

/* Smartphone */

@media (max-width: 600px) {
    .guide-seite {
        background-attachment: scroll;
    }

    .guide-hauptbereich {
        width: calc(100% - 20px);
        padding: 45px 0 65px;
    }

    .guide-ueberschrift h1 {
        font-size: 58px;
        letter-spacing: -3px;
    }

    .guide-ueberschrift p {
        font-size: 15px;
    }

    .guide-karte {
        border-radius: 23px;
    }

    .guide-bildbereich {
        padding: 28px 22px;
    }

    .guide-inhalt {
        padding: 32px 22px;
    }

    .guide-inhalt h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .guide-inhalt p,
    .guide-inhalt .guide-einleitung {
        font-size: 15px;
    }

    .guide-aktionen {
        flex-direction: column;
    }

    .guide-download-button,
    .guide-vorschau-button {
        width: 100%;
    }

    .guide-modal {
        padding: 10px;
    }

    .guide-modal-inhalt {
        height: calc(100vh - 20px);
        border-radius: 20px;
    }

    .guide-modal-kopf {
        padding: 14px 16px;
    }

    .guide-modal-kopf h2 {
        font-size: 18px;
    }

    .guide-download-hinweis {
        bottom: 20px;
        opacity: 1;
    }
}/* =========================
   INSTAGRAM-GALERIE
========================= */

.instagram-galerie {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;

    padding: 30px;
}

.instagram-vorschau {
    position: relative;

    display: block;

    min-width: 0;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;

    box-shadow:
        0 18px 40px rgba(83, 45, 23, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.instagram-vorschau:hover {
    transform: translateY(-7px);

    box-shadow:
        0 28px 55px rgba(83, 45, 23, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.instagram-vorschau img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.9;

    transition:
        transform 0.4s ease,
        opacity 0.3s ease,
        filter 0.3s ease;
}

.instagram-vorschau:hover img {
    transform: scale(1.06);
    opacity: 1;
    filter: saturate(1.08);
}

.instagram-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 24px;

    background:
        linear-gradient(
            to top,
            rgba(35, 20, 12, 0.72),
            rgba(35, 20, 12, 0.08) 55%,
            transparent
        );

    opacity: 0;

    transition: opacity 0.3s ease;
}

.instagram-vorschau:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay span {
    color: white;

    font-size: 15px;
    font-weight: 800;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.instagram-aktion {
    padding: 0 30px 30px;

    display: flex;
    justify-content: center;
}

.instagram-aktion .instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 25px;

    color: white;
    background: #f56f13;
    border-radius: 999px;

    font-size: 15px;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 12px 28px rgba(245, 111, 19, 0.28);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.instagram-aktion .instagram-link:hover {
    color: white;
    background: #d95c00;

    transform: translateY(-3px);

    box-shadow: 0 16px 34px rgba(245, 111, 19, 0.35);
}

@media (max-width: 900px) {
    .instagram-galerie {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .instagram-vorschau:last-child {
        grid-column: 1 / -1;

        width: min(50%, 420px);
        justify-self: center;
    }
}

@media (max-width: 620px) {
    .instagram-galerie {
        grid-template-columns: 1fr;
        gap: 18px;

        padding: 20px 16px;
    }

    .instagram-vorschau:last-child {
        grid-column: auto;

        width: 100%;
    }

    .instagram-overlay {
        opacity: 1;
    }

    .instagram-aktion {
        padding: 0 16px 22px;
    }

    .instagram-aktion .instagram-link {
        width: 100%;
    }
}/* =========================
   KREDITKARTEN-VORTEILE
========================= */

.karten-einleitung {
    margin: 0 0 22px;

    color: #3f352f;
    font-size: 16px;
    line-height: 1.75;
}

.vorteile-titel {
    margin: 10px 0 16px;

    color: #f56f13;
    font-size: 21px;
    font-weight: 800;
}

.vorteile-liste {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.vorteile-liste li {
    position: relative;

    padding: 14px 16px 14px 44px;

    color: #3f352f;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 15px;

    font-size: 15px;
    line-height: 1.55;

    box-shadow: 0 8px 22px rgba(83, 45, 23, 0.08);
}

.vorteile-liste li::before {
    content: "✓";

    position: absolute;
    top: 14px;
    left: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    color: white;
    background: #f56f13;
    border-radius: 50%;

    font-size: 12px;
    font-weight: 800;
}

.vorteile-liste strong {
    color: #2f251f;
    font-weight: 800;
}

.karten-hinweis {
    margin: 20px 0 0;
    padding: 14px 16px;

    color: #6e625a;
    background: rgba(245, 111, 19, 0.08);
    border-left: 4px solid #f56f13;
    border-radius: 10px;

    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 600px) {
    .vorteile-titel {
        font-size: 19px;
    }

    .vorteile-liste li {
        padding: 13px 13px 13px 40px;
        font-size: 14px;
    }

    .vorteile-liste li::before {
        left: 13px;
    }
}/* =========================
   AMEX BUTTON
========================= */

.beantragen-box {
    margin-top: 28px;
    text-align: center;
}

.beantragen-button {
    display: inline-block;

    padding: 16px 34px;

    background: linear-gradient(135deg, #f56f13, #ff8c2f);
    color: #fff;

    border-radius: 50px;

    font-size: 17px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 14px 35px rgba(245,111,19,.35);

    transition: .25s;
}

.beantragen-button:hover {
    transform: translateY(-3px) scale(1.03);

    background: linear-gradient(135deg, #e65f00, #ff9d4d);

    box-shadow: 0 18px 40px rgba(245,111,19,.45);
}

.beantragen-button:active {
    transform: scale(.98);
}/* =========================
   MILES & MORE VERGLEICH
========================= */

.vergleich-karten{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-top:20px;
}

.vergleich-box{
    background:rgba(255,255,255,.45);
    border:1px solid rgba(255,255,255,.8);
    border-radius:20px;
    padding:22px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.vergleich-box h4{
    text-align:center;
    margin-bottom:18px;
    color:#f56f13;
    font-size:24px;
    font-weight:800;
}

@media(max-width:850px){

    .vergleich-karten{
        grid-template-columns:1fr;
    }
}/* =========================================
   INSTAGRAM-BEREICH KREDITKARTEN
========================================= */

.kreditkarten-instagram {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 70px;
    padding: 46px;

    background: rgba(255, 255, 255, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 34px;

    box-shadow:
        0 28px 70px rgba(74, 42, 24, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.kreditkarten-instagram-kopf {
    max-width: 850px;
    margin: 0 auto 38px;

    text-align: center;
}

.instagram-kleine-zeile {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    padding: 8px 16px;

    color: #f56f13;
    background: rgba(245, 111, 19, 0.1);
    border: 1px solid rgba(245, 111, 19, 0.2);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.kreditkarten-instagram-kopf h2 {
    margin: 0;

    color: #34251c;

    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.12;
}

.kreditkarten-instagram-kopf h2 span {
    color: #f56f13;
}

.kreditkarten-instagram-kopf p {
    max-width: 720px;
    margin: 20px auto 0;

    color: #6d5b50;

    font-size: 17px;
    line-height: 1.7;
}

.kreditkarten-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.kreditkarten-insta-post {
    position: relative;

    display: block;

    min-width: 0;
    aspect-ratio: 1 / 1.08;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 25px;

    box-shadow:
        0 18px 38px rgba(78, 45, 27, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    text-decoration: none;

    transform: translateY(0);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.kreditkarten-insta-post:hover {
    transform: translateY(-8px);

    border-color: rgba(245, 111, 19, 0.5);

    box-shadow:
        0 28px 55px rgba(78, 45, 27, 0.23),
        0 0 0 1px rgba(245, 111, 19, 0.12);
}

.kreditkarten-insta-post img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.4s ease;
}

.kreditkarten-insta-post:hover img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

.kreditkarten-insta-verlauf {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(35, 21, 13, 0.86) 0%,
            rgba(35, 21, 13, 0.3) 42%,
            transparent 72%
        );

    pointer-events: none;
}

.kreditkarten-insta-badge {
    position: absolute;
    top: 17px;
    left: 17px;

    display: inline-flex;
    align-items: center;

    padding: 8px 13px;

    color: #ffffff;
    background: rgba(245, 111, 19, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.kreditkarten-insta-icon {
    position: absolute;
    top: 15px;
    right: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: white;
    background: rgba(31, 20, 14, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 50%;

    font-size: 24px;
    font-weight: 700;

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.kreditkarten-insta-text {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    color: white;
}

.kreditkarten-insta-text strong {
    font-size: 21px;
    font-weight: 800;
}

.kreditkarten-insta-text span {
    color: #ffb47d;

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.kreditkarten-insta-post:hover .kreditkarten-insta-text span {
    color: #ffffff;
    transform: translateX(4px);
}

.kreditkarten-instagram-abschluss {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-top: 34px;
    padding: 22px 24px;

    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 22px;

    box-shadow:
        0 12px 30px rgba(77, 44, 25, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.kreditkarten-instagram-profil {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kreditkarten-instagram-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 54px;
    height: 54px;

    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );
    border-radius: 17px;

    font-size: 34px;
    font-weight: 700;

    box-shadow: 0 10px 24px rgba(131, 58, 180, 0.24);
}

.kreditkarten-instagram-profil div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kreditkarten-instagram-profil strong {
    color: #34251c;

    font-size: 17px;
    font-weight: 800;
}

.kreditkarten-instagram-profil div span {
    color: #756359;

    font-size: 14px;
    line-height: 1.45;
}

.kreditkarten-instagram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    padding: 15px 25px;

    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #f56f13,
            #ff9141
        );
    border-radius: 999px;

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 13px 28px rgba(245, 111, 19, 0.3);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.kreditkarten-instagram-button:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #dd5d05,
            #f87b21
        );

    transform: translateY(-3px);

    box-shadow: 0 18px 36px rgba(245, 111, 19, 0.4);
}

.kreditkarten-instagram-button:active {
    transform: translateY(0);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .kreditkarten-instagram {
        padding: 34px 28px;
    }

    .kreditkarten-instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

/* =========================================
   HANDY
========================================= */

@media (max-width: 650px) {

    .kreditkarten-instagram {
        width: calc(100% - 24px);
        margin: 45px auto;
        padding: 28px 15px;

        border-radius: 25px;
    }

    .kreditkarten-instagram-kopf {
        margin-bottom: 28px;
    }

    .kreditkarten-instagram-kopf h2 {
        font-size: 32px;
    }

    .kreditkarten-instagram-kopf p {
        font-size: 15px;
    }

    .kreditkarten-instagram-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .kreditkarten-insta-post {
        aspect-ratio: 1 / 1;
        border-radius: 21px;
    }

    .kreditkarten-insta-text strong {
        font-size: 19px;
    }

    .kreditkarten-instagram-abschluss {
        flex-direction: column;
        align-items: stretch;

        padding: 18px;
    }

    .kreditkarten-instagram-profil {
        align-items: flex-start;
    }

    .kreditkarten-instagram-button {
        width: 100%;
    }

}