.teaser-section {
    padding: 80px 0;
    position: relative;
}

.teaser-section--dark {
    background: var(--carousel-heading);
}

.teaser-section--light {
    background: var(--carousel-light-bg);
}
.teaser-header{
    width:100%;
    max-width:1200px;
    margin:0 auto 60px;
    text-align:center;
}


.teaser-header-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--carousel-primary, #0B5ED7);
    margin-bottom: 8px;
}

.teaser-header-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--carousel-heading, #0A2540);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.teaser-section--dark .teaser-header-title {
    color: #ffffff;
}
.teaser-header-desc {
    position: relative;
    display: block;
    width:100%;
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 30px 38px;
    overflow: hidden;

    background: linear-gradient(
        160deg,
        #001f35 0%,
        #005f8a 50%,
        #0096c7 80%,
        #30bde0 100%
    );

    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;

    box-shadow:
        0 24px 60px rgba(0, 31, 53, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);

    font-size: 16px;
    line-height: 1.8;
    text-align: center;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.teaser-header-desc::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.teaser-header-desc::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.18);
    filter: blur(10px);
    pointer-events: none;
}

.teaser-header-desc:hover {
    transform: translateY(-4px);

    box-shadow:
        0 32px 75px rgba(0, 31, 53, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.teaser-section--dark .teaser-header-desc {
    color: #ffffff;
}

@media (max-width: 768px) {
    .teaser-header-desc {
        margin-top: 20px;
        padding: 24px 20px;
        border-radius: 18px;
        font-size: 15px;
        line-height: 1.7;
    }
}
.teaser-section--dark .teaser-header-title {
    color: #ffffff;
}


.teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 36px;
}

.teaser-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    text-decoration: none;
    background-size: cover;
    background-position: center;
}

.teaser-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.05) 70%,
        transparent 100%
    );
    transition: opacity 0.4s ease;
    z-index: 1;
}

.teaser-card:hover::before {
    opacity: 0.85;
}

.teaser-card:hover .teaser-card-bg img {
    transform: scale(1.06);
}

.teaser-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.teaser-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.teaser-card-bg--gradient {
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.teaser-card-body {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
}

.teaser-card-badge {
    display: inline-block;
    background: var(--carousel-primary, #0B5ED7);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.teaser-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.teaser-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 14px;
    max-width: 280px;
}

.teaser-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.2s ease;
    text-decoration: none;
}

.teaser-card-cta::after {
    content: '→';
    font-size: 14px;
    transition: transform 0.2s ease;
}

.teaser-card:hover .teaser-card-cta {
    gap: 10px;
}

.teaser-card:hover .teaser-card-cta::after {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .teaser-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .teaser-section {
        padding: 50px 0;
    }

    .teaser-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 16px;
    }

    .teaser-card {
        min-height: 260px;
    }

    .teaser-header-title {
        font-size: 28px;
    }

    .teaser-card-title {
        font-size: 18px;
    }
}
