:root{
  --dark:#191818;
  --terra:#D86954;
  --beige:#F6F4F0;

  --font-onest:"Onest",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  --font-santello:"Santello","Onest",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.gostinaya-zone{
    padding-top: 100px;
}



/* section */
.ez-living-hero{ padding: 0 0 70px; }
.ez-living-hero *{ box-sizing:border-box; }

.ez-living-hero__inner{
  width:1280px;
  margin:0 auto;
}

.ez-living-hero__shape{
  position:relative;
  width:1280px;
  height:687px; /* фикс как по макету */
}

.ez-living-hero__img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius: 56px; /* мягкий общий край */
}

/* --- TITLE (top-left cutout) --- */
.ez-living-hero__title{
  position:absolute;
  left: 46px;   /* подгон под твой PNG с вырезами */
  top: 46px;    /* подгон под твой PNG с вырезами */
  z-index: 5;
  max-width: 760px; /* чтобы текст не вылазил в картинку */
}

.ez-living-hero__trow{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
}

.ez-living-hero__t{
  font-weight: 500;
  font-size: 60px;
  line-height: 1.06;
  color: var(--dark);
  font-family: var(--font-onest);
}

.ez-living-hero__t.santello{
  font-family: var(--font-santello);
  font-weight: 400;
}

.ez-living-hero__t.terra{ color: var(--terra); }

.ez-living-hero__ico-heart{
  width:74px;
  height:64px;
  object-fit:contain;
  display:block;
}
.ez-living-hero__ico-inf{
  width:91px;
  height:43px;
  object-fit:contain;
  display:block;
  transform: translateY(4px);
}

/* --- TOP-RIGHT 84x84 icon in cutout --- */
.ez-living-hero__video{
  position:absolute;
  right: 16px;  /* подгон под вырез */
  top: 1px;    /* подгон под вырез */
  width:100px;
  height:100px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 6;
  text-decoration:none;
}
.ez-living-hero__video img{
  width:100px;
  height:100px;
  display:block;
  object-fit:contain;
}

/* --- CTA button in bottom cutout (254x46) --- */
.ez-living-hero__cta{
  position:absolute;
  left: 214px;      /* подгон под нижний вырез */
  bottom: 5px;     /* подгон под нижний вырез */
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  z-index: 7;
}

.ez-living-hero__cta-pill{
  width:254px;
  height:46px;
  border-radius:999px;
  background: var(--terra);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 17px;
}
.ez-living-hero__cta-circle{
  width:46px;
  height:46px;
  border-radius:999px;
  background: var(--terra);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left:-12px;
}

/* --- Glass badge bottom-right (254x152) --- */
.ez-living-hero__badge{
  position:absolute;
  right: 40px;   /* подгон под вырез */
  bottom: 36px;  /* подгон под вырез */
  width:254px;
  height:152px;
  border-radius: 28px;
  z-index: 6;

  /* iOS glass */
  background: rgba(246,244,240,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 12px;
  padding: 16px 16px 14px;
}

/* avatars 4x 50 overlapped => total 160px */
.ez-living-hero__avatars{
  position: relative;
  width:160px;
  height:50px;
}
.ez-living-hero__avatars img{
  position:absolute;
  top:0;
  width:50px;
  height:50px;
  border-radius:999px;
  object-fit:cover;
  display:block;
  border: 2px solid rgba(246,244,240,0.9);
}
.ez-living-hero__avatars img:nth-child(1){ left:0; }
.ez-living-hero__avatars img:nth-child(2){ left:36px; }
.ez-living-hero__avatars img:nth-child(3){ left:72px; }
.ez-living-hero__avatars img:nth-child(4){ left:110px; }

.ez-living-hero__badgeText{
  text-align:center;
  color: var(--dark);
  font-family: var(--font-onest);
  font-size: 19px;
  line-height: 1.15;
}
.ez-living-hero__badgeTop{
  font-weight: 400;
}
.ez-living-hero__badgeBottom{
  font-weight: 400;
}
.ez-living-hero__badgeBottom b{
  font-weight: 700;
}

@media (max-width: 480px){

  html,
  body{
    overflow-x: hidden;
  }

  .ez-living-hero{
    width: 100%;
    padding: 0 0 28px;
    overflow-x: hidden;
  }

  .ez-living-hero *{
    box-sizing: border-box;
  }

  .ez-living-hero__inner{
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
  }

  .ez-living-hero__shape{
    position: relative;
    width: 100%;
    height: auto;
  }

  .ez-living-hero__shape picture{
    display: block;
    width: 100%;
  }

  .ez-living-hero__img{
    display: block;
    width: 100%;
    height: 548px;
    object-fit: cover;
    object-position: center center;
    border-radius: 28px;
  }

  /* Заголовок */
  .ez-living-hero__title{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    max-width: 314px;
    padding: 0;
  }

  .ez-living-hero__trow{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 2px;
  }

  .ez-living-hero__t{
    font-family: var(--font-onest);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.08;
    color: var(--dark);
    white-space: normal;
  }

  .ez-living-hero__t.santello{
    font-family: var(--font-santello);
    font-weight: 400;
  }

  .ez-living-hero__t.terra{
    color: var(--terra);
  }

  .ez-living-hero__ico-heart{
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    transform: translateY(1px);
  }

  .ez-living-hero__ico-inf{
    display: none;
  }

  /* Видео-кнопку скрываем на мобилке */
  .ez-living-hero__video{
    display: none;
  }

  /* CTA внизу */
  .ez-living-hero__cta{
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .ez-living-hero__cta-pill{
    width: calc(100% - 42px);
    max-width: 246px;
    height: 48px;
    border-radius: 999px;
    background: var(--terra);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-onest);
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    padding: 0 16px;
    white-space: nowrap;
  }

  .ez-living-hero__cta-circle{
    width: 48px;
    height: 48px;
    margin-left: -10px;
    border-radius: 999px;
    background: var(--terra);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
  }

  .ez-living-hero__cta-circle svg{
    width: 14px;
    height: 14px;
  }

  /* Бейдж */
  .ez-living-hero__badge{
    position: absolute;
    left: 22px;
    top: 186px;
    right: auto;
    bottom: auto;
    width: 136px;
    min-height: 108px;
    border-radius: 22px;
    z-index: 6;

    background: rgba(246,244,240,0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.65);
    box-shadow: 0 12px 28px rgba(0,0,0,.10);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 14px 14px 12px;
  }

  .ez-living-hero__avatars{
    position: relative;
    width: 84px;
    height: 28px;
  }

  .ez-living-hero__avatars img{
    position: absolute;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    border: 1.5px solid rgba(246,244,240,0.95);
  }

  .ez-living-hero__avatars img:nth-child(1){ left: 0; }
  .ez-living-hero__avatars img:nth-child(2){ left: 18px; }
  .ez-living-hero__avatars img:nth-child(3){ left: 36px; }
  .ez-living-hero__avatars img:nth-child(4){ left: 54px; }

  .ez-living-hero__badgeText{
    text-align: left;
    color: var(--dark);
    font-family: var(--font-onest);
    font-size: 10px;
    line-height: 1.25;
  }

  .ez-living-hero__badgeTop{
    font-weight: 400;
  }

  .ez-living-hero__badgeBottom{
    font-weight: 400;
  }

  .ez-living-hero__badgeBottom b{
    font-weight: 700;
  }
}


@media (max-width: 480px){
  .ez-living-hero__img{
    content: url('/wp-content/uploads/2026/03/Rectangle-176784.png');
  }
}


#page > div > section > div > div > div.ez-living-hero__title > div:nth-child(1){
    margin-top: -40px;
    margin-bottom: 20px;
}
#page > div > section > div > div > div.ez-living-hero__title > div:nth-child(2){
    margin-bottom: 20px;
}



