/* Custom layout to keep sponsor strictly to the left on all screen sizes */
.mission-layout-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2.5rem;
  align-items: flex-start;
}

.sponsor-sidebar {
  flex: 0 0 160px;
  text-align: center;
  background-color: #f9f9f9;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  border: 1px solid #eee;
}

.sponsor-sidebar h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #888;
  margin: 0 0 1rem 0;
}

.sponsor-logo-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.main-mission-content {
  flex: 1;
}

@media (max-width: 480px) {
  .mission-layout-container {
    gap: 1rem;
  }
  .sponsor-sidebar {
    flex: 0 0 110px;
    padding: 1rem 0.5rem;
  }
  .sponsor-sidebar h3 {
    font-size: 0.75rem;
  }
}

/* ----------------------------- */
/* MISSION PAGE COLOR FIXES      */
/* ----------------------------- */

/* Main mission title + section titles */
.page-title,
.section-title.dark-title,
.section-title {
  color: #fff !important;
}

/* Gold accent stays gold */
.gold-accent {
  color: #d4af37 !important;
}

/* Mission paragraphs */
.main-mission-content p,
.about-text p,
.section-desc {
  color: #fff !important;
}

/* Value card titles */
.value-card h3 {
  color: #d4af37 !important;
}

/* Value card text */
.value-card p {
  color: #fff !important;
}
/* --------------------------------------------------------- */
/*    SUPPORT-US.HTML — Final image fix                      */
/* --------------------------------------------------------- */

.about-grid,
.about-img-wrap,
.main-mission-content,
.mission-layout-container,
.section-inner,
.section {
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  grid-auto-rows: auto !important;
  align-items: start !important;
}

.about-img-wrap {
  grid-row: auto !important;
  min-width: 0;
  aspect-ratio: auto !important;
  max-width: 70%;
  margin: 0 auto;
}

.about-img-wrap img {
  width: 100%;
  height: auto !important;
  max-width: 100%;
  max-height: none !important;
  display: block;
  object-fit: contain;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr !important;
  }

  .about-img-wrap {
    max-width: 70% !important;
    margin: 0 auto !important;
  }
}
h2.section-title.gold-label {
  color: #d4af37 !important;
}