.project-detail {
  max-width: 10000px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: justify;
}

.project-detail h1 {
  margin-bottom: 1rem;
}

.project-meta {
  display: grid;
  grid-template-columns: max-content auto;
  column-gap: 1rem;
  row-gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.project-meta dt,
.project-meta dd {
  margin: 0;
  padding: 0;
}

.project-abstract {
  margin-top: 2rem;
  line-height: 1.6;
}

.project-abstract h2 {
  margin-bottom: 0.5rem;
}

/* News Cards - Grid Layout */
.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.news-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.news-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.news-card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news-card-date {
  font-size: 0.85rem;
  color: #666;
}

.news-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .news-cards {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=project.css.map */