.narrative-section {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.project-summary {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.project-summary h3 {
  color: #5A5752;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-display);
}

.summary-table tr {
  border-bottom: 1px solid #D5C8BE;
}

.summary-table tr:last-child {
  border-bottom: none;
}

.summary-table td {
  padding: 1rem 0;
  color: #514D4A;
  text-align: right;
}

.summary-table td:first-child {
  text-align: left;
}

.summary-table td:first-child {
  width: 35%;
  color: #48556B;
}

@media (max-width: 768px) {
  .summary-table td {
    padding: 0.8rem 0;
  }

  .summary-table td:first-child {
    width: 50%;
  }
}

.narrative-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #736F6A;
  margin-bottom: 2rem;
  text-align: justify;
  font-family: var(--font-display);
}

.narrative-section h3 {
  color: #5A5752;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: normal;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.narrative-section .lead-text {
  font-size: 1.4rem;
  color: #48556B;
  margin-bottom: 3rem;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: #F5EFE8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 300px;
}

.feature-text {
  padding: 3rem;
  flex: 1;
}

.feature-text h3 {
  color: #48556B;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #736F6A;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
}

.feature-card img {
  width: 45%;
  height: 100%;
  object-fit: cover;
}

.overview-latest-news {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.overview-latest-news h3 {
  color: #5A5752;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.overview-latest-news .news-preview-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.overview-latest-news .news-preview {
  background-color: #F5EFE8;
  padding: 2rem;
  border: 1px solid #D5C8BE;
  display: flex;
  flex-direction: column;
}

.overview-latest-news .news-date {
  color: #736F6A;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.overview-latest-news .news-preview h3 {
  color: #48556B;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: normal;
}

.overview-latest-news .news-preview p {
  color: #736F6A;
  font-family: var(--font-display);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.overview-latest-news .read-more {
  color: #48556B;
  text-decoration: none;
  font-family: var(--font-display);
  border-bottom: 1px solid #48556B;
  align-self: flex-start;
}

.overview-latest-news .read-more:hover {
  border-bottom: 2px solid #48556B;
}

.overview-latest-news .view-all-news {
  display: inline-block;
  padding: 1rem 2rem;
  color: #48556B;
  text-decoration: none;
  border: 1px solid #48556B;
  transition: all 0.3s ease;
  font-family: var(--font-display);
}

.overview-latest-news .view-all-news:hover {
  background: #48556B;
  color: white;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .narrative-section {
    padding: 0 1.5rem;
  }

  .feature-card img {
    height: 200px;
  }
}