/* ============================================================
   PAGE-RIGS.CSS — Rigs and Wrecks page specifics
   American Diving Legacy Site
   ============================================================
   Reason: This page uses a named-dive-site card grid that
   carries different visual weight from the standard dive-card
   component. The rig timeline also has unique styling.
   ============================================================ */

/* Hero: rig photo positions to show structure */
.page-rigs .hero-media img {
  object-position: center 60%;
}

/* Rig era — timeline variant for the rig progression */
.rig-era {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.rig-era:last-child {
  border-bottom: none;
}

.rig-era-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  margin-bottom: 0.375rem;
}

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

.rig-era p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Named for a reason — wreck naming stories */
.named-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.named-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.named-card h3 {
  color: var(--accent-color);
  margin-bottom: 0.375rem;
}

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

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

@media (max-width: 640px) {
  .named-cards {
    grid-template-columns: 1fr;
  }
}
