.land{
  padding: 60px 0;
  background: #FDFDFD;
}

.land__title{
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
  margin: 0 0 40px;
}

/* rows */
.land-item{
  border-bottom: 1px solid #00000033;
}

.land-item:first-child{
  border-top: 1px solid #00000033;
}

/* head */
.land-head{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 10px 32px 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: background .2s ease;
}

.land-head:hover{
  background: rgba(0,0,0,0.03);
}

.land-head__text{
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1D201F;
}

/* active title color */
.land-item.is-open .land-head__text{
  color: #01373E;
}

/* right button wrapper */
.land-head__btn{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

/* КНОПКА "Подробнее"
   В обычном состоянии всё белое, стрелка видна */
.land-more-btn{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 50px;
  padding: 7px 10px 7px 25px;
  white-space: nowrap;
  background: #fff;
  color: #fff;
  box-shadow: 0 0 0 1px #fff inset;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.land-more-btn__text{
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.land-more-btn__icon{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  transition: background .2s ease;
}

.land-more-btn__arrow{
  width: 18px;
  height: 18px;
  display: block;
  transform: rotate(0deg);
  transition: transform .2s ease;
}

/* На hover плашка становится зелёной */
.land-head:hover .land-more-btn{
  background: #01373E;
  color: #fff;
  box-shadow: none;
}

.land-head:hover .land-more-btn__icon{
  background: #fff;
}

/* В открытом состоянии: стрелка повернута */
.land-item.is-open .land-more-btn__arrow{
  transform: rotate(45deg);
}

/* panel show/hide */
.land-panel{
  display: none;
}

.land-item.is-open .land-panel{
  display: block;
}

/* panel padding */
.land-panel__inner{
  padding: 10px;
  display: flex;
  gap: 110px;
  align-items: flex-start;
}

/* left text */
.land-panel__text{
  max-width: 615px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #151515;
}

/* right media */
.land-panel__media{
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

/* layouts for images */
.land-panel__media--single{
  justify-content: flex-end;
}

.land-panel__media--single .land-img{
  width: 100%;
  max-width: 520px;
}

.land-panel__media--double{
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.land-panel__media--double .land-img{
  width: 260px;
  max-width: 260px;
}

/* image style */
.land-img{
  display: block;
  border-radius: 10px;
  border: 1px solid #00000033;
  cursor: zoom-in;
}

@media (max-width: 980px){
  .land__title{
    font-size: 44px;
  }

  .land-panel__inner{
    flex-direction: column;
    gap: 24px;
  }

  .land-panel__text{
    max-width: 100%;
  }

  .land-panel__media{
    justify-content: flex-start;
  }

  .land-panel__media--double{
    justify-content: flex-start;
    flex-direction: column;
  }

  .land-panel__media--double .land-img{
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 980px){
  .land-head{
    align-items: center;
    gap: 12px;
  }

  .land-head__text{
    flex: 0 0 80%;
    max-width: 80%;
  }

  .land-head__btn{
    flex: 0 0 20%;
    max-width: 20%;
    justify-content: flex-end;
  }

  .land-more-btn{
    padding: 0;
    gap: 0;
    background: transparent;
    box-shadow: none;
    color: transparent;
  }

  .land-more-btn__text{
    display: none;
  }

  .land-more-btn__icon{
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    background: #FFFFFF;
    border: 1px solid #0000001A;
  }

  .land-head:hover{
    background: transparent;
  }

  .land-head:hover .land-more-btn{
    background: transparent;
    box-shadow: none;
  }

  .land-head:hover .land-more-btn__icon{
    background: #FFFFFF;
  }

  .land-more-btn__arrow{
    width: 18px;
    height: 18px;
    transform: rotate(0deg);
    transition: transform .2s ease;
  }

  .land-item.is-open .land-more-btn__arrow{
    transform: rotate(45deg);
  }
}