/* ==========================================================================
   09-circus-blocks.css
   Блоки страницы /circus, у которых ещё не было CSS.
   Группа 1: ТВ-репортажи · Хроники · Гастроли.
   ========================================================================== */

/* ==== 1. ОБЩАЯ ВИДЕО-КАРТОЧКА ==== */
.c-video-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(170deg, var(--circus-bg-card) 0%, #101424 100%);
    border: 1px solid var(--circus-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.45s, box-shadow 0.45s;
}
.c-video-card:hover {
    transform: translateY(-5px);
    border-color: var(--circus-border-strong);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5), 0 0 36px rgba(212, 175, 55, 0.18);
}
.c-video-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0e1a;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.c-video-card__media video,
.c-video-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.c-video-card:hover .c-video-card__media video,
.c-video-card:hover .c-video-card__media img {
    transform: scale(1.05);
}
.c-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--circus-gold-light);
    background: rgba(10, 14, 26, 0.78);
    color: var(--circus-gold-light);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.55);
    transition: background 0.35s, color 0.35s, transform 0.35s;
    /* pe reset */
    z-index: 2;
}
.c-video-card:hover .c-video-card__play {
    background: var(--circus-gradient-gold);
    color: #0a0e1a;
    transform: translate(-50%, -50%) scale(1.1);
}
.c-video-card__play i {
    font-size: 1.3rem;
    transform: translateX(2px);
}
.c-video-card__caption {
    margin: 0;
    padding: 16px 18px;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--circus-gold-light);
    line-height: 1.4;
}
.c-video-card--lg .c-video-card__media {
    aspect-ratio: 4 / 3;
}

/* ==== 2. ХРОНИКИ ==== */
.c-chronicle__row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
    margin-bottom: clamp(40px, 5vw, 64px);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.c-chronicle__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.c-chronicle__item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    align-items: flex-start;
}
.c-chronicle__item:last-child {
    border-bottom: none;
}
.c-chronicle__year {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    line-height: 1;
    color: var(--circus-gold-light);
    text-shadow: 0 0 22px rgba(212, 175, 55, 0.45);
    padding-top: 2px;
}
.c-chronicle__item strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--circus-text);
    margin-bottom: 6px;
    line-height: 1.3;
}
.c-chronicle__item p {
    margin: 0;
    color: var(--circus-mute);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ==== 3. ПЕРЕЗАПУСК ==== */
.c-relaunch {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--circus-border-strong);
    border-radius: 20px;
    background: linear-gradient(170deg, rgba(26, 31, 53, 0.6), rgba(10, 14, 26, 0.85));
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
    max-width: 1280px;
    margin: 0 auto;
}
.c-relaunch__media { min-width: 0; }
.c-relaunch__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.c-relaunch__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--circus-text);
    margin: 8px 0;
    line-height: 1.15;
}
.c-relaunch__text > p {
    color: var(--circus-mute);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.c-relaunch__quote {
    padding: 14px 18px;
    border-left: 3px solid var(--circus-gold);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 10px 10px 0;
    color: #cdc2ad;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 6px 0;
}
.c-relaunch__quote strong {
    color: var(--circus-gold-light);
    font-weight: 700;
}
.c-relaunch__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.c-relaunch__tags span {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--circus-gold-light);
    padding: 6px 14px;
    border: 1px solid var(--circus-border-strong);
    border-radius: 100px;
    background: rgba(212, 175, 55, 0.06);

/* ============================================================
   БЛОК «ГАСТРОЛИ» (.c-tours__*, .c-vertical, .c-cta, .c-subtitle)
   ============================================================ */

.c-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    font-weight: 700;
    color: var(--circus-text);
    margin: 44px auto 22px;
    padding-left: 16px;
    border-left: 3px solid var(--circus-gold);
    max-width: 1280px;
}

.c-tours__row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: start;
    margin: 0 auto 48px;
    max-width: 1280px;
}

.c-tours__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.c-tours__gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--circus-border);
    transition: transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
    display: block;
}

.c-tours__gallery img:hover {
    transform: scale(1.04);
    border-color: var(--circus-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.c-tours__vertical {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 20px auto 44px;
    max-width: 1280px;
}

.c-vertical-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--circus-border);
    background: #0a0e1a;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.c-vertical-wrapper:hover {
    transform: translateY(-4px);
    border-color: var(--circus-border-strong);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.18);
}

.c-vertical {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background: #000;
}

.c-tours__photos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 auto 40px;
    max-width: 1280px;
}

