/* =========================================================
   INTERCAMBIOS PAGE
   ========================================================= */

.page-content--exchanges {
  width: min(1320px, calc(100% - 140px));
  margin: 108px auto 126px;
}

.exchange-hero {
  margin-bottom: 110px;
}

.exchange-title {
  margin: 0 0 54px !important;
  color: #0b84b7;
  line-height: 0.96;
  letter-spacing: -0.012em;
}

.exchange-intro {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  color: #6f6f6f;
  font-size: 1.14rem;
  font-weight: 300;
  line-height: 1.82;
}

.exchange-intro p {
  margin: 0;
}

.exchange-intro p + p {
  margin-top: 34px;
}

.exchange-feature-grid {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 42px;
  align-items: start;
}

.exchange-feature-card {
  position: relative;
  display: block;
  width: min(100%, 620px);
  padding-bottom: 28px;
  text-decoration: none;
}

.exchange-feature-card:nth-child(odd) {
  justify-self: start;
}

.exchange-feature-card:nth-child(even) {
  justify-self: end;
}

.exchange-feature-card__image {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #9b9b9b;
}

.exchange-feature-card__label {
  position: absolute;
  bottom: 0;
  width: min(52%, 360px);
  min-height: 72px;
  padding: 10px 20px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8a6db7;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.16;
  text-align: center;
}

.exchange-feature-card:nth-child(odd) .exchange-feature-card__label {
  left: 34px;
}

.exchange-feature-card:nth-child(even) .exchange-feature-card__label {
  right: 34px;
}

.exchange-feature-card:nth-child(odd) .exchange-feature-card__label,
.exchange-feature-card:nth-child(even) .exchange-feature-card__label {
  position: absolute;
  transform: none;
}