.hostess-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
}
.hostess-grid .hostess-grid__card {
    padding: 1.25rem;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--color-primary-accent);
    border-radius: 25px;
}
.hostess-grid .hostess-grid__media {
    grid-area: 1 / 1 / 3 / 3;
}
.hostess-grid .hostess-grid__slider-image {
    font-size: 0;
    border-radius: 25px;
    overflow: hidden;
}
.hostess-grid .hostess-grid__card .hostess-grid__card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--round-border-radius);
    background: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
}
.hostess-grid .hostess-grid__card .hostess-grid__card-title {
    margin: 0;
    font-size: 18px;
}
.hostess-grid .hostess-grid__card-title span {
    color: var(--color-primary);
    display: block;
}

/* ========== Адаптивность ========== */
@media (max-width: 767.98px) {
    .hostess-grid {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .hostess-grid .hostess-grid__media {
        flex: 1 0 100%;
    }
    .hostess-grid .hostess-grid__card {
        width: 100%;
        flex: 1 0 100%;
        gap: 1rem;
        flex-direction: row;
        align-items: center;
    }
}
@media (max-width: 475px) {
    .hostess-grid .hostess-grid__media {
        order: 500;
    }
}