.construction-detail {
  width: calc(100% - 40px);
  height: 598.352px;
  margin-inline: 20px;
  padding-top: 34px;
  color: var(--color-light);
  background: var(--color-dark);
  border: 1px solid rgba(244, 246, 244, 0.1);
}

.construction-detail__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  width: calc(100% + 2px);
  height: 564.352px;
  margin-left: -1px;
}

.construction-detail__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 564.352px;
}

.construction-detail__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.construction-detail__eyebrow > span {
  width: 30px;
  height: 1px;
  background: var(--color-yellow);
}

.construction-detail__eyebrow p {
  margin: 0;
  color: rgba(244, 246, 245, 0.6);
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.construction-detail__title {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 116px;
  margin: 0;
  padding-top: 22px;
  color: var(--color-light);
  font-size: 44px;
  font-weight: 600;
  line-height: 46.64px;
  letter-spacing: -0.66px;
  text-transform: uppercase;
  white-space: nowrap;
}

.construction-detail__title span:last-child {
  color: rgba(244, 246, 245, 0.6);
  font-weight: 400;
}

.construction-detail__lead {
  width: 480px;
  margin: 0;
  padding-top: 24px;
  color: rgba(244, 246, 245, 0.72);
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
}

.construction-detail__features {
  width: 100%;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid rgba(244, 246, 245, 0.12);
  list-style: none;
}

.construction-detail__feature {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 54.25px;
  border-bottom: 1px solid rgba(244, 246, 245, 0.12);
  white-space: nowrap;
}

.construction-detail__feature span {
  width: 50px;
  flex: 0 0 50px;
  color: var(--color-yellow);
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.2px;
}

.construction-detail__feature p {
  margin: 0;
  color: rgba(244, 246, 245, 0.82);
  font-size: 15px;
  font-weight: 400;
  line-height: 23.25px;
}

.construction-detail__action-row {
  position: relative;
  width: 100%;
  height: 83px;
}

.construction-detail__action {
  position: absolute;
  top: 30px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 26px;
  color: var(--color-dark);
  background: var(--color-yellow);
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
}

.construction-detail__action img {
  width: 20px;
  height: 20px;
}

.construction-detail__gallery {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 300px 200px;
  gap: 12px;
  width: 100%;
}

.construction-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1b211e;
  border-radius: 16px;
}

.construction-detail__image--wide {
  grid-column: 1 / -1;
}

.construction-detail__warranty {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  padding: 24px;
  color: var(--color-dark);
  background: var(--color-yellow);
  border-radius: 16px;
}

.construction-detail__warranty strong {
  font-size: 46px;
  font-weight: 600;
  line-height: 46px;
  letter-spacing: -1.38px;
  white-space: nowrap;
}

.construction-detail__warranty span {
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .construction-detail {
    width: calc(100% - 40px);
    height: auto;
    padding: 40px 20px;
  }

  .construction-detail__layout {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .construction-detail__content {
    height: auto;
  }
}

@media (max-width: 700px) {
  .construction-detail__title {
    font-size: 36px;
    line-height: 38px;
  }

  .construction-detail__lead {
    width: min(100%, 480px);
  }

  .construction-detail__feature {
    height: auto;
    min-height: 54px;
    padding: 14px 0;
    white-space: normal;
  }

  .construction-detail__gallery {
    grid-template-rows: 260px 180px;
  }

  .construction-detail__warranty {
    min-height: 180px;
  }
}

@media (max-width: 520px) {
  .construction-detail__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 190px 190px;
  }

  .construction-detail__warranty span {
    white-space: normal;
  }
}
