.swiper-slide .ccBox {
    height: 220px;
    width: 100%;
    overflow: scroll;
}

.slide-ust {
    z-index: 999;
}

.swiper-button-next,
.swiper-button-prev {

    color: #66c3d0;
}

:root {
    --border: #e5e5e5;
}

.client-area {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 40px auto;
}

/* Genel kutular */
.firma-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border);
    min-width: 100px;
    aspect-ratio: 1 / 1;
    padding: 0 20px;
    margin-top: -1px;
}

.firma-logo.empty {
    border: none !important;
}

/* Logo görselleri */
.firma-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}

.firma-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Yazı alanı */
.text-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Desktop için sola hizalı */
    padding: 20px 60px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    border: 1px solid var(--border);
    grid-column: span 4;
    border-top: none;
    border-right: none;
    font-family: "Instrument Sans", sans-serif;
    color: #333;
}

/* Border özel durumlar */
.first-row-start {
    border-left: 1px solid var(--border);
}

.first-row-last {
    border-bottom: none;
}

.second-row-first {
    border-left: 1px solid var(--border);
}

.third-row-second {
    border-left: 1px solid var(--border);
}

.fourth-row-fifth {
    border-left: 1px solid var(--border);
}

/* 📱 Mobil — 2 kolon */
@media (max-width: 576px) {
    .client-area {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Yazıyı en üste ve ortala */
    .text-box {
        grid-column: span 2 !important;
        order: -1;
        font-size: 20px;
        padding: 20px;
        justify-content: center;
        /* yatay ortala */
        text-align: center;
        /* yazıyı ortala */
    }

    .firma-logo.empty {
        display: none !important;
    }
}

/* 📲 Tablet — 3 kolon */
@media (min-width: 577px) and (max-width: 991px) {
    .client-area {
        grid-template-columns: repeat(3, 1fr);
    }

    .text-box {
        grid-column: span 3 !important;
        order: -1;
        font-size: 24px;
        padding: 20px;
        justify-content: center;
        /* yatay ortala */
        text-align: center;
        /* yazıyı ortala */
    }

    .firma-logo.empty {
        display: none !important;
    }
}