.explore-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 36px 20px 56px;
}

.explore-hero {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 28px;
    background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 58%, #eef3ff 100%);
    border: 1px solid #dfe6ff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(0, 10, 61, 0.08);
}

.explore-hero-content {
    max-width: 760px;
}

.explore-kicker {
    margin: 0 0 10px;
    color: #3852c5;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.explore-hero h2 {
    color: #000A3D;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.02;
    margin: 0 0 18px;
    max-width: 820px;
}

.explore-intro {
    color: #263157;
    font-size: 1.08rem;
    line-height: 1.75;
    margin: 0;
}

.explore-hero-panel {
    min-width: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #000A3D;
    color: #ffffff;
    border-radius: 22px;
    padding: 26px;
}

.explore-panel-number {
    font-size: 4.6rem;
    line-height: 0.9;
    font-weight: 600;
}

.explore-panel-label {
    font-size: 0.98rem;
    line-height: 1.35;
    margin-top: 12px;
    color: #dce4ff;
}

.explore-section {
    margin-top: 48px;
}

.explore-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 22px;
}

.explore-section-heading h3 {
    color: #000A3D;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    margin: 0;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.teaser-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    background: #ffffff;
    border: 1px solid #e2e7f7;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(0, 10, 61, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.teaser-card:hover {
    transform: translateY(-4px);
    border-color: #b9c6ff;
    box-shadow: 0 18px 42px rgba(0, 10, 61, 0.12);
}

.teaser-card-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.teaser-category,
.teaser-year {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.teaser-category {
    color: #000A3D;
    background: #eef3ff;
    padding: 7px 10px;
}

.teaser-year {
    color: #3852c5;
}

.teaser-card h4 {
    color: #000A3D;
    font-size: 1.28rem;
    line-height: 1.25;
    margin: 0 0 12px;
}

.teaser-card p {
    color: #343f63;
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0 0 22px;
}

.teaser-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: auto;
    color: #ffffff;
    background: #000A3D;
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.teaser-link:hover {
    background: #3852c5;
    transform: translateY(-1px);
}

.teaser-card-watchlist {
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

@media (max-width: 1050px) {
    .teaser-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .explore-hero-panel {
        min-width: 0;
        width: auto;
    }
}

@media (max-width: 768px) {
    .explore-page {
        padding: 24px 14px 42px;
    }

    .explore-hero {
        padding: 24px;
        border-radius: 22px;
    }

    .explore-intro {
        font-size: 1rem;
    }

    .explore-panel-number {
        font-size: 3.4rem;
    }

    .explore-section {
        margin-top: 34px;
    }

    .explore-section-heading {
        display: block;
    }

    .teaser-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .teaser-card {
        min-height: auto;
        padding: 21px;
    }
}

@media (max-width: 420px) {
    .explore-hero {
        padding: 20px;
    }

    .teaser-card-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .teaser-link {
        width: 100%;
    }
}
