/* =============================================================
   HERO
============================================================= */

.liens-hero {
  width: 92%;
  margin: 60px auto 80px;
  text-align: center;
}

.liens-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.liens-title {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  color: #181818;
  margin-bottom: 24px;
}

.liens-title em {
  font-style: italic;
  color: #c9923e;
  font-weight: 400;
}

.liens-divider {
  width: 48px;
  height: 3px;
  background: #c9923e;
  border-radius: 2px;
  margin: 0 auto 28px;
}

.liens-desc {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}


/* =============================================================
   CONTENU — CATÉGORIES
============================================================= */

.liens-page {
  width: 92%;
  margin: 0 auto 100px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.liens-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #e8e4dc;
}

.liens-category-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.liens-category-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -1px;
  color: #181818;
  text-align: left;
  margin-bottom: 0;
}


/* =============================================================
   GRILLE DE LIENS
============================================================= */

.liens-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lien-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 24px 26px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.lien-card:hover {
  border-color: rgba(201, 146, 62, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.lien-card-body {
  flex: 1;
}

.lien-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #181818;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.lien-card:hover .lien-card-title {
  color: #c9923e;
}

.lien-card-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.65;
}

.lien-card-arrow {
  font-size: 1.2rem;
  color: #c9923e;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.lien-card:hover .lien-card-arrow {
  transform: translate(3px, -3px);
}


/* =============================================================
   CTA
============================================================= */

.liens-cta {
  width: 92%;
  margin: 0 auto 60px;
  padding: 80px 60px;
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(201, 146, 62, 0.24), transparent 40%),
    linear-gradient(135deg, #181818, #2a241c);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.liens-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.liens-cta-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
}

.liens-cta-title em {
  font-style: italic;
  color: #c9923e;
  font-weight: 400;
}

.liens-cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.liens-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.liens-cta .btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.liens-cta .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}


/* =============================================================
   RESPONSIVE — 900px
============================================================= */

@media (max-width: 900px) {
  .liens-grid {
    grid-template-columns: 1fr;
  }

  .liens-cta {
    padding: 55px 30px;
  }
}

@media (max-width: 700px) {
  .liens-hero {
    margin: 40px auto 60px;
  }

  .liens-title {
    letter-spacing: -2px;
  }

  .liens-page {
    gap: 50px;
    margin-bottom: 60px;
  }

  .liens-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .liens-cta-btns .btn {
    width: 100%;
    text-align: center;
  }
}