.videotheque-page {
    background:
        radial-gradient(circle at top left, rgba(14, 128, 64, 0.12), transparent 34%),
        linear-gradient(180deg, #f4f7f4 0%, #ffffff 52%, #f7f8fa 100%);
    padding: 40px 0 72px;
}

.videotheque-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.videotheque-intro {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.8fr) minmax(220px, 0.8fr);
    align-items: end;
    margin-bottom: 28px;
}

.videotheque-eyebrow {
    margin: 0 0 12px;
    color: #0e8040;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.videotheque-heading {
    margin: 0 0 12px;
    color: #14302a;
    font-size: clamp(1.9rem, 2.4vw, 2.8rem);
    line-height: 1.08;
}

.videotheque-copy {
    max-width: 760px;
    margin: 0;
    color: #48615b;
    font-size: 1rem;
    line-height: 1.75;
}

.videotheque-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
    border: 1px solid rgba(20, 48, 42, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 18px 40px rgba(18, 43, 37, 0.08);
}

.videotheque-stat__value {
    color: #0e8040;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1;
}

.videotheque-stat__label {
    color: #48615b;
    font-size: 0.95rem;
    font-weight: 600;
}

.videotheque-filters {
    margin-bottom: 20px;
    padding: 24px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 36, 31, 0.08);
}

.videotheque-filters__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
}

.videotheque-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #14302a;
    font-size: 0.92rem;
    font-weight: 600;
}

.videotheque-field input,
.videotheque-field select {
    min-height: 48px;
    border: 1px solid rgba(20, 48, 42, 0.15);
    border-radius: 16px;
    padding: 0 16px;
    background: #fbfcfb;
    color: #17342d;
    font-size: 1rem;
}

.videotheque-field input:focus,
.videotheque-field select:focus {
    outline: none;
    border-color: rgba(14, 128, 64, 0.55);
    box-shadow: 0 0 0 4px rgba(14, 128, 64, 0.12);
}

.videotheque-filters__actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.videotheque-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.videotheque-btn:hover {
    transform: translateY(-1px);
}

.videotheque-btn--primary {
    background: linear-gradient(135deg, #ed2024, #ff4b3e);
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(237, 32, 36, 0.18);
}

.videotheque-btn--secondary {
    border-color: rgba(20, 48, 42, 0.12);
    background: #ffffff;
    color: #14302a;
}

.videotheque-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.videotheque-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(14, 128, 64, 0.1);
    color: #0e8040;
    font-size: 0.88rem;
    font-weight: 700;
}

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

.videotheque-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(20, 48, 42, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(19, 43, 37, 0.08);
}

.videotheque-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #dce7de, #c4d8c7);
}

.videotheque-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.videotheque-card:hover .videotheque-card__media img {
    transform: scale(1.04);
}

.videotheque-card__play {
    position: absolute;
    inset: auto auto 18px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #ed2024;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.videotheque-card__badges {
    position: absolute;
    inset: 16px 16px auto auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.videotheque-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(20, 48, 42, 0.78);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.videotheque-badge--kind {
    background: rgba(14, 128, 64, 0.86);
}

.videotheque-badge--live {
    background: rgba(237, 32, 36, 0.92);
}

.videotheque-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
}

.videotheque-card__meta,
.videotheque-card__context {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: #5b6f69;
    font-size: 0.84rem;
}

.videotheque-card__title {
    margin: 0;
    color: #14302a;
    font-size: 1.18rem;
    line-height: 1.35;
}

.videotheque-card__description {
    margin: 0;
    color: #4d645e;
    line-height: 1.7;
}

.videotheque-card__actions {
    margin-top: auto;
    padding-top: 6px;
}

.videotheque-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0e8040;
    font-weight: 700;
    text-decoration: none;
}

.videotheque-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
    padding-top: 10px;
}

.videotheque-pagination__link,
.videotheque-pagination__current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #14302a;
    font-weight: 700;
}

.videotheque-pagination__link {
    text-decoration: none;
}

.videotheque-empty {
    display: grid;
    place-items: center;
    gap: 14px;
    padding: 64px 24px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 36, 31, 0.08);
    text-align: center;
}

.videotheque-empty i {
    font-size: 2.6rem;
    color: #0e8040;
}

.videotheque-empty h3,
.videotheque-empty p {
    margin: 0;
}

@media (max-width: 1024px) {
    .videotheque-intro,
    .videotheque-filters__grid,
    .videotheque-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .videotheque-filters__grid .videotheque-field:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .videotheque-page {
        padding: 28px 0 56px;
    }

    .videotheque-shell {
        width: min(100% - 24px, 1180px);
    }

    .videotheque-intro,
    .videotheque-filters__grid,
    .videotheque-grid,
    .videotheque-pagination {
        grid-template-columns: minmax(0, 1fr);
    }

    .videotheque-pagination {
        justify-content: center;
        flex-wrap: wrap;
    }

    .videotheque-filters,
    .videotheque-card__body {
        padding: 18px;
    }

    .videotheque-btn {
        width: 100%;
    }
}
