/* ===== ACHIEVEMENTS PAGE SPECIFIC STYLES ===== */

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #801612 0%, #b82c25 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  font-family: 'Merriweather', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 8px;
}

/* SECTION TITLES */
.section-title {
  font-family: 'Merriweather', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 24px;
}

/* INTRO */
.intro-section {
  padding: 48px 0 32px;
  background: var(--white);
}

.intro-section p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  max-width: 860px;
}

/* ACADEMIC ACHIEVEMENTS */
.academic-section {
  padding: 56px 0;
  background: var(--white);
}

.achievement-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.achievement-card {
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.achievement-card .card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.achievement-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.achievement-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}

/* RECOGNITION LISTS */
.recognition-section {
  padding: 56px 0;
  background: var(--light-bg);
}

.faculty-section {
  padding: 56px 0;
  background: var(--white);
}

.recognition-list {
  list-style: none;
  max-width: 860px;
  margin: 24px 0;
}

.recognition-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.recognition-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
  top: 6px;
}

/* INSTITUTIONAL RECOGNITION */
.institutional-section {
  padding: 56px 0;
  background: var(--light-bg);
}

.inst-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.inst-card {
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.inst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.inst-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.inst-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 56px 0;
  background: var(--white);
}

.testimonial-card {
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 28px 32px;
  margin-bottom: 20px;
  max-width: 860px;
}

.testimonial-card p {
  font-size: 14.5px;
  font-style: italic;
  color: var(--primary-dark);
  line-height: 1.8;
  margin-bottom: 12px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  font-style: normal;
}

/* ANNUAL HIGHLIGHTS */
.highlights-section {
  padding: 56px 0;
  background: var(--light-bg);
}

.highlights-section p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  max-width: 860px;
  margin-bottom: 24px;
}

.highlights-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.link-arrow {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.link-arrow:hover {
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .achievement-cards,
  .inst-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .achievement-cards,
  .inst-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 26px;
  }

  .section-title {
    font-size: 22px;
  }
}