/* ===== DOCUMENTS REQUIRED PAGE ===== */

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

/* ===== HERO SECTION ===== */
.docs-hero {
  background: var(--gb-navy-light);
  color: var(--gb-white);
  padding: 4rem 2rem;
  text-align: center;
}

.docs-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gb-white);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.docs-hero .hero-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin: 0 auto 1.5rem;
  max-width: 700px;
}

.docs-hero .hero-email {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

.docs-hero .hero-email a {
  color: var(--gb-gold);
  text-decoration: none;
}

.docs-hero .hero-email a:hover {
  text-decoration: underline;
}

/* ===== MAIN CONTENT SECTION ===== */
.docs-content {
  background: var(--gb-white);
  padding: 4rem 2rem;
}

/* .content-width utility handles max-width */

/* Section blocks */
.docs-section {
  margin-bottom: 4rem;
}

.docs-section:last-child {
  margin-bottom: 0;
}

.docs-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gb-gold);
}

.docs-section .section-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gb-text);
  margin-bottom: 2rem;
}

/* ===== DOCUMENT GRID (3-column) ===== */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.doc-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.doc-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gb-navy);
  margin-bottom: 1rem;
}

.doc-image {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  overflow: hidden;
}

.doc-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.doc-content {
  text-align: center;
}

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

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

.doc-content ul {
  display: inline-block;
  text-align: left;
  margin: 0.75rem 0;
  padding: 0 0 0 1.25rem;
}

.doc-content li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

/* ===== SEND METHODS GRID ===== */
.send-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.send-method {
  text-align: center;
}

.method-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gb-navy-light);
  border-radius: 50%;
  color: var(--gb-gold);
  margin: 0 auto 1rem;
}

.send-method h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gb-navy);
  margin-bottom: 0.75rem;
}

.method-content {
  text-align: center;
}

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

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

.method-content a {
  color: var(--gb-navy);
  text-decoration: underline;
}

.method-content a:hover {
  color: var(--gb-gold);
}

/* Address block */
.method-content address {
  font-style: normal;
  background: #f5f5f5;
  padding: 0.75rem;
  border-radius: 4px;
  margin: 0.75rem 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== WYSIWYG CONTENT STYLES ===== */
.docs-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gb-text);
  margin-bottom: 1rem;
}

.docs-section ul {
  margin: 1rem 0 1rem 1.5rem;
  padding: 0;
}

.docs-section li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .docs-hero {
    padding: 3rem 1.5rem;
  }

  .docs-hero h1 {
    font-size: 1.5rem;
  }

  .docs-hero .hero-intro {
    font-size: 1rem;
  }

  .docs-content {
    padding: 3rem 1.5rem;
  }

  .docs-section h2 {
    font-size: 1.25rem;
  }

  .docs-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .doc-image {
    min-height: auto;
  }

  .send-methods-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
