﻿/* ===== Hero Card UI ===== */

.hero-cardui-section {
    padding: 2.75rem 0;
}

.hero-cardui-section--light {
    background: #fff;
}

.hero-cardui-section--gray {
    background: #f6f7f9;
}

/* CARD */
.hero-cardui-card {
    border: none; /* 🔥 üst çizgi gitti */
    border-radius: 22px;
    background: #ffffff;
    /* Premium layered shadow */
    box-shadow: 0 30px 60px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.06);
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

    /* subtle hover premium */
    .hero-cardui-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 40px 80px rgba(0,0,0,.12), 0 12px 30px rgba(0,0,0,.08);
    }

/* grid */
.hero-cardui-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
}

/* LEFT */
.hero-cardui-left {
    padding: 2.5rem 2.5rem;
}

.hero-cardui-kicker {
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(0,0,0,.55);
    margin-bottom: .75rem;
}

.hero-cardui-title {
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.hero-cardui-body {
    color: rgba(0,0,0,.70);
}

/* 🔥 LOGOLAR 3'LÜ GRID */
.hero-cardui-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 1.5rem;
}

.hero-cardui-logo {
    border-radius: 14px;
    padding: 14px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .hero-cardui-logo:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(0,0,0,.10);
    }

    .hero-cardui-logo img {
        height: 48px; /* 🔥 büyüttük */
        width: auto;
        max-width: 100%;
    }

/* RIGHT MEDIA */
.hero-cardui-right {
    padding: 2.5rem;
    background: radial-gradient(circle at top left, rgba(234,32,71,.08), rgba(255,255,255,0));
}

.hero-cardui-media {
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    aspect-ratio: 16 / 11;
}

.hero-cardui-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-cardui-cta {
    margin-top: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {

    .hero-cardui-grid {
        grid-template-columns: 1fr;
    }

    .hero-cardui-left,
    .hero-cardui-right {
        padding: 1.5rem;
    }

    .hero-cardui-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hero-cardui-logo img {
        height: 38px;
    }

    .hero-cardui-media {
        aspect-ratio: 16 / 10;
    }
}
