.articles-page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.articles-container {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.articles-content {
  width: 100%;
}

.articles-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  display: grid;
}

.articles-card {
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px #0000001a;
}

.articles-card-content {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.articles-title {
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  margin: 0;
  font-size: 1.5rem;
  display: flex;
}

.articles-title-text {
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  color: #fdcd13;
  border-radius: 8px;
  padding: 1rem;
  font-size: 40px;
  font-weight: 600;
}

.article {
  background: #1a1e3b;
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 2rem;
  transition: transform .2s;
}

.article:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px #0000001a;
}

.article-title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.article-link {
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}

.article-link:hover {
  color: #3498db;
}

.article-authors {
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
  display: flex;
}

.article-author {
  color: #fff;
  padding-right: 1rem;
  font-style: italic;
  position: relative;
}

.article-author:not(:last-child):after {
  content: ",";
  position: absolute;
  right: 0;
}

.article-tags {
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0;
  display: flex;
}

.article-tag {
  color: #495057;
  background: #e9ecef;
  border-radius: 16px;
  padding: .25rem .75rem;
  font-size: .875rem;
  transition: background-color .2s;
}

.article-tag:hover {
  background: #dee2e6;
}

.article-description {
  color: #fff;
  text-align: justify;
  line-height: 1.6;
}

@media (width <= 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article {
    padding: 1.5rem;
  }

  .article-authors {
    flex-direction: column;
    gap: .5rem;
  }

  .article-author:not(:last-child):after {
    content: none;
  }
}

@media (width >= 769px) {
  .articles-text {
    gap: 2rem;
  }
}
/*# sourceMappingURL=agora-main.b5c2a508.css.map */
