/* ============================================================
   PAGE-CLIPPER.CSS — Texas Clipper page specifics
   American Diving Legacy Site
   ============================================================
   Reason: The Clipper page uses a before/after photo
   comparison layout and a ship-history timeline not
   present on other pages.
   ============================================================ */

/* Hero: image positions to show wreck scale */
.page-clipper .hero-media img {
  object-position: center 40%;
}

/* Ship history — three lives layout */
.three-lives {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.life-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border-top: 3px solid var(--accent-color);
}

.life-card .life-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.life-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.life-card .life-years {
  font-size: 0.8125rem;
  color: rgba(200, 169, 110, 0.6);
  margin-bottom: 0.75rem;
  display: block;
}

.life-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .three-lives {
    grid-template-columns: 1fr;
  }
}

/* Plaque photo — full treatment */
.plaque-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.plaque-section img {
  border-radius: var(--radius-md);
  width: 100%;
}

@media (max-width: 768px) {
  .plaque-section {
    grid-template-columns: 1fr;
  }
}
