.projects-hero__content {
  max-width: 950px;
}
.projects-hero__title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.projects-hero__description {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.featured-project-section {
  border-top: 1px solid var(--color-border);
}
.featured-project {
  margin-top: 3rem;
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.featured-project__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
.featured-project__type {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-project__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}
.featured-project__number {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  opacity: 0.6;
}
.featured-project__layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);
  gap: 4rem;
  padding-top: 2.5rem;
}
.featured-project__lead {
  max-width: 520px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.featured-project__tags {
  margin-top: 1.5rem;
}
.featured-project__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.featured-project__details {
  display: flex;
  flex-direction: column;
}
.project-detail {
  padding: 1.4rem 0;
  border-top: 1px solid var(--color-border);
}
.project-detail:last-child {
  border-bottom: 1px solid var(--color-border);
}
.project-detail__label {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-detail p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}
@media (max-width: 800px) {
  .featured-project__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 550px) {
  .featured-project {
    padding: 1.5rem;
  }
  .featured-project__header {
    gap: 1rem;
  }
}
.other-projects {
  border-top: 1px solid var(--color-border);
}

.other-projects__grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 1.25rem;

  margin-top: 3rem;
}
.project-card {
  display: flex;
  flex-direction: column;

  min-height: 340px;

  padding: 2rem;

  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);

  background: var(--color-surface);

  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.project-card:hover {
  transform: translateY(-5px);

  border-color: rgba(96, 165, 250, 0.4);

  background: rgba(255, 255, 255, 0.07);
}

.project-card__top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 1rem;

  margin-bottom: 2rem;
}

.project-card__type {
  color: var(--color-accent);

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__number {
  color: var(--color-text-muted);

  font-size: 0.8rem;

  opacity: 0.6;
}

.project-card__title {
  margin: 0 0 1rem;

  font-size: 1.5rem;
}

.project-card__description {
  margin: 0 0 1.5rem;

  color: var(--color-text-muted);

  line-height: 1.7;
}

.project-card .tag-list {
  margin-top: auto;
}

@media (max-width: 750px) {
  .other-projects__grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: auto;
  }
}
