/* ── LOCATION OVERVIEW STRIP ── */
.overview-strip {
    background: var(--cream);
    border-bottom: 1px solid var(--warm-gray);
    padding: 0 8%;
    display: flex;
    gap: 0;
}

.overview-item {
    flex: 1;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-right: 1px solid var(--warm-gray);
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.overview-item:last-child {
    border-right: none;
}

.overview-item:hover {
    background: white;
}

.overview-item.active {
    background: var(--off-white);
}

.overview-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.overview-num {
    font-family: 'Bangers', cursive;
    font-size: 40px;
    letter-spacing: 1px;
    color: rgba(219, 5, 5, 0.12);
    line-height: 1;
    flex-shrink: 0;
}

.overview-item.active .overview-num {
    color: rgba(219, 5, 5, 0.25);
}

.overview-body {}

.overview-branch {
    font-family: 'Bangers', cursive;
    font-size: 18px;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin-bottom: 3px;
}

.overview-short {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}