/* ================================================================
   TerraFloor — where.css
   ================================================================ */

   .where-section {
   
  padding-inline: var(--container-pad);
    
    max-width: var(--container-max);
    margin: auto;
}

.where-section__inner {
    padding: 5.208vw;
    display: flex;
    flex-direction: column;
    gap: 40px;

     border-radius: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
     position: relative;
    isolation: isolate;
}


.where-section__inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    box-shadow: inset 0 0 0 0px rgba(249,249,249,0.1);
    pointer-events: none;
    z-index: 10;
}



/* ---- Заголовочная часть ---- */
.where-section__head {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.where-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--color-brown);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.where-section__eyebrow-line {
    display: block;
    width: 19px;
    height: 0;
    border-top: 2px solid var(--color-brown);
    flex-shrink: 0;
}

.where-section__title {
    color: var(--color-white);
    font-size: 45px;
    line-height: 51px;
    font-weight: 600;
    margin: 0;
    max-width: 1000px;
}

.where-section__desc {
    color: var(--color-white);
    font-size: 17px;
    line-height: 27px;
    margin: 0;
    opacity: 0.9;
}

/* ---- Карточки в ряд ---- */
.where-section__cards {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.where-card {
    flex: 1;
    background: rgba(87, 87, 87, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    min-width: 0;
}

.where-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f6f0eb;
    border-radius: 100px;
    padding: 10px;
    flex-shrink: 0;
}
.where-card__icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.where-card__title {
    color: var(--color-white);
    font-size: 21px;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
}

.where-card__text {
    color: var(--color-white);
    font-size: 15px;
    line-height: 21px;
    margin: 0;
    opacity: 0.85;
}

/* ================================================================
   Адаптив
   ================================================================ */
@media (max-width: 1280px) {
    .where-section__title { font-size: 34px; line-height: 40px; }
  

    .where-section__cards { flex-wrap: wrap; }
    .where-card { flex: 1 1 calc(50% - 15px); }
}

@media (max-width: 768px) {
      
   .where-section {
  padding-inline: 0;
  
}
    
    .where-section__inner { padding: 50px var(--container-pad); gap: 22px; border-radius: 0; }
    .where-section__title { font-size: 28px; line-height: 32px; }
    .where-card { flex: 1 1 100%; }

.where-section__eyebrow {
    font-size: 14px;
}
.where-section__head { 
    gap: 20px;
}

.where-section__desc {
    font-size: 14px;
    line-height: 20px;
}
.where-card {
    padding: 20px;
}

.where-card__title {
    font-size: 16px;
    line-height: 20px;
 
}
.where-card__text {
    font-size: 14px;
    line-height: 20px;
  
}




}