.location-intro {
    padding: 30px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.text-center {
    text-align: center;
}

.location-page .top {
    min-height: 280px !important;
}

.location-page h1 {
    color: #086296;
    font-family: "Museo Sans Rounded";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    /* 120% */
}

.location-page {
    color: #000;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    /* 168.75% */
}

.location-page h2 {
    color: #000;
    font-family: "Museo Sans Rounded";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.92px;
    text-transform: uppercase;
}

.locations-list-tab-wrap {
    padding-bottom: 30px;
    padding-top: 30px;
}

.locations-list-tab-wrap .heading-wrap {
    max-width:920px;
    margin: auto;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.locations-list-tab-wrap .tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.locations-list-tab-wrap .tabs li {
    border-radius: 6px;
    background: #F6F6F6;
    padding: 16px 10px;
    color: #000;
    font-family: "Museo Sans Rounded";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    max-width: 350px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s;
    border: 1px solid transparent;
}

.locations-list-tab-wrap .tabs li.active,
.locations-list-tab-wrap .tabs li:hover {
    border-radius: 6px;
    border-color: rgba(0, 0, 0, 0.10);
    background: #EC779E;
    color: #fff;
}

.locations-list-tab-wrap .img-wrap {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.locations-list-tab-wrap .img-wrap img{
    transition:all 0.4s ease-in-out;
        width: 100%;
        height: 330px;
        object-fit: cover;
}

@media screen and (max-width: 1024px) {
 .locations-list-tab-wrap .img-wrap img {
     height: 300px;
  }
}

@media screen and (max-width: 768px) {
 .locations-list-tab-wrap .img-wrap img {
     height: 260px;
  }
}


.locations-list-tab-wrap .text-wrap {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 25px 15px;
}

.locations-list-tab-wrap .inner {
    position: relative;
}

.locations-list-tab-wrap .inner:after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 21.51%, rgba(0, 0, 0, 0.53) 70.67%, #000 99.9%);
    z-index: 2;
}
.locations-list-tab-wrap .inner:hover .img-wrap img{
    transform: scale(1.3);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}
.locations-list-tab-wrap .text-wrap h4 {
    font-size: 20px;
    padding-bottom: 5px;
}

.locations-list-tab-wrap .text-wrap p {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.locations-list-tab-wrap .text-wrap a {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
        display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Museo Sans Rounded";
}
.locations-list-tab-wrap .text-wrap a:after{
    content: '';
    position: absolute;
    inset: 0;
}
.locations-list-tab-wrap .swiper-wrapper{
    padding-bottom: 50px;
}
.locations-list-tab-wrap .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    display: none;
}

.locations-list-tab-wrap .swiper-pagination-bullets .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    background: #D9D9D9;
    margin: 0 4px !important;
}

.locations-list-tab-wrap .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #EC779E;
}
@media screen and (min-width:786px) {
    .row .col {
        flex: 1;
    }

    .location-page .top {
        min-height: 380px !important;
    }

    .location-page h1 {
        font-size: 60px;
        line-height: 72px;
    }
}

@media screen and (min-width:991) {
    .location-page .top {
        min-height: 480px !important;
    }

    .location-intro {
        padding: 40px 0;
    }

    .locations-list-tab-wrap {
        padding-bottom: 50px;
        padding-top: 50px;
    }
}

@media screen and (min-width:1200px) {
    .location-page .top {
        min-height: 600px !important;
    }

    .location-intro {
        padding: 80px 0;
    }

    .locations-list-tab-wrap {
        padding-bottom: 70px;
        padding-top: 80px;
    }
}
/* ================================================================
   Featured In — press logo band  (home page)
   Markup: parts/featured-in.php
   Position: between .color_text_info and .home_choose_us

   Lives HERE and not in style/components/*.scss on purpose: the SCSS
   source is from 2021 and style/style.css has been hand-edited since,
   so recompiling would destroy those edits. Keep component changes
   in this file.

   The band renders inside <section class="content">, which applies
   bullet dots and indents to every ul/li and forces h2 to #086296.
   The overrides below neutralize that — do not "simplify" the
   compound .ss-press ... selectors, they are what wins the cascade.
   ================================================================ */

.ss-press {
    padding: clamp(48px, 7vw, 88px) clamp(20px, 6vw, 72px) clamp(52px, 7vw, 92px);
    background: #fbf8f6;
    border-top: 1px solid #efe4e8;
    border-bottom: 1px solid #efe4e8;
}

.ss-press .ss-press__inner {
    max-width: 1080px;
    margin: 0 auto;
}

/* --- heading block --- */
.ss-press .ss-press__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.ss-press .ss-press__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    /* Darkened brand pink. The theme pink (#ec779e) is ~2.7:1 on this
       background and fails WCAG AA at 12px. Do not "correct" it. */
    color: #c0396f;
}

.ss-press .ss-press__rule {
    display: block;
    width: 44px;
    height: 1px;
    background: #e0c7d3;
}

/* Beats `.content h2 { color: #086296 }` (0,1,1) and the global
   `h1..h6 { padding-bottom: 20px }`. Font-family is intentionally
   inherited — the theme's Museo Sans Rounded is the desired stack. */
.ss-press .ss-press__title {
    margin: 0;
    padding: 0;
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.25;
    font-weight: 700;
    color: #2f2a2c;
    text-wrap: pretty;
}

.ss-press .ss-press__lede {
    margin: 0 auto;
    padding: 0;
    max-width: 620px;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
    color: #6b6165;
    text-wrap: pretty;
}

/* --- logo grid ---------------------------------------------------
   auto-fit with a 320px column floor: 3 columns desktop, then 2, then 1.
   The 320px floor is load-bearing. Cell content boxes are capped at
   104px tall, so column width is what determines how tall a masthead
   can render — at 4 columns The Sacramento Bee comes out ~17px tall
   and is illegible. Do not lower it to fit more columns.

   min(320px, 100%) keeps the floor from overflowing viewports narrower
   than ~360px (the design's plain 320px floor overflows at 320px).

   Cells draw their dividers with `outline`, not the grid background:
   outline takes no layout space, so adjacent outlines meet inside the
   1px gap and a partial final row ends in white rather than a large
   colored rectangle. That was an explicit client rejection.
   ----------------------------------------------------------------- */
.ss-press .ss-press__grid {
    margin: 52px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 1px;
    background: #fff;
    border: 1px solid #eadfe3;
}

.ss-press .ss-press__cell {
    outline: 1px solid #eadfe3;
    /* pinned locally: the design was approved at a 136px total cell height */
    box-sizing: border-box;
    height: 136px;
    margin: 0;
    padding: 16px;
    /* neutralizes `.content ul li { padding: 5px 0 5px 15px; position: relative }` */
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

/* kills the 4px blue dot from `.content ul li:before` */
.ss-press .ss-press__cell:before,
.ss-press .ss-press__cell:after {
    content: none;
    display: none;
}

/* Every asset shares one canvas and one normalization, so this is the
   only image rule needed. Do not add per-logo overrides. */
.ss-press .ss-press__logo {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    margin: 0;
    object-fit: contain;
}

/* Trademark disclaimer — contrast is load-bearing.
   #6b6165 on #fbf8f6 is 5.33:1 (WCAG AA at 14px). Do not lighten. */
.ss-press .ss-press__note {
    margin: 26px 0 0;
    padding: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #6b6165;
}
