.phobos-detail {
  max-width: 1328px;
  margin: 16px auto 48px;
  padding: 0 24px;
  font-family: Arial, sans-serif;
}

@media (max-width: 767px) {
  .phobos-detail {
    margin: 12px auto 32px;
    padding: 0 16px;
  }
}

.phobos-detail__inner {
  width: 100%;
}

.phobos-detail__topBadges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.phobos-detail__topBadge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.phobos-detail__topBadge--status {
  background: #006c5b;
}

.phobos-detail__topBadge--location {
  background: #7b8794;
}

.phobos-detail__title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: #1d2746;
  margin: 0 0 24px;
}

.phobos-detail__cost {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #5a6472;
  margin-bottom: 24px;
}

.phobos-detail__contentWrap {
  width: 100%;
  max-width: 720px;
}

.phobos-detail__imageWrap {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0 32px;
}

.phobos-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.phobos-detail__desc {
  width: 100%;
  font-size: 18px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 32px;
}

.phobos-detail__desc p {
  margin: 0 0 1em;
}

.phobos-detail__desc p:last-child {
  margin-bottom: 0;
}

.phobos-detail__desc ul,
.phobos-detail__desc ol {
  margin: 0 0 1em 1.25em;
  padding: 0;
}

.phobos-detail__desc li {
  margin-bottom: 0.4em;
}

.phobos-detail__desc a {
  color: #006c5b;
  text-decoration: underline;
}

.phobos-detail__desc strong,
.phobos-detail__desc b {
  color: #1d2746;
  font-weight: 700;
}

.phobos-detail__bottomRow {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.phobos-detail__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}

.phobos-detail__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #006c5b;
  color: #006c5b;
  font-size: 15px;
  font-weight: 600;
  box-sizing: border-box;
}

.phobos-detail__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #006c5b;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}

.phobos-detail__cta:hover,
.phobos-detail__cta:hover:visited,
.phobos-detail__cta:hover:focus {
  background: #00c7b1;
  color: #ffffff;
}

@media (max-width: 767px) {
  .phobos-detail__title {
    font-size: 34px;
  }

  .phobos-detail__bottomRow {
    align-items: flex-start;
  }
}
{# ===== Boton volver atras ===== #}
.phobos-detail__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 20px;
  margin: 0 0 28px;
  border: 1px solid #006c5b;
  border-radius: 999px;
  background: #ffffff;
  color: #006c5b;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}

.phobos-detail__back:hover {
  background: #006c5b;
  color: #ffffff;
  text-decoration: none;
}

.phobos-detail__backIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.phobos-detail__backText {
  display: inline-block;
  line-height: 1;
}