.store-hero__contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    align-self: stretch;
}

.store-hero__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

.store-hero__contact-item svg {
    flex-shrink: 0;
}

.store-hero__contact-item--layout-tall {
    grid-row: span 2;
}

.store-hero__contact-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-width: 374px;
}

.store-hero__contact-label {
    opacity: .5;
    font-size: 14px;
    font-style: normal;
    line-height: 120%;
}

.store-hero__contact-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-hero__contact-value {
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    color: inherit;
    text-decoration: none;
}

.store-hero__contacts-button {
    color: var(--blue--blue20);
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .store-hero__contacts {
        gap: 12px;
    }

    .store-hero__contact-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .store-hero__contacts {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .store-hero__contact-item--layout-tall {
        grid-row: auto;
    }

    .store-hero__contact-label {
        font-size: 13px;
    }

    .store-hero__contact-value,
    .store-hero__contacts-button {
        font-size: 14px;
    }
}