/* =========================================================
   CONTRIBUTOR PAGE: The Ledger Style
   ========================================================= */

/* Re-introducing the Parchment personality to Main for this page only */
main {
  background-color: var(--parchment);
  background-image: radial-gradient(#dcdbb4 0.5px, transparent 0.5px);
  background-size: 10px 10px;
}

.contributor-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.contributor-intro {
  text-align: center;
  margin-bottom: 30px;
}

.contributor-intro h2 {
  /* Using dark text variable for readability on parchment */
  color: var(--text-main); 
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contributor-intro p {
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.9;
}

.form-embed-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  border: 2px solid var(--accent-gold); /* Upgraded to gold for consistency */
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Ensure the iframe (Google Form) takes the full width */
.form-embed-wrapper iframe {
  width: 100%;
  border: none;
  max-width: 100%;       /* Forces the form to stay inside the gold border */
  min-width: 100%;       /* Prevents it from shrinking too small */
}