/* ===== DIAMOND RECLAMATION PAGE ===== */

/* Remove default padding */
body.page-template-diamond-reclamation .site-main {
  padding: 0 !important;
  max-width: none !important;
}

/* ===== HERO SECTION ===== */
.diamond-hero {
  background: var(--gb-white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--gb-border);
}

.diamond-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text {
  flex: 1;
  max-width: 800px;
}

.diamond-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gb-text);
  margin-bottom: 1rem;
}

.hero-text p:last-child {
  margin-bottom: 0;
}

.hero-icon {
  flex-shrink: 0;
}

.hero-icon img {
  width: 120px;
  height: auto;
}

/* ===== PROCESS SECTION ===== */
.diamond-process {
  background: var(--gb-white);
  padding: 4rem 0;
}

.section-heading-decorative {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gb-navy);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.decorative-bracket {
  color: var(--gb-gold);
  font-size: 2.5rem;
  font-weight: 300;
}

.process-diagram {
  text-align: center;
}

.process-diagram img {
  max-width: 100%;
  height: auto;
}

/* ===== PROCESSING TIME BANNER ===== */
.diamond-processing-time {
  background: var(--gb-gray);
  padding: 3rem 0;
}

.diamond-processing-time-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.processing-image {
  flex-shrink: 0;
}

.processing-image img {
  width: 200px;
  height: auto;
  border-radius: 8px;
}

.processing-content {
  flex: 1;
}

.processing-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1rem;
}

.processing-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gb-text);
  margin-bottom: 0.75rem;
}

.processing-content p:last-child {
  margin-bottom: 0;
}

/* ===== DETAILS SECTION (3 COLUMNS) ===== */
.diamond-details {
  background: var(--gb-white);
  padding: 4rem 0;
}

.diamond-details-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.detail-column {
  text-align: center;
}

.detail-image {
  margin-bottom: 1.5rem;
}

.detail-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
}

.detail-column h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1rem;
  text-decoration: underline;
  text-decoration-color: var(--gb-gold);
  text-underline-offset: 4px;
}

.detail-column p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gb-text);
  margin-bottom: 0.75rem;
  text-align: left;
}

.detail-column p:last-child {
  margin-bottom: 0;
}

.detail-column strong {
  font-weight: 600;
  color: var(--gb-navy);
}

/* Warning text styling */
.detail-column em {
  font-style: italic;
  color: #856404;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .diamond-details-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .detail-column:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .diamond-hero {
    padding: 3rem 0;
  }

  .diamond-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-icon {
    order: 1;
  }

  .hero-icon img {
    width: 80px;
  }

  .diamond-hero h1 {
    font-size: 1.75rem;
  }

  .hero-text p {
    text-align: center;
  }

  .section-heading-decorative {
    font-size: 1.5rem;
  }

  .decorative-bracket {
    font-size: 2rem;
  }

  .diamond-processing-time-inner {
    flex-direction: column;
    text-align: center;
  }

  .processing-image img {
    width: 150px;
  }

  .diamond-details-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .detail-column:last-child {
    grid-column: auto;
    max-width: none;
  }

  .detail-column p {
    text-align: center;
  }
}
