/* =========================
   EXAMPLES (slider like services)
   ========================= */

.examples{
  padding: 60px 0;
  background: #FDFDFD;
  overflow: hidden; /* чтобы full-bleed не дал горизонтальный скролл */
}

.examples__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 30px;
}

.examples__title{
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
}

/* NAV (твоя arrow.png уже в круге) */
.examples__nav{
  display:flex;
  gap: 12px;
}
.examples__nav-btn{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
	height: 46px;
	width: 46px;
  line-height: 0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.examples__nav-ico{
  width: 46px;
  height: 46px;
  display:block;
  opacity: 0.95;
}
.examples__nav-ico--left{
  transform: rotate(180deg);
  opacity: 0.55;
}
.examples__nav-btn:hover .examples__nav-ico{ opacity: 1; }
.examples__nav-btn.is-disabled{
  cursor: default;
  opacity: 0.35;
}

/* full-bleed вправо + клип */
.examples__right{
  margin-top: 60px;

  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);

  overflow: hidden;
}

.examples-track{
  display:flex;
  gap: 15px;
  transform: translate3d(0,0,0);
  transition: transform .35s ease;
  will-change: transform;
}

/* CARD 430x391 */
.ex-card{
  width: 430px;
  height: 391px;
  flex: 0 0 430px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: #9a9a9a; /* серый фон пока нет картинок */
}

/* фон-картинка через ::before, чтобы зумился плавно */
.ex-card::before{
  content:"";
  position:absolute;
  inset:0;

  /* если --bg задан, будет картинка, иначе останется серый фон */
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1);
  transition: transform .55s ease;
  will-change: transform;
}

/* зум */
.ex-card:hover::before{
  transform: scale(1.3);
}

.ex-card__inner{
  position:absolute;
  inset:0;
  padding: 20px;
  display:flex;
  align-items:flex-end;
  z-index: 2;
}

/* нижний инфо-блок */
.ex-info{
  width: 100%;
  padding: 20px;
  border-radius: 10px;

  /* glass morphism */
  background: #FDFDFD40;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #FDFDFD;
}

.ex-info__row{
  display:flex;
  align-items:center;
}

.ex-info__row--top{
  gap: 10px;
}

.ex-info__pin{
  width: 18px;
  height: 18px;
  display:block;
  object-fit: contain;
}

.ex-info__addr{
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #FDFDFD;
}

.ex-info__row--bottom{
  margin-top: 10px;
  justify-content: space-between;
  gap: 16px;
}

.ex-info__name{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #FDFDFD;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ex-info__area{
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #FDFDFD;
  white-space: nowrap;
}

.examples__bottom{
  margin-top: 20px;
  display:flex;
  justify-content: flex-end;
}

.examples__all{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #000000;
  text-decoration: underline;
}

/* адаптив */
@media (max-width: 980px){
  .examples__title{ font-size: 44px; }

  .examples__right{
    margin-right: 0;
    padding-right: 0;
  }

  .examples__bottom{
    justify-content: flex-start;
  }
}

@media (max-width: 767px){
  .examples{
    padding: 50px 0;
  }

  .examples__top{
    gap: 18px;
    align-items: center;
  }

  .examples__title{
    font-size: 32px;
  }

  .examples__right{
    margin-top: 30px;
    margin-right: 0;
    padding-right: 0;
  }

  .examples-track{
    gap: 15px;
  }

  .ex-card{
    width: 100%;
    max-width: none;
    height: 320px;
    flex: 0 0 100%;
  }

  .ex-card:hover::before{
    transform: scale(1);
  }

  .ex-card__inner{
    padding: 15px;
  }

  .ex-info{
    padding: 16px;
  }

  .ex-info__addr{
    font-size: 18px;
  }

  .ex-info__name{
    font-size: 16px;
  }

  .ex-info__area{
    font-size: 18px;
  }

  .examples__bottom{
    margin-top: 18px;
    justify-content: flex-start;
  }

  .examples__all{
    font-size: 18px;
  }
}