/* ============================================
   WAYS TO GIVE SECTION
   Brain & Mind Foundation WordPress Theme
   ============================================
   Two-column layout on navy background with
   gold and coral radial glows, give options
   grid, and responsive breakpoints.
   ============================================ */

.give {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Gold radial glow (bottom-left) */
.give::before {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15), transparent 70%);
  pointer-events: none;
}

/* Coral radial glow (top-right) */
.give::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral-glow), transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}

/* ============================================
   GIVE LAYOUT (2 columns)
   ============================================ */
.give-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ============================================
   GIVE CONTENT (left column)
   ============================================ */
.give-content {
  position: relative;
  z-index: 1;
}

.give-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.give-heading em {
  font-style: italic;
  color: var(--coral);
}

.give-text {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

/* ============================================
   GIVE OPTIONS GRID (right column)
   ============================================ */
.give-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* ============================================
   GIVE OPTION CARD
   ============================================ */
.give-option {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.4s var(--ease-out-expo);
}
.give-option:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245, 132, 108, 0.2);
  transform: translateY(-3px);
}

/* Option icon */
.give-option-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245, 132, 108, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Option text */
.give-option-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 4px;
}

.give-option-desc {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .give {
    padding: 80px 0;
  }
  .give-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 550px) {
  .give-options {
    grid-template-columns: 1fr;
  }
}
