.cv-stores-page {
    padding: 24px 0 80px;
}

.cv-stores-page h1 {
    margin: 0 0 52px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 900;
    color: #151947;
}

.cv-stores-featured h2,
.cv-store-letter-section h2 {
    margin: 0 0 22px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 400;
    color: #151947;
}

.cv-featured-stores-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 0 0 48px;
}

.cv-featured-store {
    width: 110px;
    height: 110px;
    border: 3px solid #ff4d86;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    text-decoration: none;
}

.cv-featured-store img {
    max-width: 78%;
    max-height: 60%;
    object-fit: contain;
}

.cv-featured-store span {
    padding: 8px;
    color: #151947;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.cv-store-letter-section {
    margin: 0 0 58px;
}

.cv-store-letter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 90px;
}

.cv-store-letter-grid a {
    color: #151947;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    text-decoration: none;
}

.cv-store-letter-grid a:hover {
    color: #ff4d86;
}

@media (max-width: 991px) {
    .cv-store-letter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 45px;
    }
}

@media (max-width: 575px) {
    .cv-stores-page h1 {
        font-size: 38px;
        margin-bottom: 36px;
    }

    .cv-stores-featured h2,
    .cv-store-letter-section h2 {
        font-size: 36px;
    }

    .cv-featured-store {
        width: 88px;
        height: 88px;
    }

    .cv-store-letter-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cv-store-letter-grid a {
        font-size: 24px;
    }
}