/* =========================================================
   AM TALENTS — expertise.css
   Section "On ne vend pas du marketing" — pilliers éditoriaux
========================================================= */

.am-expertise {
  background: linear-gradient(180deg, var(--am-steel-50) 0%, var(--am-steel-200) 100%);
  color: var(--am-ink-900);
  /* Padding top réduit à 4rem pour réduire la rupture visuelle avec #services */
  padding: 4rem 64px 140px;
  position: relative;
  overflow: hidden;
}

/* Eyebrow en couleur steel dans ce contexte */
.am-expertise .am-eyebrow {
  color: var(--am-steel-300);
}

/* Texte en italique orange dans le titre de section */
.am-expertise .am-h2 .am-serif-italic {
  color: var(--am-orange-400);
}

.am-expertise__head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

/* --- Pilliers --- */

.am-expertise__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 5rem;
  border-top: 1px solid rgba(14,20,25,0.1);
  padding-top: 48px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.am-pillar__k {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--am-font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--am-ink-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.am-pillar__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--am-orange-400);
  margin-right: 0.4rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
  flex-shrink: 0;
}

.am-pillar__d {
  font-size: 15px;
  line-height: 1.6;
  color: var(--am-ink-700);
  margin: 0;
}

/* --- Responsive --- */

@media (max-width: 1024px) {
  .am-expertise { padding: 4rem 40px 100px; }
}

@media (max-width: 960px) {
  .am-expertise__head { grid-template-columns: 1fr; gap: 20px; }
  .am-expertise__pillars { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .am-expertise { padding-left: 24px; padding-right: 24px; }
}
