.articles-container {
  max-width: 680px;
  margin: 60px auto;
  padding: 0 24px;
}

.back-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: #757575;
  display: inline-block;
  margin-bottom: 24px;
}

h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary, #112d4e);
  margin: 0 0 48px 0;
  letter-spacing: -0.01em;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.article-link {
  text-decoration: none;
  margin: 0;
  padding: 0;
  color: inherit;
  text-transform: none;
  white-space: normal;
  border: none;

  &:hover {
    padding: 0;
    border: none;
  }
}

.article-card {
  padding: 24px;
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;

  &:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
  }
}

.article-title {
  font-family: var(--font-heading);
  margin: 0 0 12px 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary, #112d4e);
  transition: color 0.2s ease;
}

.article-description {
  font-family: var(--font-body);
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #757575;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.article-meta .date::before {
  content: "\1F4C5";
  margin-right: 6px;
}

.article-meta .author::before {
  content: "\270D";
  margin-right: 6px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.article-tags .chip {
  background: #dbe2ef;
  color: var(--primary, #112d4e);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: lowercase;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .articles-container {
    margin: 30px auto;
    padding: 0 16px;
  }

  .articles-container h1 {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }

  .article-list {
    gap: 24px;
  }

  .article-card {
    padding: 18px;
  }

  .article-title {
    font-size: 1.2rem;
  }

  .article-description {
    font-size: 0.95rem;
  }

  .article-meta {
    gap: 12px;
    font-size: 0.8rem;
  }

  .article-tags .chip {
    font-size: 0.65rem;
    padding: 2px 6px;
  }
}
