.item-content-wrap {
  padding: clamp(48px, 7vw, 88px) 0 80px;
  background: #fff;
}

.item-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.item-content-main {
  min-width: 0;
}

.item-detail__media {
  margin: 0 0 32px;
  overflow: hidden;
  background: #f4f1ea;
}

.item-detail__image {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.item-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.item-facts__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 18px;
  color: var(--color-navy);
  background: var(--color-sand);
  border: 1px solid rgba(32, 72, 109, 0.1);
}

.item-facts__item i {
  color: var(--color-gold);
  font-size: 1.05rem;
}

.item-facts__item span {
  font-size: 0.9rem;
  font-weight: 500;
}

.item-detail__copy {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
}

.item-detail__copy p {
  margin: 0 0 1.25em;
}

.item-detail__copy h2,
.item-detail__copy h3,
.item-detail__copy h4 {
  margin: 1.8em 0 0.7em;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-navy);
}

.item-detail__copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.item-detail__copy h3,
.item-detail__copy h4 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.item-detail__copy ul,
.item-detail__copy ol {
  margin: 0 0 1.4em;
  padding-left: 1.4em;
}

.item-detail__copy li {
  margin-bottom: 0.55em;
}

.item-detail__copy blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  color: var(--color-navy);
  background: #f7f4ed;
  border-left: 3px solid var(--color-gold);
}

.item-detail__copy blockquote > :last-child {
  margin-bottom: 0;
}

.item-detail__copy a {
  color: var(--color-navy);
  text-decoration-color: var(--color-gold);
  text-underline-offset: 3px;
}

@media (max-width: 991.98px) {
  .item-content-layout {
    grid-template-columns: 1fr;
  }

  .item-content-layout .country-sidebar {
    order: 2;
  }
}

@media (max-width: 575.98px) {
  .item-content-wrap {
    padding-top: 36px;
  }

  .item-facts {
    display: grid;
    grid-template-columns: 1fr;
  }
}
