/* DEBUT page auteur */
.auth-hero {
  background: #1a1a2e;
  padding: 80px 0 72px;
}

.auth-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}

.auth-hero-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.auth-hero-avatar-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}

.auth-hero-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a1c, #fce721);
  z-index: 0;
}

.auth-hero-avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1a1a2e;
}

.auth-hero-avatar-placeholder {
  position: relative;
  z-index: 1;
  width: 212px;
  height: 212px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,106,28,0.15), rgba(252,231,33,0.1));
  border: 4px solid #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-hero-avatar-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

.auth-hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.auth-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,106,28,0.2);
  border-radius: 10px;
  padding: 10px 14px;
}

.auth-badge-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(255,106,28,0.15), rgba(252,231,33,0.1));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-badge-icon svg {
  width: 16px;
  height: 16px;
  fill: #ff6a1c;
}

.auth-badge-text {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.auth-badge-text strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* COLONNE DROITE */
.auth-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ff6a1c;
}

.auth-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #ff6a1c, #fce721);
  border-radius: 2px;
}

.auth-hero-name {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.auth-hero-name span {
  background: linear-gradient(135deg, #ff6a1c, #fce721);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-hero-role {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.auth-hero-bio {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin: 0;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #ff6a1c;
  border-radius: 0 12px 12px 0;
}

.auth-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.auth-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff6a1c, #e65c17);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(255,106,28,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.auth-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,106,28,0.45);
  text-decoration: none;
  color: #fff;
}

.auth-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color .25s ease, background .25s ease;
}

.auth-cta-secondary:hover {
  border-color: #ff6a1c;
  background: rgba(255,106,28,0.08);
  text-decoration: none;
  color: #fff;
}

.auth-cta-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ====================================================
   SECTION STATS / PARCOURS
   ==================================================== */
.auth-stats-section {
  background: #f8f8fb;
  padding: 72px 0;
}

.auth-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.auth-section-label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ff6a1c;
  margin-bottom: 8px;
}

.auth-section-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #1a1a2e;
  margin: 0 0 40px;
  line-height: 1.2;
}

.auth-section-title span {
  background: linear-gradient(135deg, #ff6a1c, #fce721);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.auth-stat-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.auth-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6a1c, #fce721);
}

.auth-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255,106,28,0.12);
}

.auth-stat-num {
  font-family: 'Roboto', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #ff6a1c;
  line-height: 1;
  margin-bottom: 8px;
}

.auth-stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* TIMELINE */
.auth-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 32px;
}

.auth-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #ff6a1c, rgba(252,231,33,0.3));
}

.auth-tl-item {
  position: relative;
  padding: 0 0 36px 28px;
}

.auth-tl-item:last-child {
  padding-bottom: 0;
}

.auth-tl-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a1c, #fce721);
  box-shadow: 0 0 0 4px rgba(255,106,28,0.15);
  z-index: 1;
}

.auth-tl-year {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ff6a1c;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.auth-tl-title {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.auth-tl-text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ====================================================
   SECTION ARTICLES (titre)
   ==================================================== */
.auth-articles-header {
  background: #fff;
  padding: 56px 0 32px;
  border-bottom: 1px solid #f0f0f0;
}

.auth-articles-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.auth-articles-left h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.auth-articles-left h2 span {
  background: linear-gradient(135deg, #ff6a1c, #fce721);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-articles-left p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0;
}

.auth-articles-rss {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid #ff6a1c;
  border-radius: 8px;
  color: #ff6a1c;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
  white-space: nowrap;
}

.auth-articles-rss:hover {
  background: #ff6a1c;
  color: #fff;
  text-decoration: none;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .auth-hero-inner {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }
  .auth-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .auth-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .auth-hero-photo-col { align-items: center; }
  .auth-hero-eyebrow { justify-content: center; }
  .auth-hero-ctas { justify-content: center; }
  .auth-hero-bio { text-align: left; }
  .auth-hero-badges { max-width: 320px; margin: 0 auto; }
  .auth-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-timeline { padding-left: 24px; }
}

@media (max-width: 520px) {
  .auth-hero { padding: 56px 0 48px; }
  .auth-stats-section { padding: 48px 0; }
  .auth-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .auth-stat-num { font-size: 32px; }
  .auth-hero-avatar-wrap { width: 180px; height: 180px; }
  .auth-articles-inner { flex-direction: column; align-items: flex-start; }
}
/* FIN page auteur */
