/* about-cmc.html page styles */

.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 0 6rem 0;
  font-family: 'Nunito Sans', sans-serif;
  color: #374151;
}

/* Hero / Header Section */
.page-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.page-header h1 {
  font-family: 'Spectral', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #0f2b46;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #3a6ea5;
  margin: 2rem auto 0;
}

/* Intro Section */
.about-highlight__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}

.about-highlight__eyebrow {
  color: #3a6ea5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: block;
}

.about-highlight__intro h2 {
  font-family: 'Spectral', serif;
  font-size: 2.5rem;
  color: #0f2b46;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-highlight__intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* Grid Layout */
.about-highlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

/* Left Card: Offerings (Clean List) */
.offerings-card {
  padding-right: 2rem;
}

.offerings-card h3 {
  font-family: 'Spectral', serif;
  font-size: 1.75rem;
  color: #0f2b46;
  margin-bottom: 2rem;
}

.about-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card__list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: #1f2937;
}

.about-card__list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233a6ea5'%3E%3Cpath d='M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.about-card__list li:last-child {
  border-bottom: none;
}

/* Right Card: Mission (High Contrast) */
.mission-card {
  background-color: #0f2b46;
  color: #fff;
  padding: 3rem;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mission-card h3 {
  font-family: 'Spectral', serif;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.mission-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-highlight__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .offerings-card {
    padding-right: 0;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}
