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

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

.projects-content {
  width: 100%;
}

.projects-grid {
  gap: 2rem;
  display: grid;
}

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

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

.projects-title {
  color: #333;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  display: flex;
}

.projects-title-text {
  font-weight: 600;
}

.project-category {
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 3rem;
  padding: 2rem;
}

.project-category-title {
  color: #2c3e50;
  text-align: center;
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  font-size: 1.6rem;
}

.project-category-description {
  text-align: center;
}

.project-list {
  justify-content: center;
  gap: 2rem;
  display: grid;
}

.project {
  background: #fff;
  border-radius: 6px;
  padding: 1.5rem;
  transition: transform .2s;
  box-shadow: 0 2px 4px #0000000d;
}

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

.project-title {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.project-link {
  color: #2c3e50;
  text-decoration: none;
  transition: color .2s;
}

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

.project-type {
  color: #666;
  background: #e9ecef;
  border-radius: 20px;
  margin-bottom: 1rem;
  padding: .25rem .75rem;
  font-size: .875rem;
  display: inline-block;
}

.project-partners {
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0;
  display: flex;
}

.project-partner {
  color: #495057;
  background: #f1f3f5;
  border-radius: 16px;
  padding: .25rem .75rem;
  font-size: .875rem;
}

.project-description {
  color: #666;
  text-align: justify;
  line-height: 1.6;
}

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

  .project-partners {
    flex-direction: column;
  }
}

@media (width >= 769px) and (width <= 1024px) {
  .project-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width >= 1025px) {
  .project-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*# sourceMappingURL=agora-main.9cad2ff6.css.map */
