/* ============================================
   FORMATION CATALOGUE PAGE
   ============================================ */

.fc-hero {
  padding-top: 70px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.fc-hero .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.fc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.fc-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.fc-breadcrumb a:hover {
  color: var(--accent);
}

.fc-breadcrumb span {
  color: var(--text-tertiary);
}

.fc-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 0.875rem;
}

.fc-hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* Catalogue */
.fc-catalogue {
  padding: 60px 0 80px;
  background: var(--bg-grey);
}

/* CTA bas */
.fc-cta {
  padding: 40px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.fc-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.fc-cta p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Nav active */
.nav-menu a.active {
  color: var(--accent);
  font-weight: 500;
}

@media (max-width: 768px) {
  .fc-cta .container {
    flex-direction: column;
    text-align: center;
  }
}
