
/* v34 Projects section + SEO final polish */
.projects-section {
  padding: 80px 0;
  background: #f6f7fb;
}

.projects-section .section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.projects-section .section-eyebrow {
  color: #241B68;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.projects-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: #141042;
}

.projects-section .section-intro {
  color: #5f6472;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  background: #ffffff;
  border: 1px solid rgba(36,27,104,.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(20,16,66,.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(20,16,66,.16);
  border-color: rgba(36,27,104,.22);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.project-content {
  padding: 24px;
}

.project-content .project-meta {
  color: #241B68;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-content h3 {
  color: #141042;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.project-content p {
  color: #626777;
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.project-btn {
  color: #241B68;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-btn:hover {
  text-decoration: underline;
}

.project-template-note {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(36,27,104,.06);
  color: #4f5363;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 42px 0 !important;
  }
  .projects-section .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .projects-section .section-head {
    margin-bottom: 22px;
    text-align: left;
  }
  .projects-section h2 {
    font-size: 30px;
  }
  .projects-section .section-intro {
    font-size: 15px;
    line-height: 1.5;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .project-card {
    border-radius: 16px;
  }
  .project-content {
    padding: 18px;
  }
  .project-content h3 {
    font-size: 20px;
  }
  .project-content p {
    font-size: 14.5px;
  }
  .project-template-note {
    display: none;
  }
}
