/* ==================================================
   FRONT PAGE – CORE (GLOBAL + ORTAK KOMPONENTLER)
================================================== */

body.home {
    background: #f5f5f5;
}

body.home .site-main {
    padding: 20px 0;
}

/* ==================================================
   DIVIDER (ŞU AN KAPALI – DAVRANIŞ KORUNUR)
   Not: İleride açmak istersen display:none kaldırman yeterli
================================================== */

.section-divider {
    width: 48px;
    height: 3px;
    background: #d32f2f;
    margin: 40px auto;
    border-radius: 3px;
    display: none;
}

/* =========================
   SECTION HEAD (ORTAK)
========================= */

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.section-head .section-title {
    margin: 0;
}

.section-head .see-all {
    white-space: nowrap;
}

/* ==================================================
   NEWS GRID / CARD (ORTAK - BASE)
================================================== */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    will-change: transform;
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s ease;
}

.news-card h3 {
    font-size: 15px;
    padding: 12px 14px 8px;
}

.news-date {
    padding: 0 14px 14px;
    font-size: 12px;
    color: #777;
}

/* BASE HOVER (nötr) */
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,.10);
}

.news-card:hover img {
    transform: scale(1.05);
}

@media (hover: none) {
    .news-card:hover {
        transform: none;
        box-shadow: none;
    }

    .news-card:hover img {
        transform: none;
    }
}
/* ==================================================
   FRONT PAGE – AFTER SPONSOR BOXED (ORTAK WRAPPER)
================================================== */

.front-page-after-sponsor {
    max-width: 1200px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,.06);
    overflow: hidden;
}

/* =========================
   HERO → SPONSOR SPACING FIX (GENERAL)
========================= */

.home-sponsors {
    margin-top: 42px;
}

/* ==================================================
   MOBILE (ORTAK)
================================================== */

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   GLOBAL IMAGE SHARPNESS FIX
========================= */

body.home img {
    image-rendering: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

body.home .race-image,
body.home [style*="background-image"] {
    background-size: cover;
    background-position: center;
    image-rendering: auto;
}