/* Recrutement org Star Citizen */

.recruit-hero {
  min-height: calc(58vh - 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 24px 48px;
  background:
    linear-gradient(180deg, rgba(7, 19, 38, 0.4), rgba(7, 26, 39, 0.88)),
    url("../src/StarCitizen/picture/perseus1.png") no-repeat center 40% / cover;
  border-bottom: 1px solid rgba(86, 176, 255, 0.15);
  opacity: 1;
  transform: none;
}

.recruit-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.45);
  margin-bottom: 20px;
}

.recruit-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 0 16px rgba(86, 176, 255, 0.55);
}

.recruit-hero > p {
  max-width: 520px;
  color: #bfe1ff;
  font-size: 1.1rem;
  line-height: 1.55;
  margin: 0 auto 28px;
}

.recruit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.recruit-actions .btn-cta.secondary {
  background: transparent;
  border: 1px solid rgba(86, 176, 255, 0.45);
  color: #bfe1ff;
}

.recruit-actions .btn-cta.secondary:hover {
  background: rgba(86, 176, 255, 0.15);
  box-shadow: 0 0 12px rgba(86, 176, 255, 0.35);
}

.recruit-section,
.recruit-fleet {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px 24px;
}

.recruit-section h2,
.recruit-fleet h2 {
  color: #56b0ff;
  margin-bottom: 14px;
}

.recruit-section > p,
.recruit-fleet > p {
  color: #dce3ec;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 36px;
}

.recruit-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
  text-align: left;
  margin-top: 8px;
}

.recruit-pillars article {
  padding-top: 4px;
  border-top: 2px solid rgba(86, 176, 255, 0.35);
}

.recruit-pillars h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.15rem;
  margin: 14px 0 10px;
  text-shadow: 0 0 10px rgba(86, 176, 255, 0.25);
}

.recruit-pillars p {
  color: #bfe1ff;
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: left;
  margin: 0;
}

.recruit-fleet {
  padding-bottom: 40px;
}

.recruit-fleet-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.recruit-fleet-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(86, 176, 255, 0.2);
  box-shadow: 0 0 24px rgba(86, 176, 255, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.recruit-fleet-strip img:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(86, 176, 255, 0.28);
}

.recruit-cta {
  padding-top: 24px;
  padding-bottom: 72px;
}

.recruit-cta .cta-panel {
  animation: fadeZoom 1s ease-out both;
}

@media (max-width: 900px) {
  .recruit-pillars,
  .recruit-fleet-strip {
    grid-template-columns: 1fr;
  }

  .recruit-fleet-strip img {
    max-height: 220px;
  }
}

@media (max-width: 768px) {
  .recruit-hero {
    min-height: auto;
    padding: 48px 20px 40px;
  }

  .recruit-actions {
    flex-direction: column;
    align-items: center;
  }

  .recruit-actions .btn-cta {
    width: 100%;
    max-width: 280px;
  }

  .recruit-section,
  .recruit-fleet {
    padding: 40px 20px 16px;
  }
}
