/* ============================================
   MEMBERSHIP DUES PAGE STYLES
   ============================================ */

/* ============================================
   HERO - MATCHES MEMBERSHIP PAGE
   ============================================ */

/*.hero-small {*/
/*  position: relative;*/
/*  min-height: 45vh;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);*/
/*  margin-bottom: var(--spacing-3xl);*/
/*}*/

/*.hero-small::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);*/
/*}*/

/*.hero-small .container {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*}*/

/*.hero-small-content {*/
/*  max-width: 700px;*/
/*  color: var(--color-white);*/
/*}*/

/*.hero-small-label {*/
/*  font-size: 0.7rem;*/
/*  font-weight: 600;*/
/*  text-transform: uppercase;*/
/*  letter-spacing: 0.12em;*/
/*  color: #D4A574;*/
/*  margin-bottom: 0.75rem;*/
/*}*/

/*.hero-small h1 {*/
/*  font-family: var(--font-display);*/
/*  font-size: 3.5rem;*/
/*  font-weight: 600;*/
/*  margin-bottom: 1rem;*/
/*  line-height: 1.1;*/
/*  color: var(--color-white);*/
/*}*/

/*.hero-small p {*/
/*  font-size: 1.125rem;*/
/*  line-height: 1.7;*/
/*  opacity: 0.95;*/
/*  margin-bottom: 1rem;*/
/*  color: var(--color-white);*/
/*}*/

/*.affiliation {*/
/*  font-size: 0.875rem;*/
/*  color: #D4A574;*/
/*  font-weight: 500;*/
/*  letter-spacing: 0.5px;*/
/*}*/

/* ============================================
   PAYMENT GRID
   ============================================ */

.payment-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

/* ============================================
   PAYMENT METHODS SIDEBAR
   ============================================ */

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.payment-methods h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.method-card {
  padding: var(--spacing-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.method-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.method-card h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.method-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.contact-info {
  padding: var(--spacing-lg);
  background: var(--color-bg-cream);
  border-radius: var(--radius-sm);
  margin-top: auto;
}

.contact-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-info a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.contact-info a:hover {
  opacity: 0.8;
}

/* ============================================
   PAYMENT FORM SECTION
   ============================================ */

.payment-form-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.form-container {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
}

.form-container h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-primary);
}

/* WP Easy Pay form wrapper - minimal styling to avoid conflicts */
.wpep-form-wrapper {
  /* Plugin handles its own styling */
}

/* ============================================
   ADDRESS CARD
   ============================================ */

.address-card {
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--spacing-xl);
}

.address-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-primary);
}

.address-card address {
  font-style: normal;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
}

.address-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN - TABLETS
   ============================================ */

@media (max-width: 1024px) {
  .hero-small h1 {
    font-size: 2.75rem;
  }
  
  .payment-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  /* Sidebar appears first on mobile/tablet */
  .payment-methods {
    order: 1;
  }
  
  .payment-form-section {
    order: 2;
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 768px) {
  .hero-small {
    min-height: 40vh;
  }
  
  .hero-small h1 {
    font-size: 2.25rem;
  }
  
  .form-container {
    padding: var(--spacing-lg);
  }
  
  .address-card {
    padding: var(--spacing-lg);
  }
  
  .payment-methods h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-small h1 {
    font-size: 2rem;
  }
  
  .form-container {
    padding: var(--spacing-md);
  }
  
  .address-card {
    padding: var(--spacing-md);
  }
}