.c-tours__photos img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--circus-border);
    transition: transform 0.5s, border-color 0.3s, box-shadow 0.3s;
    display: block;
}

.c-tours__photos img:hover {
    transform: scale(1.04);
    border-color: var(--circus-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.c-cta {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 22px 28px;
    border: 1px solid var(--circus-border-strong);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 107, 53, 0.05));
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: #e6d9ba;
    box-shadow: 0 0 34px rgba(212, 175, 55, 0.1);
}

.c-cta a {
    color: var(--circus-gold-light);
    border-bottom: 1px dashed var(--circus-border-strong);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.c-cta a:hover {
    color: var(--circus-fire);
    border-color: var(--circus-fire);
}

@media (max-width: 1024px) {
    .c-tours__row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .c-tours__vertical {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .c-tours__vertical {
        grid-template-columns: minmax(0, 1fr);
        max-width: 360px;
    }
    .c-tours__photos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .c-cta {
        padding: 18px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .c-tours__gallery {
        grid-template-columns: 1fr;
    }
    .c-tours__photos {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   ХРОНИКИ — 9 пунктов + подсветка 2026
   ============================================================ */

.c-chronicle__item--hot {
    position: relative;
    padding: 22px 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 107, 53, 0.05));
    border: 1px solid var(--circus-gold);
    border-radius: 12px;
    margin-top: 12px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.c-chronicle__item--hot .c-chronicle__year {
    color: var(--circus-fire);
    text-shadow: 0 0 22px rgba(255, 107, 53, 0.6);
}

.c-chronicle__item--hot strong {
    color: var(--circus-gold-light);
}

/* Длинный список — компактнее между пунктами */
.c-chronicle__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: none;
}

.c-chronicle__item {
    padding: 16px 0;
}

.c-chronicle__item:first-child {
    padding-top: 0;
}

/* На мобиле — список вертикально, год над текстом */
@media (max-width: 768px) {
    .c-chronicle__item {
        grid-template-columns: 64px 1fr;
        gap: 14px;
        padding: 14px 0;
    }
    .c-chronicle__item--hot {
        padding: 18px 14px;
    }
}


/* ============================================================
   ПРЯМОУГОЛЬНЫЕ РАМКИ (без скруглений)
   ============================================================ */
.c-video-card,
.c-video-card__media,
.c-chronicle__item,
.c-relaunch {
    border-radius: 2px !important;
}

.c-video-card {
    position: relative;
}
.c-video-card::before,
.c-video-card::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    pointer-events: none;
    z-index: 3;
    transition: width 0.4s, height 0.4s, filter 0.4s;
}
.c-video-card::before {
    top: 6px;
    left: 6px;
    border-top: 1px solid rgba(212, 175, 55, 0.75);
    border-left: 1px solid rgba(212, 175, 55, 0.75);
}
.c-video-card::after {
    bottom: 6px;
    right: 6px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.75);
    border-right: 1px solid rgba(212, 175, 55, 0.75);
}
.c-video-card:hover::before,
.c-video-card:hover::after {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.85));
}

/* ============================================================
   БЛОК «2026 — СТАРТ НОВОЙ ТРУППЫ» (.c-start-2026)
   ============================================================ */
.c-start-2026 {
    position: relative;
    max-width: 1100px;
    margin: 56px auto 0;
    padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 56px);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 107, 53, 0.06));
    border: 2px solid var(--circus-gold);
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2), inset 0 0 60px rgba(212, 175, 55, 0.04);
    overflow: hidden;
}

.c-start-2026::before,
.c-start-2026::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 2;
}
.c-start-2026::before {
    top: 10px;
    left: 10px;
    border-top: 1px solid rgba(212, 175, 55, 0.85);
    border-left: 1px solid rgba(212, 175, 55, 0.85);
}
.c-start-2026::after {
    bottom: 10px;
    right: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.85);
    border-right: 1px solid rgba(212, 175, 55, 0.85);
}

.c-start-2026__year {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--circus-gold-light);
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.55), 0 0 120px rgba(255, 107, 53, 0.3);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.c-start-2026__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 800;
    color: var(--circus-text);
    margin: 0 0 18px;
    line-height: 1.15;
}

.c-start-2026__text {
    max-width: 62ch;
    margin: 0 auto;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.6;
    color: #d8cdb4;
}

@media (max-width: 768px) {
    .c-start-2026 {
        margin-top: 36px;
        padding: 28px 20px;
    }
    .c-start-2026__year {
        font-size: 3.2rem;
    }
}