:root{
  --dark:#191818;
  --font-onest:"Onest",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  --font-santello:"Santello","Onest",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.lr-title{ padding: 54px 0 34px; }
.lr-title *{ box-sizing:border-box; }

.lr-title__inner{
  width:1280px;
  margin:0 auto;
  text-align:center;
}

.lr-title__row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 22px;
  flex-wrap: wrap;
}

.lr-title__s48{
  font-family: var(--font-santello);
  font-weight: 400; /* Santello regular */
  font-size: 48px;
  line-height: 1.08;
  color: var(--dark);
}

.lr-title__o48{
  font-family: var(--font-onest);
  font-weight: 200; /* Onest ExtraLight */
  font-size: 48px;
  line-height: 1.08;
  color: var(--dark);
}

.lr-title__ico{
  display:block;
  object-fit:contain;
  flex: 0 0 auto;
}

/* sizes exactly as requested */
.lr-title__ico--r1{ width:179px; height:64px; }
.lr-title__ico--r2{ width:149px; height:90px; }
.lr-title__ico--r3{ width:91px;  height:91px; }

/* Responsive safety */
@media (max-width: 1320px){
  .lr-title__inner{ width: calc(100% - 24px); margin: 0 12px; }
  .lr-title__row{ gap: 16px; }
  .lr-title__s48, .lr-title__o48{ font-size: 38px; }
}
@media (max-width: 760px){
  .lr-title{ padding: 34px 0 22px; }
  .lr-title__s48, .lr-title__o48{ font-size: 30px; }
  .lr-title__ico--r1{ width:140px; height:auto; }
  .lr-title__ico--r2{ width:120px; height:auto; }
  .lr-title__ico--r3{ width:70px;  height:auto; }
}



