/* ===== 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);
  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 LIST ===== */
.docs-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.doc-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid var(--gb-navy);
}

.doc-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gb-navy);
  border-radius: 8px;
  color: var(--gb-gold);
}

.doc-content {
  flex: 1;
}

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

.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 {
  margin: 0.75rem 0 0.75rem 1.25rem;
  padding: 0;
}

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

/* ===== SEND METHODS ===== */
.send-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.send-method {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.method-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gb-navy);
  color: var(--gb-white);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}

.method-content {
  flex: 1;
  padding-top: 0.25rem;
}

.method-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gb-navy);
  margin-bottom: 0.5rem;
}

.method-content p {
  font-size: 0.95rem;
  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: 1rem;
  border-radius: 4px;
  margin: 0.75rem 0;
  font-size: 0.9rem;
  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;
  }

  .doc-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .doc-icon {
    width: 48px;
    height: 48px;
  }

  .doc-icon svg {
    width: 24px;
    height: 24px;
  }

  .send-method {
    gap: 1rem;
  }

  .method-number {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}
