.stores-page .stores-row {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    align-items: center;
    gap: 1rem 1.5rem;
}

.stores-page .store-directory-name {
    margin: 0;
}

.stores-page .store-directory-name-link {
    display: inline-flex;
    padding: 0;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    font-weight: 800;
    line-height: 1.15;
}

.stores-page .store-directory-content {
    grid-template-columns: minmax(150px, 0.9fr) minmax(160px, 1fr) minmax(240px, 1.7fr) auto;
    gap: 0.8rem 1rem;
    align-items: center;
}

.stores-page .store-directory-fact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.stores-page .store-directory-fact .bi {
    color: #0d5aa7;
    font-size: 0.95rem;
    flex: 0 0 auto;
}

.stores-page .store-directory-fact a,
.stores-page .store-directory-fact span {
    min-width: 0;
    color: var(--public-text);
    font-size: 0.85rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.stores-page .store-directory-fact a {
    color: #0d5aa7;
    text-decoration: none;
}

.stores-page .store-directory-fact a:hover,
.stores-page .store-directory-fact a:focus {
    color: #083d72;
    text-decoration: underline;
}

.stores-page .store-directory-action {
    display: flex;
    justify-content: flex-end;
}

.stores-page .store-directory-cta {
    white-space: nowrap;
}

.stores-page .stores-add-store-note {
    margin: 0 clamp(1.55rem, 2.9vw, 2.35rem) clamp(1.35rem, 2.6vw, 2rem);
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    text-align: center;
}

.stores-page .stores-add-store-note p {
    margin: 0;
    color: var(--public-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.stores-page .stores-add-store-note a {
    color: #0d5aa7;
    font-weight: 700;
    text-decoration: none;
}

.stores-page .stores-add-store-note a:hover,
.stores-page .stores-add-store-note a:focus {
    color: #083d72;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .stores-page .stores-row {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .stores-page .store-directory-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .stores-page .store-directory-content {
        grid-template-columns: 1fr;
    }

    .stores-page .store-directory-action {
        justify-content: flex-start;
    }
}
