.outlets-page {
    background: #fff;
    color: #171717;
}

.outlets-page__shell {
    width: min(920px, calc(100% - 32px));
    margin-inline: auto;
}

.outlets-page__shell--wide {
    width: min(1180px, calc(100% - 32px));
}

.outlets-page__masthead {
    border-top: 1px solid #ececec;
    background: #f5f5f5;
    padding: 1.35rem 0 1.15rem;
    text-align: center;
}

.outlets-page__masthead h1 {
    margin: 0;
    color: #050505;
    font-family: var(--font-body);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 900;
    line-height: 1.08;
}

.outlets-page__masthead h1 span {
    color: rgb(var(--brand));
}

.outlets-page__breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    margin-top: 0.75rem;
    color: #9f9f9f;
    font-size: 0.78rem;
}

.outlets-page__breadcrumb a {
    color: #9f9f9f;
    text-decoration: none;
}

.outlets-page__breadcrumb a:hover,
.outlets-page__breadcrumb span:last-child {
    color: rgb(var(--brand));
}

.outlets-page__section {
    padding: 1.3rem 0 4.6rem;
}

.outlets-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.55rem;
}

.outlets-page__card {
    min-width: 0;
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: #fff;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.06);
}

.outlets-page__card-head {
    padding: 1rem 1rem 0.55rem;
}

.outlets-page__card-head h2 {
    margin: 0;
    color: rgb(var(--brand));
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
}

.outlets-page__card-head p {
    margin: 0.45rem 0 0;
    color: #787878;
    font-size: 0.72rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.2;
}

.outlets-page__card-media {
    overflow: hidden;
    background: #f1f1f1;
    aspect-ratio: 1.22;
}

.outlets-page__card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outlets-page__card-body {
    padding: 0.8rem 1rem 1rem;
}

.outlets-page__address,
.outlets-page__meta {
    margin: 0.28rem 0 0;
    color: #787878;
    font-size: 0.84rem;
    line-height: 1.45;
}

.outlets-page__meta span {
    color: #5f5f5f;
    font-weight: 700;
}

.outlets-page__meta a {
    color: inherit;
    text-decoration: none;
}

.outlets-page__meta a:hover {
    color: rgb(var(--brand));
}

.outlets-page__socials {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
}

.outlets-page__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease;
}

.outlets-page__socials a:hover {
    transform: translateY(-1px);
    background: rgb(var(--brand));
}

.outlets-page__socials svg {
    width: 0.95rem;
    height: 0.95rem;
}

.outlets-page__empty {
    grid-column: 1 / -1;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
    padding: 3rem 1.5rem;
    color: #5b6472;
    text-align: center;
    font-weight: 700;
}

@media (max-width: 991px) {
    .outlets-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .outlets-page__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .outlets-page__card-media {
        aspect-ratio: 1.34;
    }
}
