.tour-operators-home {
    max-width: 1120px;
    margin: 56px auto;
    padding: 0 16px;
}

.tour-operators-home__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tour-operators-home__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: #1f2933;
}

.tour-operators-home__count {
    min-width: 48px;
    padding: 9px 14px;
    border: 1px solid #d9dde3;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    color: #4d5966;
    background: #fff;
}

.tour-operators-home__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.tour-operators-home__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 20px;
    border-radius: 8px;
    background: #f6f7f9;
    text-decoration: none;
    color: #26313d;
    transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.tour-operators-home__item:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 41, 51, .1);
    transform: translateY(-1px);
}

.tour-operators-home__logo {
    display: block;
    max-width: 150px;
    max-height: 56px;
    object-fit: contain;
}

.tour-operators-home__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

@media (max-width: 1023px) {
    .tour-operators-home__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tour-operators-home {
        margin: 40px auto;
    }

    .tour-operators-home__header {
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
    }

    .tour-operators-home__title {
        font-size: 20px;
    }

    .tour-operators-home__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .tour-operators-home__item {
        min-height: 88px;
        padding: 16px;
    }

    .tour-operators-home__logo {
        max-width: 120px;
        max-height: 44px;
    }
}