:root{
  --dark:#191818;
  --beige:#F6F4F0;
  --font:"Onest",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* section */
.lr-two-cards{ padding: 52px 0 40px; }
.lr-two-cards *{ box-sizing:border-box; }

.lr-two-cards__inner{
  width: 1280px;
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1px; /* визуально как в макете */
  position: relative;
}

/* card base */
.lr-two-cards__card{
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.lr-two-cards__card--left{ width: 466px; margin-top: 0px; }  /* ниже правой */
.lr-two-cards__card--right{ width: 559px; margin-top: 74px; }   /* выше */

.lr-two-cards__media{
  border-radius: 56px;
  overflow: hidden;
  background: #e9e6e2;
}
.lr-two-cards__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* exact sizes for images */
.lr-two-cards__media--left{  width:466px; height:492px; }
.lr-two-cards__media--right{ width:559px; height:492px; }

/* text */
.lr-two-cards__title{
  margin: 18px 0 10px;
  font-family: var(--font);
  font-weight: 500;         /* Onest Medium */
  font-size: 32px;
  line-height: 1.12;
  color: var(--dark);
}

.lr-two-cards__text{
  margin: 0 0 18px;
  font-family: var(--font);
  font-weight: 400;         /* Onest Regular */
  font-size: 24px;
  line-height: 1.35;
  color: var(--dark);
  max-width: 520px;
}

/* button (common style как у вас) */
.lr-btn{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}
.lr-btn__pill{
  height: 60px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0 22px;
  font-family: var(--font);
  font-weight: 500;         /* Onest Medium */
  font-size: 22px;
  white-space: nowrap;
}
.lr-btn__circle{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--dark);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left: -14px;
}

/* exact widths */
.lr-btn--left  .lr-btn__pill{ width: 383px; }
.lr-btn--right .lr-btn__pill{ width: 281px; }

/* decor behind right card */
.lr-two-cards__decor{
  position:absolute;
  right: -110px;  /* подстрой при необходимости */
  top: -120px;    /* подстрой при необходимости */
  width:587px;
  height:587px;
  object-fit: contain;
  pointer-events:none;
  z-index: 0;
  opacity: .22;   /* как лёгкий фон */
}
.lr-two-cards__card--right > *:not(.lr-two-cards__decor){
  position: relative;
  z-index: 1;
}

/* responsive safety */
@media (max-width: 1320px){
  .lr-two-cards__inner{
    width: calc(100% - 24px);
    margin: 0 12px;
    gap: 40px;
  }
}
@media (max-width: 1100px){
  .lr-two-cards__inner{ flex-direction: column; gap: 40px; }
  .lr-two-cards__card--left{ margin-top: 0; }
  .lr-two-cards__decor{ right: -40px; top: -80px; }
}
@media (max-width: 620px){
  .lr-two-cards__card--left,
  .lr-two-cards__card--right{ width: 100%; }
  .lr-two-cards__media--left,
  .lr-two-cards__media--right{ width: 100%; height: auto; aspect-ratio: 1 / 1.05; }

  .lr-btn--left  .lr-btn__pill,
  .lr-btn--right .lr-btn__pill{ width: min(100%, 383px); }
}



:root{
  --dark:#191818;
  --beige:#F6F4F0;
  --font:"Onest",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* wrapper */
.lr-hcard{ padding: 40px 0; }
.lr-hcard *{ box-sizing:border-box; }

.lr-hcard__inner{
  width: 1158px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  gap: 90px;              /* как на макете */
}

/* image */
.lr-hcard__media{
  width: 542px;
  height: 377px;
  border-radius: 56px;
  overflow:hidden;
  background:#e9e6e2;
  flex: 0 0 542px;
}
.lr-hcard__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* text */
.lr-hcard__content{
  min-width: 0;
  flex: 1 1 auto;
  padding-top: 6px;
}

.lr-hcard__title{
  margin: 0 0 14px;
  font-family: var(--font);
  font-weight: 500;       /* Onest Medium */
  font-size: 32px;
  line-height: 1.12;
  color: var(--dark);
}

.lr-hcard__text{
  margin: 0 0 22px;
  font-family: var(--font);
  font-weight: 400;       /* Onest Regular */
  font-size: 24px;
  line-height: 1.35;
  color: var(--dark);
  max-width: 520px;
}

/* button (тот же стиль, что раньше) */
.lr-btn{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}
.lr-btn__pill{
  height: 60px;
  border-radius: 999px;
  background: var(--dark);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0 22px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 22px;
  white-space: nowrap;
}
.lr-btn__circle{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--dark);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left: -14px;
}

/* ширина кнопки под макет (можешь чуть подвинуть) */
.lr-btn--hcard .lr-btn__pill{ width: 334px; }

/* responsive safety */
@media (max-width: 1200px){
  .lr-hcard__inner{
    width: calc(100% - 24px);
    margin: 0 12px;
    gap: 40px;
  }
}
@media (max-width: 900px){
  .lr-hcard__inner{ flex-direction: column; align-items:flex-start; }
  .lr-hcard__media{ width: 100%; max-width: 542px; height: auto; aspect-ratio: 542 / 377; }
  .lr-btn--hcard .lr-btn__pill{ width: min(100%, 334px); }
}



:root{
  --dark:#191818;
  --beige:#F6F4F0;
  --font:"Onest",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* section */
.lr-two-cards{
  width: 100%;
  background: transparent;
  padding: 40px 0 30px;
}
.lr-two-cards *{ box-sizing:border-box; }

.lt-two-cards__inner{
  width: 1280px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 557px 466px;
  justify-content: space-between;
  align-items:start;
  position: relative;
}

/* card base */
.lr-card{
  position: relative;
  min-width: 0;
}

/* media */
.lr-card__media{
  width: 557px;
  height: 492px;
  border-radius: 56px;
  overflow:hidden;
  background:#e9e6e2;
  position: relative;
  z-index: 2;
}
.lr-card__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* right tall media */
.lr-card--right .lr-card__media{
  width: 466px;
  height: 620px;
}

/* decorative image behind left */
.lr-card__decor{
  position:absolute;
  left: -120px;          /* подгоняй под свой макет */
  top: -92px;            /* подгоняй под свой макет */
  width: 317px;
  height: 313px;
  object-fit: contain;
  z-index: 1;
  pointer-events:none;
  user-select:none;
  opacity: 1;
}

/* typography */
.lr-card__title{
  margin: 22px 0 10px;
  font-family: var(--font);
  font-weight: 500;      /* Onest Medium */
  font-size: 32px;
  line-height: 1.12;
  color: var(--dark);
}
.lr-card__text{
  margin: 0 0 18px;
  max-width: 520px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.35;
  color: var(--dark);
}

/* button (как в предыдущих блоках) */
.lr-btn{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}
.lr-btn__pill{
  height: 60px;
  border-radius: 999px;
  background: var(--dark);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0 22px;
  font-family: var(--font);
  font-weight: 500;      /* Onest Medium 22 */
  font-size: 22px;
  white-space: nowrap;
}
.lr-btn__circle{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--dark);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left: -14px;
}

/* button widths */
.lr-btn--left  .lr-btn__pill{ width: 383px; }
.lr-btn--right .lr-btn__pill{ width: 281px; }

/* align right card content a bit like screenshot */
.lr-card--right{
  padding-top: 0;
}
.lr-card--right .lr-card__title,
.lr-card--right .lr-card__text,
.lr-card--right .lr-btn{
  margin-left: 0;
}

/* responsive safety */
@media (max-width: 1320px){
  .lr-two-cards__inner{
    width: calc(100% - 24px);
    margin: 0 12px;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    justify-content: start;
  }
  .lr-card__media{ width: 100%; height: auto; aspect-ratio: 557/492; }
  .lr-card--right .lr-card__media{ aspect-ratio: 466/620; }
  .lr-card__decor{ left: -60px; top: -60px; }
}
@media (max-width: 820px){
  .lr-two-cards__inner{ grid-template-columns: 1fr; row-gap: 34px; }
  .lr-btn--left .lr-btn__pill,
  .lr-btn--right .lr-btn__pill{ width: min(100%, 420px); }
}

.lr-card--left{
    margin-top: 75px;
}



:root{
  --dark:#191818;
  --beige:#F6F4F0;
  --font:"Onest",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* wrapper */
.lr-horiz{
  width: 100%;
  padding: 26px 0;
}
.lr-horiz *{ box-sizing:border-box; }

.lr-horiz__inner{
  width: 1158px;                 /* как в прошлом горизонтальном блоке */
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 542px; /* текст + картинка */
  gap: 40px;
  align-items:center;
  position: relative;
  overflow: visible;             /* чтобы декор выходил за пределы */
}

/* reverse modifier (если вдруг захочешь потом поменять местами) */
.lr-horiz--reverse .lr-horiz__inner{
  grid-template-columns: 1fr 542px;
}

/* content */
.lr-horiz__title{
  margin: 0 0 12px;
  font-family: var(--font);
  font-weight: 500;              /* Onest Medium */
  font-size: 32px;
  line-height: 1.12;
  color: var(--dark);
}
.lr-horiz__text{
  margin: 0 0 18px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 20px;               /* как в прошлых блоках с описанием */
  line-height: 1.35;
  color: var(--dark);
  max-width: 520px;
}

/* image */
.lr-horiz__media{
  width: 542px;
  height: 220px;                 /* под твой пример; можешь поменять */
  border-radius: 56px;
  overflow:hidden;
  background:#e9e6e2;
  position: relative;
  z-index: 2;
}
.lr-horiz__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* button (как раньше) */
.lr-hbtn{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}
.lr-hbtn__pill{
  height: 46px;
  border-radius: 999px;
  background: var(--dark);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0 18px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}
.lr-hbtn__circle{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--dark);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left: -12px;
}

/* decorative horizontal image that goes outside */
.lr-horiz__decor{
  position:absolute;
  
  top: -300px;       /* чуть над блоком, как на макете */
  left: 150px;
  width: 820px;     /* подгони под свой декор */
  height: auto;
  z-index: -123;
  pointer-events:none;
  user-select:none;
}

/* responsive */
@media (max-width: 1200px){
  .lr-horiz__inner{
    width: calc(100% - 24px);
    margin: 0 12px;
    grid-template-columns: 1fr 1fr;
  }
  .lr-horiz__media{
    width: 100%;
    height: auto;
    aspect-ratio: 542/220;
  }
  .lr-horiz__decor{
    left: -80px;
    width: 680px;
  }
}
@media (max-width: 820px){
  .lr-horiz__inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .lr-horiz__decor{ display:none; }
}

@media (max-width: 480px){

  html, body{
    overflow-x: hidden;
  }

  /* ================= TITLE ================= */

  .lr-title{
    padding: 26px 0 14px;
  }

  .lr-title__inner{
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    text-align: center;
  }

  .lr-title__row{
    gap: 6px;
  }

  .lr-title__s48,
  .lr-title__o48{
    font-size: 18px;
    line-height: 1.1;
  }

  .lr-title__ico{
    display: none;
  }

  /* ================= 2 CARDS ================= */

  .lr-two-cards{
    padding: 12px 0;
  }

  .lr-two-cards__inner{
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .lr-two-cards__card{
    width: 100% !important;
    margin: 0 !important;
  }

  .lr-two-cards__decor{
    display: none;
  }

  .lr-two-cards__media,
  .lr-two-cards__media--left,
  .lr-two-cards__media--right{
    width: 100%;
    height: 180px;
    border-radius: 18px;
  }

  .lr-two-cards__title{
    margin: 10px 0 6px;
    font-size: 16px;
    line-height: 1.2;
  }

  .lr-two-cards__text{
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  /* кнопки */
  .lr-btn__pill{
    height: 28px;
    font-size: 10px;
    padding: 0 12px;
    width: auto !important;
  }

  .lr-btn__circle{
    width: 28px;
    height: 28px;
    margin-left: -6px;
  }

  .lr-btn__circle svg{
    width: 10px;
    height: 10px;
  }

  /* ================= H CARD ================= */

  .lr-hcard{
    padding: 12px 0;
  }

  .lr-hcard__inner{
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    flex-direction: column;
    gap: 14px;
  }

  .lr-hcard__media{
    width: 100%;
    height: 180px;
    border-radius: 18px;
  }

  .lr-hcard__title{
    font-size: 16px;
    margin-bottom: 6px;
  }

  .lr-hcard__text{
    font-size: 12px;
    line-height: 1.35;
  }

  /* ================= SECOND GRID ================= */

  .lt-two-cards__inner{
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .lr-card{
    width: 100%;
    margin: 0 !important;
  }

  .lr-card__decor{
    display: none;
  }

  .lr-card__media,
  .lr-card--right .lr-card__media{
    width: 100%;
    height: 180px;
    border-radius: 18px;
  }

  .lr-card__title{
    font-size: 16px;
    margin: 10px 0 6px;
  }

  .lr-card__text{
    font-size: 12px;
    line-height: 1.35;
  }

  /* ================= HORIZONTAL ================= */

  .lr-horiz{
    padding: 12px 0 20px;
  }

  .lr-horiz__inner{
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .lr-horiz__media{
    width: 100%;
    height: 120px;
    border-radius: 18px;
  }

  .lr-horiz__title{
    font-size: 16px;
    margin-bottom: 6px;
  }

  .lr-horiz__text{
    font-size: 12px;
    line-height: 1.35;
  }

  .lr-horiz__decor{
    display: none;
  }

  /* горизонтальная кнопка */
  .lr-hbtn__pill{
    height: 32px;
    font-size: 11px;
    padding: 0 12px;
  }

  .lr-hbtn__circle{
    width: 32px;
    height: 32px;
    margin-left: -6px;
  }

  .lr-hbtn__circle svg{
    width: 10px;
    height: 10px;
  }
}
.lr-horiz--reverse{
    margin-top: 60px;
}


:root{
  --dark:#191818;
}

/* wrapper */
.gl-beauty{
  width:100%;
  padding:80px 0 40px;
}

.gl-beauty__inner{
  width:1280px;
  margin:0 auto;
  text-align:center;
}

/* main title */
.gl-beauty__title{
  margin:0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;

  font-family:"Santello", serif;
  font-weight:400;
  font-size:80px;
  line-height:1.05;
  color:var(--dark);
}

/* icon 52x52 */
.gl-beauty__icon{
  width:52px;
  height:52px;
  object-fit:contain;
}

/* subtitle */
.gl-beauty__subtitle{
  margin-top:22px;

  font-family:"Santello", serif;
  font-weight:400;
  font-size:32px;
  line-height:1.2;
  color:var(--dark);
}

/* responsive */
@media (max-width:1280px){
  .gl-beauty__inner{
    width:calc(100% - 40px);
  }
}

@media (max-width:900px){
  .gl-beauty__title{
    font-size:48px;
    gap:16px;
    flex-wrap:wrap;
  }

  .gl-beauty__icon{
    width:36px;
    height:36px;
  }

  .gl-beauty__subtitle{
    font-size:20px;
  }
}



:root{
  --dark:#191818;
  --terra:#D86954;
  --beige:#F6F4F0;
  --font-onest:"Onest",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  --font-santello:"Santello","Onest",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* ===== BLOCK WRAP ===== */
.et-lifeproof{
  width:100%;
  padding: 70px 0;
}
.et-lifeproof *{ box-sizing:border-box; }

.et-lifeproof__inner{
  width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 672px;
  gap: 56px;
  align-items:start;
}

/* ===== LEFT PREVIEW (689px height) ===== */
.et-lifeproof__preview{
  position:relative;
  width: 100%;
  max-width: 552px;       /* слева на макете визуально уже, можно убрать если нужно */
  height: 695px;
  overflow:hidden;
  border-radius: 44px;
}

.et-lifeproof__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: translateZ(0);
}

/* top-left label */
.et-lifeproof__cornerTitle{
  position:absolute;
  left: 34px;
  top: 28px;

  font-family: var(--font-santello);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--terra);

  z-index:3;
  pointer-events:none;
}

/* bottom-right text */
.et-lifeproof__cornerText{
  position:absolute;
  right: 34px;
  bottom: 28px;

  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--dark);

  z-index:3;
  pointer-events:none;
  opacity: 0.0; /* если НЕ нужно показывать — оставь 0 */
}

/* notch note */
.et-lifeproof__note{
  position:absolute;
  right: 34px;
  bottom: 3px;

  width: 360px;
  padding: 18px 18px;
  border-radius: 22px;
  font-family: var(--font-onest);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: var(--dark);
  z-index:4;
}

/* ===== RIGHT TABS ===== */
.et-lifeproof__tabs{
  width:672px;
  display:flex;
  flex-direction:column;
  gap: 25px;
  position:relative;
}

/* top line + moving orange segment */
.et-lifeproof__line{
  width: 330px;           /* как на макете короткая линия */
  height: 4px;
  border-radius: 999px;
  background: rgba(25,24,24,.12);
  position: relative;
  margin: 0 0 6px 1px;  /* сдвиг как на макете над правой частью */
}

.et-lifeproof__dot{
  position:absolute;
  left:0;
  top: 0;
  height:100%;
  width: 72px;            /* длина оранжевого сегмента */
  border-radius: 999px;
  background: var(--terra);
  transform: translateX(0);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

/* card */
.et-lifeproof__card{
  width: 672px;
  min-height: 142px;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;

  display:flex;
  align-items:center;
  gap: 24px;

  background: var(--beige);
  border-radius: 36px;
  overflow:hidden;

  transition: transform .18s ease, box-shadow .18s ease;
}
.et-lifeproof__card:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
}

.et-lifeproof__cardImg{
  width: 227px;
  height: 142px;
  flex: 0 0 227px;
  border-radius: 32px;
  overflow:hidden;
  background:#e9e6e2;
}
.et-lifeproof__cardImg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.et-lifeproof__cardText{
  padding-right: 22px;
  font-family: var(--font-santello);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--dark);
}

/* active state */
.et-lifeproof__card.is-active .et-lifeproof__cardText{
  color: var(--terra);
}




@media (max-width: 480px){

  html, body{
    overflow-x: hidden;
  }

  /* ================= BEAUTY TITLE ================= */

  .gl-beauty{
    width: 100%;
    padding: 28px 0 16px;
  }

  .gl-beauty__inner{
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    text-align: center;
  }

  .gl-beauty__title{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 28px;
    line-height: 1.08;
  }

  .gl-beauty__icon{
    width: 18px;
    height: 18px;
  }

  .gl-beauty__subtitle{
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.25;
  }

  /* ================= LIFEPROOF ================= */

  .et-lifeproof{
    width: 100%;
    padding: 12px 0 28px;
    overflow-x: hidden;
  }

  .et-lifeproof__inner{
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* preview */
  .et-lifeproof__preview{
    width: 100%;
    max-width: 100%;
    height: 320px;
    border-radius: 28px;
    overflow: hidden;
  }

  .et-lifeproof__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .et-lifeproof__cornerTitle{
    left: 18px;
    top: 10px;
    font-size: 16px;
    line-height: 1.1;
  }

  .et-lifeproof__cornerText{
    display: none;
  }

  .et-lifeproof__note{
    right: 10px;
    bottom: 10px;
    width: 165px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 10px;
    line-height: 1.35;
  }

  /* tabs */
  .et-lifeproof__tabs{
    width: 100%;
    gap: 10px;
  }

  .et-lifeproof__line{
    width: 140px;
    height: 4px;
    margin: 0 0 2px 44px;
  }

  .et-lifeproof__dot{
    width: 42px;
  }

  .et-lifeproof__card{
    width: 100%;
    min-height: 74px;
    border-radius: 16px;
    gap: 12px;
    padding-right: 12px;
  }

  .et-lifeproof__cardImg{
    width: 82px;
    height: 74px;
    flex: 0 0 82px;
    border-radius: 14px;
  }

  .et-lifeproof__cardText{
    padding-right: 0;
    font-size: 14px;
    line-height: 1.15;
    font-family: var(--font-onest);
    font-weight: 500;
  }

  .et-lifeproof__card.is-active .et-lifeproof__cardText{
    color: var(--terra);
  }

  .et-lifeproof__card:hover{
    transform: none;
    box-shadow: none;
  }
}



.epro-projects{
  width: 100%;
  background: var(--beige);
  padding: 70px 0 60px;
}
.epro-projects *{ box-sizing: border-box; }

.epro-projects__inner{
  width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.epro-projects__title{
  text-align: center;
  margin-bottom: 44px;
}

.epro-projects__title-row1,
.epro-projects__title-row2{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.epro-projects__title .t1{
  font-family: var(--font-santello);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--dark);
}
.epro-projects__title .t2{
  font-family: var(--font-onest);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.1;
  color: var(--dark);
}
.epro-projects__title .t2-accent{ color: var(--terra); }

.epro-avatars{
  position: relative;
  width: 140px;
  height: 64px;
  display: inline-block;
}
.epro-avatars__a{
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--beige);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.epro-avatars__a.a1{ left: 0;  background-image: url("/wp-content/uploads/2026/02/Ellipse-80.png"); }
.epro-avatars__a.a2{ left: 38px; background-image: url("/wp-content/uploads/2026/02/Ellipse-81.png"); }
.epro-avatars__a.a3{ left: 76px; background-image: url("/wp-content/uploads/2026/02/Ellipse-82.png"); }

.epro-sparkle{
  width: 64px;
  height: 64px;
  display: inline-block;
  background: center / contain no-repeat url("/wp-content/uploads/2026/02/Text-Dec-Elements.png");
}

.epro-proj-slider{
  position: relative;
  overflow: hidden;
  width: 100%;
}

.epro-proj-track{
  display: flex;
  gap: 28px;
  will-change: transform;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  transform: translateX(0);
  padding-bottom: 18px;
}

.epro-proj-card{ flex: 0 0 451px; }

.epro-proj-card__link{
  display: block;
  text-decoration: none;
}

.epro-proj-card__media{
  position: relative;
  width: 451px;
  height: 701px;
  border-radius: 44px;
  overflow: hidden;
  background: #ddd;
}

.epro-proj-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.epro-proj-card__ph{
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d9d3cc, #e9e6e2);
}

.epro-proj-badge{
  position: absolute;
  top: 18px;
  left: 18px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(246,244,240,.92);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
  z-index: 5;
}

.epro-proj-like{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 45px;
  height: 45px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform .15s ease, background .15s ease;
}
.epro-proj-like:hover{
  transform: scale(1.04);
  background: rgba(0,0,0,.34);
}

.epro-proj-gradient{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 52%;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,0));
  z-index: 2;
}

.epro-proj-card__body{
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 3;
}

.epro-proj-card__title{
  margin: 0 0 18px;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 29px;
  line-height: 1.15;
  color: var(--beige);
  max-width: 340px;
}

.epro-proj-btn{
  display: inline-flex;
  align-items: center;
}

.epro-proj-btn__text{
  width: 259px;
  height: 52px;
  border-radius: 999px;
  background: var(--terra);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 14px;
}

.epro-proj-btn__icon{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -14px;
}

.epro-proj-footer{
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.epro-proj-all{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.epro-proj-all__text{
  width: 412px;
  height: 72px;
  border-radius: 999px;
  background: var(--terra);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 18px;
}

.epro-proj-all__icon{
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -18px;
}

.epro-proj-arrows{ display: flex; gap: 12px; }

.epro-proj-arrow{
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  transition: transform .15s ease, background .15s ease;
}
.epro-proj-arrow.is-prev{ background: rgba(255,255,255,.70); }
.epro-proj-arrow.is-next{ background: var(--dark); }
.epro-proj-arrow.is-next svg path{ stroke: #fff; }
.epro-proj-arrow:hover{ transform: scale(1.03); }

@media (max-width: 1280px){
  .epro-proj-card{ flex-basis: 420px; }
  .epro-proj-card__media{ width: 420px; }
}
@media (max-width: 980px){
  .epro-proj-track{ gap: 18px; }
  .epro-proj-card{ flex-basis: 360px; }
  .epro-proj-card__media{ width: 360px; height: 620px; }
  .epro-proj-all__text{ width: 320px; }
}
@media (max-width: 720px){
  .epro-projects{ padding: 50px 0; }
  .epro-projects__title .t1,
  .epro-projects__title .t2{ font-size: 32px; }
  .epro-avatars{ transform: scale(.9); }
  .epro-sparkle{ transform: scale(.85); }
  .epro-proj-footer{ flex-direction: column; align-items: flex-start; }
}



.et-guide{
  width: 100%;
  padding: 70px 0;
  background: #fff;
}
.et-guide *{ box-sizing: border-box; }

.et-guide__inner{
  width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 677px;
  gap: 60px;
  align-items: start;
}

.et-guide__title{
  margin: 0 0 28px;
  font-family: var(--font-santello);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.05;
  color: var(--dark-eterno);
}

.et-guide__textwrap{
  position: relative;
  padding-right: 60px;
}

.et-guide__text p{
  margin: 0 0 14px;
  font-family: var(--font-onest);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: var(--dark-eterno);
}
.et-guide__text p:last-child{ margin-bottom: 0; }

.et-guide__icon{
  width: 34px;
  height: 34px;
  position: absolute;
  right: 140px;
  top: 175px;
}

.et-guide__cta{
  position: relative;
  margin-top: 86px;
  width: fit-content;
}

.et-guide__btn{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.et-guide__btn-pill{
  width: 214px;
  height: 45px;
  border-radius: 999px;
  background: var(--dark-eterno);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
}

.et-guide__btn-circle{
  width: 45px;
  height: 45px;
  border-radius: 999px;
  background: var(--dark-eterno);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

.et-guide__arrow{
  width: 105px;
  height: 83px;
  position: absolute;
  left: 300px;
  top: -60px;
}

.et-guide__right{
  position: relative;
  width: 677px;
  height: 575px;
}

.et-guide__img{
  width: 677px;
  height: 575px;
  object-fit: cover;
  display: block;
  border-radius: 34px;
}

.et-guide__plaque{
  position: absolute;
  left: -95px;
  top: 235px;
  width: 350px;
  height: 150px;
  background: #d86a54a4;
  border-radius: 28px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  font-family: var(--font-onest);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

@media (max-width: 1320px){
  .et-guide__inner{
    width: calc(100% - 32px);
    margin: 0 16px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .et-guide__right{
    width: 100%;
    height: auto;
  }
  .et-guide__img{
    width: 100%;
    height: auto;
    aspect-ratio: 677 / 575;
  }
  .et-guide__plaque{ left: 16px; }
}

/* ==========================================================================
   ET-FAQ
   ========================================================================== */
.et-faq{
  width: 100%;
  padding: 70px 0;
  background: #fff;
}
.et-faq *{ box-sizing: border-box; }

.et-faq__inner{
  width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 710px;
  gap: 60px;
  align-items: start;
}

.et-faq__head{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 74px;
  position: relative;
}

.et-faq__title{
  margin: 0;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.5;
  color: var(--dark);
}

.et-faq__title-ico{
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  left: 230px;
  top: 90px;
}

.et-faq__ask{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.et-faq__ask-text{
  width: 278px;
  height: 60px;
  border-radius: 999px;
  background: var(--beige);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 22px;
}

.et-faq__ask-ico{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -14px;
}

.et-faq__right{ width: 710px; }

.et-faq__item{
  background: var(--beige);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 18px;
}

.et-faq__q{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.et-faq__qtext{
  font-family: var(--font-onest);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: var(--dark);
  text-align: left;
}

.et-faq__arr{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  transition: transform .25s ease;
}

.et-faq__a{
  height: 0;
  overflow: hidden;
  transition: height .28s cubic-bezier(.2,.8,.2,1);
}

.et-faq__a-inner{
  padding: 0 22px 22px;
  font-family: var(--font-onest);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: var(--dark);
}

.et-faq__item.is-open .et-faq__arr{ transform: rotate(180deg); }

.et-faq__all{
  display: block;
  margin-top: 14px;
  text-align: right;
  font-family: var(--font-onest);
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
}
.et-faq__all:hover{ text-decoration: underline; }

@media (max-width: 1320px){
  .et-faq__inner{
    width: calc(100% - 32px);
    margin: 0 16px;
    grid-template-columns: 1fr;
  }
  .et-faq__right{ width: 100%; }
}








@media (max-width: 480px){

  .et-guide{
    padding: 28px 0;
    overflow-x: hidden;
  }

  .et-guide__inner{
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .et-guide__left,
  .et-guide__right{
    width: 100%;
  }

  .et-guide__title{
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.02;
  }

  .et-guide__textwrap{
    padding-right: 0;
  }

  .et-guide__text p{
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .et-guide__icon{
    width: 24px;
    height: 24px;
    position: static;
    display: block;
    margin: 10px 0 0 auto;
  }

  .et-guide__cta{
    position: static;
    margin-top: 16px;
    width: auto;
  }

  .et-guide__btn{
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  .et-guide__btn-pill{
    width: auto;
    min-width: 150px;
    height: 38px;
    padding: 0 16px;
    font-size: 12px;
    border-radius: 999px;
  }

  .et-guide__btn-circle{
    width: 38px;
    height: 38px;
    margin-left: -8px;
    flex: 0 0 38px;
  }

  .et-guide__btn-circle svg{
    width: 14px;
    height: 14px;
  }

  .et-guide__arrow{
    display: none;
  }

  .et-guide__right{
    position: relative;
    height: auto;
  }

  .et-guide__img{
    width: 100%;
    height: 320px;
    border-radius: 28px;
    object-fit: cover;
  }

  .et-guide__plaque{
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    top: auto;
    width: auto;
    height: auto;
    min-height: 84px;
    border-radius: 20px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.25;
  }
}


@media (max-width: 480px){

  .epro-projects{
    padding: 28px 0 34px;
    overflow-x: hidden;
  }

  .epro-projects__inner{
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
    padding: 0;
  }

  /* Заголовок */
  .epro-projects__title{
    text-align: left;
    margin-bottom: 18px;
  }

  .epro-projects__title-row1,
  .epro-projects__title-row2{
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .epro-projects__title .t1,
  .epro-projects__title .t2{
    font-size: 18px;
    line-height: 1.15;
  }

  .epro-avatars{
    width: 52px;
    height: 24px;
  }

  .epro-avatars__a{
    width: 24px;
    height: 24px;
    border-width: 1.5px;
    box-shadow: none;
  }

  .epro-avatars__a.a1{ left: 0; }
  .epro-avatars__a.a2{ left: 14px; }
  .epro-avatars__a.a3{ left: 28px; }

  .epro-sparkle{
    width: 16px;
    height: 16px;
    background-size: contain;
  }

  /* Слайдер */
  .epro-proj-slider{
    overflow: hidden;
    width: 100%;
  }

  .epro-proj-track{
    gap: 12px;
    padding-bottom: 8px;
  }

  .epro-proj-card{
    flex: 0 0 162px;
  }

  .epro-proj-card__media{
    width: 162px;
    height: 255px;
    border-radius: 24px;
  }

  .epro-proj-badge{
    top: 10px;
    left: 10px;
    height: 24px;
    padding: 0 10px;
    gap: 6px;
    font-size: 9px;
  }

  .epro-proj-like{
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
  }

  .epro-proj-like svg{
    width: 12px;
    height: 12px;
  }

  .epro-proj-gradient{
    height: 55%;
  }

  .epro-proj-card__body{
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .epro-proj-card__title{
    margin: 0 0 10px;
    max-width: 130px;
    font-size: 12px;
    line-height: 1.25;
  }

  .epro-proj-btn__text{
    width: 112px;
    height: 30px;
    font-size: 10px;
    padding: 0 10px;
  }

  .epro-proj-btn__icon{
    width: 30px;
    height: 30px;
    margin-left: -8px;
  }

  .epro-proj-btn__icon svg{
    width: 10px;
    height: 10px;
  }

  /* Низ */
  .epro-proj-footer{
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .epro-proj-arrows{
    display: none;
  }

  .epro-proj-all{
    display: inline-flex;
    align-items: center;
  }

  .epro-proj-all__text{
    width: 145px;
    height: 38px;
    font-size: 12px;
    padding: 0 14px;
    justify-content: center;
  }

  .epro-proj-all__icon{
    width: 38px;
    height: 38px;
    margin-left: -8px;
  }

  .epro-proj-all__icon svg{
    width: 12px;
    height: 12px;
  }
}