.gable-hero {
  background: #eef1ef;
}

.gable-hero-media {
  background: #fff;
}

.gable-hero-media img {
  object-fit: contain;
  padding: clamp(18px, 3vw, 46px);
}

.gable-feature-section {
  background: #fff;
}

.gable-feature-list {
  display: grid;
  gap: 22px;
}

.gable-feature-list article {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(320px, 0.92fr);
  min-height: 500px;
  overflow: hidden;
  background: #f4f6f2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.gable-feature-list article:nth-child(even) button {
  order: 2;
}

.gable-feature-list button {
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  cursor: zoom-in;
}

.gable-feature-list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gable-feature-list article > div {
  align-self: center;
  padding: clamp(28px, 5vw, 64px);
}

.gable-feature-list article > div > span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--copper);
  font-weight: 800;
}

.gable-feature-list h3,
.gable-note h3 {
  font-size: 23px;
}

.gable-feature-list p,
.gable-note p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gable-note {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (max-width: 980px) {
  .gable-feature-list article {
    grid-template-columns: 1fr;
  }

  .gable-feature-list article:nth-child(even) button {
    order: 0;
  }

  .gable-feature-list button {
    height: 560px;
  }
}

@media (max-width: 640px) {
  .gable-feature-list article {
    min-height: 0;
  }

  .gable-feature-list button {
    height: 340px;
  }
}
