.hero {
  position: relative;
  height: unset;
  background-image: linear-gradient(
      rgba(19, 10, 10, 0.7),
      rgba(19, 10, 10, 0.7)
    ),
    url("./images/partenerships.jpeg");
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}

/* Projects Section */
.projects-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.projects-content > p {
  text-align: center;
  color: var(--text-gray);
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.ongoing-projects,
.upcoming-projects {
  margin-bottom: 3rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.project-card {
  background-color: var(--bg-dark);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.project-card .highlight {
  color: var(--brand-bright);
}
.project-card:hover {
  transform: translateY(-3px);
}

.project-image {
  height: 16rem;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  object-position: top center;
}

.project-card:hover .project-image img {
  transform: scale(1.03);
}

.project-info {
  padding: 1.5rem;
}
.project-info > a {
  text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.project-info > a:hover {
  transform: scale(1.07);
  text-decoration: underline;
  text-decoration-color: var(--brand-green);
  text-underline-offset: 10px;
}

.project-info h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
}

.project-info p {
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.project-info ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.project-info ul li {
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}
