/* =========================================================
   FICHA DE YATE - DATOS PRINCIPALES
   ========================================================= */
.yacht-specs {
  padding: 42px 0 36px;
  background: #000;
}

.yacht-specs__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.yacht-spec {
  min-width: 0;
  text-align: center;
  color: #d7b159;
}

.yacht-spec__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d7b159;
}

.yacht-spec__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yacht-spec__value {
  display: block;
  margin-bottom: 5px;
  color: #d7b159;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.yacht-spec__label {
  display: block;
  color: #d7b159;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

@media (max-width: 900px) {
  .yacht-specs__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 18px;
  }
}

@media (max-width: 560px) {
  .yacht-specs {
    padding: 32px 0 28px;
  }

  .yacht-specs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .yacht-spec__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
  }

  .yacht-spec__value {
    font-size: 16px;
  }

  .yacht-spec__label {
    font-size: 10px;
  }
}

/* =========================================================
   FICHA DE YATE - INFORMACION
   ========================================================= */
.yacht-detail__text {
  max-width: 920px;
  margin: 0 auto 42px;
  color: #ddd;
  font-size: 16px;
  line-height: 1.65;
  text-align: left;
}

.yacht-detail__text h2 {
  margin: 0 0 18px;
  color: #d7b159;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
}

.yacht-detail__text p {
  margin: 0 0 16px;
  line-height: 1.65;
}

.yacht-detail__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 36px;
  margin: 26px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(215, 177, 89, .45);
  border-bottom: 1px solid rgba(215, 177, 89, .45);
}

.yacht-detail__facts p {
  margin: 0;
}

.yacht-detail__facts strong {
  color: #d7b159;
  font-weight: 500;
}

.yacht-detail .yacht-detail__back a,
.yacht-detail .yacht-detail__back a:visited {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #d7b159;
  background: transparent;
  color: #d7b159;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.yacht-detail .yacht-detail__back a:hover,
.yacht-detail .yacht-detail__back a:focus-visible {
  background: #d7b159;
  color: #050607;
}

@media (max-width: 560px) {
  .yacht-detail__text {
    font-size: 15px;
  }

  .yacht-detail__text h2 {
    font-size: 19px;
  }

  .yacht-detail__facts {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
