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

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

.teaser-section--light {
    background: var(--carousel-light-bg);
}

.teaser-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 0 20px;
}

.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 {
    font-size: 16px;
    color: var(--carousel-gray, #666);
    line-height: 1.7;
}

.teaser-section--dark .teaser-header-desc {
    color: rgba(255,255,255,0.7);
}

.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;
    }
}
