/* ==========================================================================
   Our Beneficiaries Page Styles
   ========================================================================== */
/* Tabs Section */
.beneficiaries-tabs {
  padding: 60px 0;
}

.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tabs-navigation {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
}

.tabs-content {
  /* Background and padding are handled by kids-section */
}

.tab-panel {
  display: none;
  scroll-margin-top: 100px;
}
.tab-panel.active {
  display: block;
}

.tab-header {
  text-align: center;
  margin-bottom: 40px;
}

.tab-title {
  font-family: var(--tf-avenir);
  font-weight: var(--tf-fw-700);
  font-size: 2.5rem;
  color: var(--tf-purple);
  text-align: center;
  margin-bottom: 15px;
}

.tab-description {
  color: var(--tf-gray);
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 16px;
}

/* Kids grid styles are inherited from the theme's main SCSS */
.placeholder-message {
  width: 100%;
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px dashed #dee2e6;
}
.placeholder-message p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tabs-section {
    padding: 0;
  }
  .tabs-container {
    padding: 0;
  }
  .tabs-navigation {
    gap: 15px;
    justify-content: center;
  }
  .tabs-navigation .tab-button {
    padding: 10px 15px;
    font-size: 0.9rem;
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 100%;
  }
  .tab-title {
    font-size: 2rem;
  }
  .tab-description {
    font-size: 1rem;
  }
  /* Kids grid responsive styles are inherited from the theme's main SCSS */
}
@media (max-width: 480px) {
  .tabs-section {
    padding: 0;
  }
  .tabs-container {
    padding: 0;
  }
  .tabs-navigation {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .tabs-navigation .tab-button {
    flex: none;
    padding: 12px 15px;
    min-width: 300px;
    max-width: 100%;
  }
  .tab-description {
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=our-beneficiaries.css.map */
