.topcar-tv-section {
    background: #f4f0ea;
    padding: 110px 0;
    overflow: hidden;
}

.topcar-tv-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    gap: 72px;
    align-items: center;
}

.topcar-tv-content {
    max-width: 620px;
}

.topcar-intro-title {
    color: #a78600;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.topcar-tv-title {
    color: #141414;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin: 0 0 30px;
}

.topcar-tv-desc {
    color: #666;
    font-size: 20px;
    line-height: 1.9;
    font-weight: 500;
    max-width: 600px;
    margin: 0;
}

.topcar-tv-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 34px;
}

.topcar-tv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    background: #f7c600;
    color: #111;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    width: auto;
}

.topcar-tv-btn:hover {
    background: #fff;
    color: #111;
    transition: 500ms;
}

.topcar-tv-btn .flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.topcar-tv-btn img {
    width: 25px;
    height: 25px;
}

.topcar-tv-link {
    color: #111;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
}

.topcar-tv-card {
    position: relative;
}

.topcar-tv-media {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
    text-decoration: none;
    background: #111;
}

.topcar-tv-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.topcar-tv-media:hover img {
    transform: scale(1.035);
}

.topcar-tv-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.88) 100%);
    z-index: 1;
}

.topcar-tv-play {
    position: absolute;
    top: 42px;
    left: 42px;
    width: 82px;
    height: 82px;
    background: #f7c600;
    color: #111;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topcar-tv-play svg {
    width: 34px;
    height: 34px;
    stroke-width: 2.5;
}

.topcar-tv-caption {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 44px;
    z-index: 2;
}

.topcar-tv-caption div {
    color: #f7c600;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 12px;
}

.topcar-tv-caption h3 {
    color: #fff;
    font-size: clamp(28px, 2.5vw, 44px);
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .topcar-tv-section {
        padding: 80px 0;
    }

    .topcar-tv-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .topcar-tv-content {
        max-width: 760px;
    }

    .topcar-tv-media,
    .topcar-tv-media img {
        min-height: 460px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .topcar-tv-section {
        padding: 64px 0;
    }

    .topcar-tv-title {
        font-size: 34px;
    }

    .topcar-tv-desc {
        font-size: 16px;
        line-height: 1.8;
    }

    .topcar-tv-actions {
        margin-top: 26px;
    }

    .topcar-tv-media,
    .topcar-tv-media img {
        min-height: 390px;
    }

    .topcar-tv-play {
        top: 24px;
        left: 24px;
        width: 64px;
        height: 64px;
    }

    .topcar-tv-caption {
        left: 24px;
        right: 24px;
        bottom: 28px;
    }

    .topcar-tv-caption h3 {
        font-size: 26px;
    }
}