/* Projects page */
.container .card {
  border: 1.5px solid rgba(0,0,0,0.18) !important;
  border-radius: 16px;
}

.card:hover {
  border-color: rgba(0,0,0,0.28) !important;
}

.projects-section h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 3rem;
}

.project-card {
  padding: 0 0 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.project-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.project-date {
  color: var(--muted);
  font-weight: 400;
}

.project-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1rem;
}

@media (max-width: 750px) {
  .projects-section h2 {
    font-size: 2.4rem;
  }

  .project-card h3 {
    font-size: 1.25rem;
  }
}