/* ------------------------------------------------------------------
   7. About Page Styles
   ------------------------------------------------------------------ */
/* Main layout */
main {
  flex-direction: column;
  align-items: flex-start;
}

/* Title styling */
.about-title {
  width: 100%;
  padding: 0 0 2rem 0; 
  text-align: left;
}

.about-title h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem; 
}

/* Grid layout for aligned sections */
.about-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem 5rem;
  width: 100%; 
}

/* Section label styling */
.section-label {
  align-self: start; 
}

.label-number {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  padding-top: 0.35rem;
}

/* Content sections styling */
.content-section {
  max-width: 800px;
  margin-top: 0;
  margin-bottom: 1rem; 
}

.content-section p {
  margin-top: 0; 
  margin-bottom: 1.5rem;
  line-height: 2;
  color: #444;
  font-size: 0.95rem;
}

.content-section p a {
  font-style: italic;
  text-decoration: underline;
  color: #e99f68;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-grid {
    gap: 3rem 3rem;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .section-label {
    margin-bottom: 0.5rem;
  }
  
  .content-section {
    margin-bottom: 3rem;
  }
  
  main {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    font-size: 14px;
  }

  .about-title h1 {
    font-size: 2rem;
  }

  .about-grid {
    gap: 1.5rem;
  }

  .content-section p {
    line-height: 1.7;
  }
}

/* Archived News Section */
.archived-news-section {
  width: 100%;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.archived-news-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.news-list {
  list-style: none;
}

.news-item {
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 0.95rem;
  color: #444;
}

.news-item a{
  font-style: italic;
  text-decoration: underline;
  color: #e99f68;
}

.news-date {
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .archived-news-section {
    margin-top: 1rem;
    padding-top: 1.5rem;
  }
  
  .archived-news-section h2 {
    font-size: 1.5rem;
  }
}
