
/* ==================================
   FEATURE PAGES STYLESHEET
   Used by:
   - about.html
   - research.html
   - news.html
   - admission.html

   Purpose:
   Clean base for photo-heavy pages.
   Consistent typography + spacing.
   Easy to evolve with images, grids, and media blocks.
   ================================== */

/* Hero Section */
.feature-hero {
  padding: 80px 0 60px;
  background: var(--bg-light);
}

.feature-hero h2 {
  font-size: 2.8rem;
  color: var(--iugb-blue);
  margin-bottom: 16px;
}

.feature-hero p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #101216;
  max-width: 800px;
}

/* Main Content Wrapper */
.feature-main {
  padding: 80px 0;
  background: var(--bg-white);
}

/* Section Blocks */
.feature-section {
  margin-bottom: 70px;
}

.feature-section h3 {
  font-size: 1.6rem;
  color: var(--iugb-blue);
  margin-bottom: 14px;
}

.feature-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

/* Lists */
.feature-list {
  margin-left: 20px;
  line-height: 1.9;
}

.feature-list li {
  margin-bottom: 6px;
}

/* Future Grid Support (for images/cards later) */
.feature-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature-hero {
    padding: 60px 0 40px;
  }

  .feature-hero h2 {
    font-size: 2.2rem;
  }

  .feature-main {
    padding: 60px 0;
  }
}
