/* Ana sayfa hero — tam genişlik mozaik: sol 1 büyük + sağ 2x2 */

body .page-wrapper {
    overflow-x: hidden;
    max-width: 100%;
}

.main-slider-two.hero-pro {
    background: #fff;
    padding: 10px 0 18px;
    overflow: hidden;
}

/* Kenardan kenara, ortalanmış kutu yok */
.main-slider-two.hero-pro .hero-pro__wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

/* 4 sütun x 2 satır: sol yarı 2x2 birleşik, sağ yarı 4 kare */
.main-slider-two.hero-pro .hero-pro__mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    aspect-ratio: 2 / 1;
    max-height: 560px;
}

.main-slider-two.hero-pro .hero-pro__tile {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.main-slider-two.hero-pro .hero-pro__tile--main {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.main-slider-two.hero-pro .hero-pro__tile--side:nth-of-type(2) {
    grid-column: 3;
    grid-row: 1;
}

.main-slider-two.hero-pro .hero-pro__tile--side:nth-of-type(3) {
    grid-column: 4;
    grid-row: 1;
}

.main-slider-two.hero-pro .hero-pro__tile--side:nth-of-type(4) {
    grid-column: 3;
    grid-row: 2;
}

.main-slider-two.hero-pro .hero-pro__tile--side:nth-of-type(5) {
    grid-column: 4;
    grid-row: 2;
}

.main-slider-two.hero-pro .hero-pro__tile .news-block-three,
.main-slider-two.hero-pro .hero-pro__tile .inner-box,
.main-slider-two.hero-pro .hero-pro__tile .image {
    height: 100%;
    margin: 0;
}

.main-slider-two.hero-pro .hero-pro__tile .news-block-three .inner-box {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26, 32, 44, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}

.main-slider-two.hero-pro .hero-pro__tile .news-block-three .inner-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 32, 44, 0.12);
}

.main-slider-two.hero-pro .hero-pro__tile .image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.main-slider-two.hero-pro .hero-pro__tile .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.main-slider-two.hero-pro .hero-pro__tile .news-block-three .inner-box:hover .image img {
    transform: scale(1.05);
}

.main-slider-two.hero-pro .hero-pro__tile .image .overlay-box {
    background: linear-gradient(
        to top,
        rgba(26, 32, 44, 0.88) 0%,
        rgba(26, 32, 44, 0.4) 42%,
        transparent 100%
    );
}

.main-slider-two.hero-pro .hero-pro__tile .image .overlay-box .content {
    padding: 0 18px 22px 20px;
}

.main-slider-two.hero-pro .hero-pro__tile .image .overlay-box .content .tag {
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.main-slider-two.hero-pro .hero-pro__tile--main .image .overlay-box .content h3 {
    font-size: 26px;
    line-height: 1.35;
}

.main-slider-two.hero-pro .hero-pro__tile--main .image .overlay-box .content h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-slider-two.hero-pro .hero-pro__tile--side .image .overlay-box .content h3 {
    font-size: 15px;
    line-height: 1.4;
}

.main-slider-two.hero-pro .hero-pro__tile--side .image .overlay-box .content h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-slider-two.hero-pro .hero-pro__tile .image .overlay-box .content h3 a:hover {
    opacity: 1;
}

.main-slider-two.hero-pro .owl-dots,
.main-slider-two.hero-pro .owl-nav {
    display: none;
}

/* Tablet / mobil */
@media only screen and (max-width: 991px) {
    .main-slider-two.hero-pro .hero-pro__mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        aspect-ratio: auto;
        max-height: none;
    }

    .main-slider-two.hero-pro .hero-pro__tile--main {
        grid-column: 1 / span 2;
        grid-row: auto;
        aspect-ratio: 16 / 9;
    }

    .main-slider-two.hero-pro .hero-pro__tile--side:nth-of-type(2),
    .main-slider-two.hero-pro .hero-pro__tile--side:nth-of-type(3),
    .main-slider-two.hero-pro .hero-pro__tile--side:nth-of-type(4),
    .main-slider-two.hero-pro .hero-pro__tile--side:nth-of-type(5) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1 / 1;
    }
}

@media only screen and (max-width: 767px) {
    .main-slider-two.hero-pro {
        padding: 8px 0 14px;
    }

    .main-slider-two.hero-pro .hero-pro__wrap {
        padding: 0 6px;
    }

    .main-slider-two.hero-pro .hero-pro__mosaic {
        gap: 6px;
    }

    .main-slider-two.hero-pro .hero-pro__tile--main .image .overlay-box .content h3 {
        font-size: 20px;
    }

    .main-slider-two.hero-pro .hero-pro__tile--side .image .overlay-box .content h3 {
        font-size: 14px;
    }

    .main-slider-two.hero-pro .hero-pro__tile .image .overlay-box .content {
        padding: 0 12px 16px 14px;
    }
}

@media only screen and (max-width: 479px) {
    .main-slider-two.hero-pro .hero-pro__tile--side {
        aspect-ratio: 4 / 3;
    }
}
