/* anyconcept news page
   section-specific layout and spacing for news.html. */

.news {
  max-width: 740px;
  margin: 0 auto;
  padding: 120px 40px 120px;
}

.news__label {
  font: var(--font-mono);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

.news-item {
  padding: 40px 0;
  border-bottom: 0.5px solid var(--border);
}

.news-item:last-child {
  border-bottom: none;
}

.news-item__date {
  font: var(--font-mono);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.news-item__title {
  font-family: var(--font-family-sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.news-item__body {
  font-family: var(--font-family-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 560px;
}

.news-item__body:last-child {
  margin-bottom: 0;
}

.news-item__link {
  font-family: var(--font-family-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--red);
  text-decoration: none;
}

.news-item__link:hover {
  color: var(--red-dark);
}

.news-item__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

@media (max-width: 720px) {
  .news {
    padding: 80px 24px 80px;
  }
}
