﻿
.brand-band {
    background: #f2f2f2;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    width: 100%;
    height: var(--brand-h);
    display: flex;
    align-items: center;
    margin: 0; /* boşluk olmasın */
    padding: 0; /* padding inner'da */
    background: #f2f2f2;
    border-top: 0; /* hero ile birleşsin */
    border-bottom: 1px solid #dcdcdc;
}

.brand-band__inner {
    width: 100%;
    padding: 22px 32px; 
    /* kenarlardan nefes */
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.brand-band__slogan {
    flex: 1;
    text-align: center;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .5px;
    color: #111;
    white-space: nowrap;
}




.brand-band__logo {
    width: 220px; /* solda/sağda hizalı dursun */
    display: flex;
    align-items: center;
    justify-content: center;
}

    .brand-band__logo img {
        max-width: 100%;
        max-height: 80px;
        width: auto;
        height: auto;
        display: block;
        filter: grayscale(10%); /* istersen kaldır */
    }

brand-band__logo--left {
    justify-self: start;
}

.brand-band__logo--right {
    justify-self: end;
}

/* Responsive */
@media (max-width: 900px) {

    .brand-band__inner {
        grid-template-columns: auto 1fr auto;
        padding: 14px 14px;
        gap: 10px;
    }

    .brand-band__slogan {
        font-size: 11px; /* kritik */
        font-weight: 650; /* 800 fazla geniş */
        letter-spacing: .3px;
    }

    .brand-band__logo {
        width: auto;
    }

        .brand-band__logo img {
            max-height: 40px;
            max-width: 28vw;
            height: auto;
        }
}


 
