/* =============================================
   À propos d'IT for Business — styles
   ============================================= */

/* ── Photo d'article (og:image) ────────────── */
.article-card__img--photo {
  padding: 0;
  background: #e9e4d9;
}
.article-card__img--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}
.article-card:hover .article-card__img--photo img {
  transform: scale(1.04);
}

/* ── HERO ─────────────────────────────────── */
.apropos-hero {
  padding: 120px 64px 80px;
  background: #f9f7f3;
  border-bottom: 1px solid rgba(32,32,32,0.1);
}
.apropos-hero__inner { max-width: 1280px; margin: 0 auto; }

.apropos-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #8d8d8d;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 150ms ease;
}
.apropos-hero__back:hover { color: #202020; }

.apropos-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #2A17FC;
  background: rgba(42,23,252,0.08);
  border: 1px solid rgba(42,23,252,0.2);
  border-radius: 9999px;
  padding: 5px 14px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.apropos-hero__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: #202020;
  margin-bottom: 20px;
}
.apropos-hero__title-logo {
  height: clamp(34px, 4vw, 56px);
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.apropos-hero__title-line {
  display: block;
}

.apropos-hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: #575757;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}

.apropos-hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(32,32,32,0.1);
}
.apropos-hero__stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2A17FC;
  letter-spacing: -0.5px;
  line-height: 1;
}
.apropos-hero__stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8d8d8d;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── SECTION HEADER COMMUN ───────────────── */
.apropos-section-header {
  margin-bottom: 48px;
  max-width: 640px;
}
.apropos-section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #202020;
  margin-bottom: 14px;
}
.apropos-section-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #575757;
  line-height: 1.65;
}

/* ── ARTICLES ────────────────────────────── */
.apropos-articles {
  padding: 96px 64px;
  background: #ffffff;
}
.apropos-articles__inner { max-width: 1280px; margin: 0 auto; }

.apropos-theme {
  margin-bottom: 64px;
}
.apropos-theme:last-child { margin-bottom: 0; }

.apropos-theme__label {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.apropos-theme__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Article card */
.article-card {
  background: #f9f7f3;
  border: 1px solid rgba(32,32,32,0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  transition: box-shadow 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.article-card:hover {
  box-shadow: 0 12px 40px rgba(32,32,32,0.1);
  transform: translateY(-3px);
}
.article-card > *:not(.article-card__spotlight) { position: relative; z-index: 1; }

.article-card__spotlight {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,23,252,0.1) 0%, rgba(42,23,252,0.04) 50%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.article-card.is-aura-hover .article-card__spotlight { opacity: 1; }

.article-card__img {
  height: 120px;
  background: #f0ece2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }

.article-card__tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 3px 10px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.article-card__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #202020;
  letter-spacing: -0.2px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.article-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #575757;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.article-card__meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8d8d8d;
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-card__dot { opacity: 0.5; }
.article-card__arrow {
  margin-left: auto;
  color: #2A17FC;
  font-size: 14px;
  transition: transform 150ms ease;
}
.article-card:hover .article-card__arrow { transform: translateX(4px); }

/* ── ÉVÉNEMENTS ──────────────────────────── */
.apropos-events {
  padding: 96px 64px;
  background: #202020;
}
.apropos-events__inner { max-width: 1280px; margin: 0 auto; }
.apropos-events .apropos-section-title { color: #fcfcfc; }
.apropos-events .apropos-section-body  { color: rgba(252,252,252,0.6); }

.apropos-events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.apropos-event-card {
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 150ms ease;
}
.apropos-event-card:hover { border-color: rgba(252,219,22,0.35); }
.apropos-event-card > *:not(.apropos-event-card__spotlight) { position: relative; z-index: 1; }

.apropos-event-card__spotlight {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,219,22,0.16) 0%, rgba(252,219,22,0.05) 50%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.apropos-event-card.is-aura-hover .apropos-event-card__spotlight { opacity: 1; }

.apropos-event-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(252,219,22,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.apropos-event-card__name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fcfcfc;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.apropos-event-card__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(252,252,252,0.6);
  line-height: 1.65;
  margin-bottom: 20px;
}
.apropos-event-card__tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #FCDB16;
  background: rgba(252,219,22,0.1);
  border: 1px solid rgba(252,219,22,0.25);
  border-radius: 9999px;
  padding: 4px 12px;
  letter-spacing: 0.04em;
}

/* ── CTA FINAL ───────────────────────────── */
.apropos-cta {
  padding: 96px 64px;
  background: #2A17FC;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.apropos-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.apropos-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.apropos-cta__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 16px;
}
.apropos-cta__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 36px;
}
.apropos-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .apropos-theme__grid    { grid-template-columns: repeat(2, 1fr); }
  .apropos-events__grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .apropos-hero           { padding: 100px 24px 60px; }
  .apropos-articles       { padding: 64px 24px; }
  .apropos-events         { padding: 64px 24px; }
  .apropos-cta            { padding: 64px 24px; }
  .apropos-theme__grid    { grid-template-columns: 1fr; }
  .apropos-events__grid   { grid-template-columns: 1fr; }
  .apropos-hero__stats    { gap: 24px; }
}
