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

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

.projects-content {
  width: 100%;
}

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

.projects-card {
  padding: 2rem;
}

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

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

.projects-title-text {
  text-align: center;
  background: var(--cc-light-bg);
  backdrop-filter: blur(16px);
  color: var(--cc-primary-accent);
  border: 1px solid #0000001a;
  border-radius: 8px;
  padding: 1rem;
  font-size: 40px;
  font-weight: 600;
}

.project-category {
  background: var(--cc-light-bg);
  border-radius: 20px;
  padding: 2rem;
}

.project-category-title {
  color: var(--cc-primary-accent);
  border-bottom: 2px solid var(--cc-primary-accent);
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  font-size: 40px;
}

.project-category-description {
  text-align: center;
  color: var(--cc-text-color);
  margin-bottom: 1.5rem;
}

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

.project {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  width: 100%;
  transition: transform .2s;
  box-shadow: 0 4px 8px #0000001a;
}

.project-title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

.project-link:hover {
  color: var(--cc-primary-accent);
}

.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: var(--cc-text-color);
  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=site-cdf.9cad2ff6.css.map */
