/* Late visual refinements for the Fishing Catch Log campaign. */

/* Keep the entire portrait app screen visible in the feature cards. */
.feature-card img,
.feature-tackle img,
.feature-backup img {
  height: clamp(310px, 25vw, 390px);
  object-fit: contain;
  object-position: center top;
  background: #063f49;
}

/* Give the Lab prototype enough room to read as a desktop product. */
.lab-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(410px, 1.14fr);
  gap: clamp(38px, 6vw, 80px);
}

.lab-visual {
  width: 100%;
}

.lab-visual img {
  width: min(100%, 560px);
  margin-left: auto;
}

/* The homepage Lab preview uses the same strong visual weight. */
.lab-preview {
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: 40px;
}

.lab-preview img {
  width: 100%;
  max-width: 560px;
}

/* Replace text glyphs with the four illustrated return symbols. */
.campfire .support-grid .benefit-icon {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 0 16px;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 8px 10px rgba(34, 55, 69, 0.16));
}

/* The return-plan introduction has ample desktop width: keep its two messages cleanly on one line. */
@media (min-width: 781px) {
  .returns-summary-heading {
    max-width: none;
  }

  .returns-summary h3,
  .returns-summary-heading > p:last-child {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .lab-layout {
    grid-template-columns: 1fr;
  }

  .lab-visual img {
    margin: 0 auto;
  }
}

@media (max-width: 780px) {
  .lab-preview img {
    max-width: 430px;
  }

  .campfire .support-grid .benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0;
    align-self: center;
  }
}

@media (max-width: 620px) {
  .feature-card img,
  .feature-tackle img,
  .feature-backup img {
    height: 330px;
  }

  .lab-visual img {
    width: min(100%, 430px);
  }
}
