/*
 * single-store.css — styling for a single Store page (bbos_stores).
 * Loaded only on is_singular('bbos_stores'). Brand blue: #0046be.
 */

.bbos-store {
    max-width: 720px;
    margin: 3rem auto 4rem;
    padding: 0 1.25rem;
    color: #1a1a1a;
    line-height: 1.55;
}

.bbos-store__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #0046be;
    margin: 0 0 1.5rem;
    line-height: 1.15;
}

.bbos-store__group {
    margin: 0 0 1.5rem;
}

.bbos-store__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0046be;
    margin: 0 0 0.4rem;
}

.bbos-store__address,
.bbos-store__phone {
    font-size: 1.05rem;
    margin: 0;
}

.bbos-store__phone a {
    color: #0046be;
    text-decoration: none;
    font-weight: 600;
}

.bbos-store__phone a:hover {
    text-decoration: underline;
}

.bbos-store__hours {
    font-size: 1.05rem;
}

.bbos-store__hours p {
    margin: 0 0 0.25rem;
}

.bbos-store__actions {
    margin: 2rem 0 0;
}

.bbos-store__btn {
    display: inline-block;
    background: #0046be;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.9rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.18s ease;
}

.bbos-store__btn:hover,
.bbos-store__btn:focus {
    background: #00348f;
    color: #ffffff;
}

@media (max-width: 600px) {
    .bbos-store {
        margin: 2rem auto 3rem;
    }

    .bbos-store__btn {
        display: block;
        text-align: center;
    }
}
