.livePage__hero {
    margin-bottom: 2.5rem;
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff7eb 0%, #ffffff 52%, #f4ebe0 100%);
    box-shadow: 0 20px 55px rgba(17, 17, 17, 0.08);
}

.livePage__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #a57915;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.livePage__hero-copy h2 {
    margin-bottom: 1rem;
}

.livePage__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.livePage__schedule-card,
.livePage__panel,
.livePage__info-card {
    padding: 1.5rem;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.livePage__schedule-card h4,
.livePage__panel h4,
.livePage__info-card h5 {
    margin-bottom: 1rem;
}

.livePage__schedule-card ul {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

.livePage__schedule-card li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.livePage__schedule-card li:last-child {
    border-bottom: 0;
}

.livePage__schedule-card li span {
    text-align: right;
    font-weight: 600;
    color: #333333;
}

.livePage__player-shell {
    padding: 0.75rem;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(17, 17, 17, 0.1);
}

.livePage__player-wrap {
    position: relative;
    padding-top: 120%;
    overflow: hidden;
    border-radius: 22px;
    background: #111111;
}

.livePage__player-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.livePage__panel + .livePage__panel {
    margin-top: 1rem;
}

.livePage__stack-actions {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.livePage__stack-actions .default-btn {
    width: 100%;
}

.livePage__weekly-shell {
    margin-top: 2.5rem;
    padding: 2rem;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(31, 21, 8, 0.9), rgba(12, 12, 12, 0.92)),
        url("../images/bg-img/07.jpg") center/cover no-repeat;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.14);
}

.livePage__weekly-intro {
    color: #ffffff;
}

.livePage__weekly-intro h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.livePage__weekly-intro p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
}

.livePage__weekly-list {
    display: grid;
    gap: 1rem;
}

.livePage__weekly-item {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(240px, 0.95fr);
    gap: 1.25rem;
    align-items: center;
    padding: 1.35rem 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.1);
}

.livePage__weekly-item h5 {
    margin-bottom: 0.55rem;
}

.livePage__weekly-item p {
    margin-bottom: 0;
    color: #4a4a4a;
}

.livePage__weekly-meta {
    display: grid;
    gap: 0.55rem;
    justify-items: end;
    text-align: right;
}

.livePage__weekly-meta span {
    display: block;
    font-weight: 700;
    color: #1f1f1f;
}

.livePage__weekly-meta .default-btn {
    margin-top: 0.3rem;
}

@media (max-width: 991px) {
    .livePage__hero {
        padding: 1.5rem;
    }

    .livePage__schedule-card li {
        flex-direction: column;
    }

    .livePage__schedule-card li span {
        text-align: left;
    }

    .livePage__weekly-shell {
        padding: 1.5rem;
    }

    .livePage__weekly-item {
        grid-template-columns: 1fr;
    }

    .livePage__weekly-meta {
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 575px) {
    .livePage__actions {
        flex-direction: column;
    }

    .livePage__actions .default-btn {
        width: 100%;
        text-align: center;
    }

    .livePage__weekly-shell {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .livePage__weekly-item {
        padding: 1.15rem;
    }

    .livePage__weekly-meta .default-btn {
        width: 100%;
        text-align: center;
    }
}
