/* WellnessShop Blocks — Locations block styles
   Edit this file to adjust the appearance of the [wsb/locations] block.
   Markup structure generated by render_locations():
   <section class="wsb-locations" style="background-image:url('...')">
     <div class="wsb-locations__inner">
       <h2 class="wsb-locations__title">Title</h2>
       <ul class="wsb-locations__list">
         <li class="wsb-locations__item">
           <span class="wsb-locations__name">Name</span>
           <a class="wsb-locations__phone" href="tel:...">(123) 456-7890</a>
           <a class="wsb-locations__link" href="...">View details</a>
         </li>
         ...
       </ul>
     </div>
   </section>
*/

.wsb-locations {
    position: relative;
    padding: 64px 20px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 690px;
}

.wsb-locations__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.wsb-locations__title {
    font-size: 56px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 120% !important;
    color: #FFF !important;
    text-align: center;
    margin-bottom: 32px;
}

.wsb-locations__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.wsb-locations__item {
  color: #FFF;
}

.wsb-locations__name {
  display: block;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    color: #FFF !important;
    text-align: center;
}

.wsb-locations__phone{
    margin: 12px 0 16px;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    color: #FFF !important;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.32px;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.wsb-locations__link {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    color: #FFF !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 120%;
    transition: transform 0.3s ease;
}

.wsb-locations__link:hover, .wsb-locations__phone:hover{
    transform: scale(1.05);
}

/* Small screens */
@media (max-width: 600px) {
    .wsb-locations {
        padding: 24px 16px;
    }

    .wsb-locations__title {
        font-size: 32px !important;
    }
}