.banner7__container_mini2 {
    gap: 4px;
    padding: 4px;
    background: #2D2625;
    border-radius: 24px;
    width: min-content;
    display: flex;
    justify-content: center;
    align-self: center;
}

.banner7__row {
    display: flex;
    gap: 4px;
}

.banner7__column {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.banner7__card {
    width: 92px;
    height: 92px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #0A0A0A;
}

.banner7__card:hover {
    transform: scale(1.05);
}

.banner7__card.selected {
    background: #F6F4EC;
}

.banner7__text1 {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    color: #F6F4EC;
}

.banner7__text2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    color: #F6F4EC;
}

.banner7__text3 {
    font-family: "Courier New", monospace;
    font-size: 40px;
    color: #F6F4EC;
}

.banner7__text4 {
    font-family: "Roboto Slab", serif;
    font-size: 40px;
    color: #F6F4EC;
}

/* Цвет текста при выборе */
.banner7__card.selected span {
    color: #0A0A0A;
}