@charset "utf-8";

/* ==========================================================
   AWI – LIVE & AKTUELL
   Seitenspezifisches CSS
========================================================== */

.live-intro {
    padding: 100px 0 60px;
    background: #fff;
}

.live-video-section {
    padding: 30px 0 90px;
    background: #f7f8fa;
}

.live-video-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
    transition: transform .35s ease, box-shadow .35s ease;
}

.live-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .15);
}

.live-video-frame {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #111;
}

.live-video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111;
}

.live-video-content {
    padding: 26px 28px 32px;
}

.live-video-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #c40018;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.live-video-content h3 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    line-height: 1.25;
}

.live-video-content p {
    margin: 0;
    color: #666;
    line-height: 1.75;
}

.live-cta {
    padding: 90px 0;
    background: #fff;
}

.live-cta h2 {
    margin: 0 0 20px;
    font-size: 2.4rem;
    line-height: 1.2;
}

.live-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
    line-height: 1.8;
}

.live-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.live-video-frame video:focus-visible,
.live-cta-buttons a:focus-visible {
    outline: 3px solid #c40018;
    outline-offset: 4px;
}

@media (max-width: 991px) {

    .live-intro {
        padding: 80px 0 50px;
    }

    .live-video-section {
        padding: 25px 0 70px;
    }

    .live-video-content {
        padding: 24px 25px 28px;
    }

    .live-cta {
        padding: 75px 0;
    }

    .live-cta h2 {
        font-size: 2.1rem;
    }

}

@media (max-width: 767px) {

    .live-intro {
        padding: 65px 0 40px;
    }

    .live-video-section {
        padding: 20px 0 55px;
    }

    .live-video-card {
        border-radius: 18px;
    }

    .live-video-content {
        padding: 22px 20px 26px;
    }

    .live-video-content h3 {
        font-size: 1.3rem;
    }

    .live-video-content p {
        line-height: 1.7;
    }

    .live-cta {
        padding: 65px 0;
    }

    .live-cta h2 {
        font-size: 1.8rem;
    }

    .live-cta-buttons {
        flex-direction: column;
    }

    .live-cta-buttons a {
        width: 100%;
        max-width: 320px;
    }

}
.live-cta-buttons .btn-secondary-custom {
    background: #ffffff;
    color: #333333;
    border: 2px solid #333333;
}

.live-cta-buttons .btn-secondary-custom:hover,
.live-cta-buttons .btn-secondary-custom:focus {
    background: #333333;
    color: #ffffff;
}