:root {
  --blue: #0089D1;
  --blue-dark: #006BA3;
  --blue-deeper: #004F7A;
  --blue-light: rgba(0, 137, 209, 0.08);
  --blue-mid: rgba(0, 137, 209, 0.12);
  --blue-glow: rgba(0, 137, 209, 0.15);
  --navy: #091B2A;
  --navy-light: #0F2940;
  --navy-mid: #153754;
  --slate: #1C3549;
  --silver: #E8ECF0;
  --silver-dark: #C8CED6;
  --warm-white: #F8F9FB;
  --gray-50: #F4F5F7;
  --gray-100: #ECEEF1;
  --gray-200: #DDE1E6;
  --gray-300: #C1C7CF;
  --gray-400: #858D98;
  --gray-600: #4A5264;
  --gray-800: #1D2433;
  --accent: #E8963A;
  --accent-light: rgba(232, 150, 58, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --brand-accent: var(--blue);
  --btn-cta-color: #fff;
  --btn-cta-shadow: 0 4px 24px rgba(0, 137, 209, .35);
  --breadcrumb-bg: var(--warm-white);
  --breadcrumb-link-hover: var(--blue-dark);
  --navbar-bg: transparent;
  --navbar-blur: none;
  --navbar-shadow: none;
}

/* ─── HERO ─── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 137, 209, .06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(232, 150, 58, .03) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 137, 209, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 137, 209, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: var(--blue-light);
  border: 1px solid var(--blue-glow);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp .8s ease .2s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
  animation: fadeSlideUp .8s ease .4s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 2.5rem;
  max-width: 500px;
  animation: fadeSlideUp .8s ease .6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: fadeSlideUp .8s ease .8s both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Carousel d'images en fond — uniquement page d'accueil (.hero-home) ─── */

.hero-home .hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-home .hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  animation: heroKenBurns 32s infinite ease-in-out;
}

.hero-home .hero-carousel-slide-1 {
  animation-delay: 0s;
}

.hero-home .hero-carousel-slide-2 {
  animation-delay: 8s;
}

.hero-home .hero-carousel-slide-3 {
  animation-delay: 16s;
}

.hero-home .hero-carousel-slide-4 {
  animation-delay: 24s;
}

.hero-home .hero-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 27, 42, .92) 0%, rgba(9, 27, 42, .85) 30%, rgba(9, 27, 42, .5) 60%, rgba(9, 27, 42, .1) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-home .hero-content,
.hero-home .hero-grid {
  z-index: 3;
}

@keyframes heroKenBurns {
  0%   { opacity: 0; transform: scale(1.05); }
  4%   { opacity: 1; }
  25%  { opacity: 1; transform: scale(1.12); }
  29%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.12); }
}

.page-hero,
.hero {
  padding: 10rem 0 5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero-bg,
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 137, 209, .06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(232, 150, 58, .03) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.page-hero-grid,
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 137, 209, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 137, 209, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

.page-hero-content,
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero .section-label,
.hero .section-label {
  color: var(--blue);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-hero h1,
.hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}

.page-hero h1 em,
.hero h1 em {
  color: var(--blue);
}

.page-hero-desc,
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

@keyframes slowRotate {
  to {
    transform: rotate(360deg);
  }
}

.hero-visual-inner::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 137, 209, .06);
}

.hero-cert-float {
  position: absolute;
  padding: .5rem 1rem;
  background: rgba(9, 27, 42, .85);
  border: 1px solid rgba(0, 137, 209, .12);
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.cert-1 {
  top: 15%;
  right: 10%;
  animation: floatCert 4s ease infinite;
}

.cert-2 {
  bottom: 25%;
  right: 5%;
  animation: floatCert 4s ease 1s infinite;
}

.cert-3 {
  top: 45%;
  right: 35%;
  animation: floatCert 4s ease 2s infinite;
}

@keyframes floatCert {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── STATS ─── */

.stats {
  padding: 5rem 0;
  background: var(--warm-white);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.stat-card {
  background: var(--warm-white);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-number .stat-suffix {
  font-size: 1.4rem;
  color: var(--blue);
  margin-left: 2px;
}

.stat-label {
  font-size: .78rem;
  color: var(--gray-400);
  letter-spacing: .3px;
  line-height: 1.4;
}

/* ─── CERTIFICATIONS ─── */

.certifications {
  padding: 4rem 0;
  background: var(--gray-50);
}

.cert-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.cert-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: cert-scroll 30s linear infinite;
}

@keyframes cert-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 1.25rem)); }
}

@media (prefers-reduced-motion: reduce) {
  .cert-track {
    animation: none;
  }
}

.cert-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  transition: border-color .3s, transform .2s;
}

.cert-item:hover {
  border-color: var(--blue);
}

.cert-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.cert-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .5px;
}

.cert-download {
  margin-top: 1.5rem;
  text-align: center;
}

.cert-download a {
  font-size: .78rem;
  color: var(--blue-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
  letter-spacing: .3px;
}

.cert-download a:hover {
  border-color: var(--blue-dark);
}

/* ─── EXPERTISES ─── */

.expertises {
  padding: 6rem 0;
  background: var(--warm-white);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: .75rem;
  line-height: 1.2;
}

.section-header h2 em {
  font-style: italic;
  color: var(--blue-dark);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.expertise-card {
  position: relative;
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  cursor: pointer;
  overflow: hidden;
  background: var(--warm-white);
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--blue);
  transition: height .4s ease;
  border-radius: 0 0 2px 0;
}

.expertise-card:hover::before {
  height: 100%;
}

.expertise-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 137, 209, .06);
}

.expertise-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.expertise-card:nth-child(odd) .expertise-icon {
  background: var(--blue-light);
}

.expertise-card:nth-child(even) .expertise-icon {
  background: var(--accent-light);
}

.expertise-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}

.expertise-card p {
  font-size: .84rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.expertise-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, background .3s;
}

.expertise-card:hover .expertise-arrow {
  border-color: var(--blue);
  background: var(--blue);
}

.expertise-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-400);
  fill: none;
  stroke-width: 2;
  transition: stroke .3s;
}

.expertise-card:hover .expertise-arrow svg {
  stroke: #fff;
}

/* ─── SECTEURS ─── */

.secteurs {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.secteurs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(0, 137, 209, .04) 0%, transparent 60%);
}

.secteurs .section-label {
  color: var(--accent);
}

.secteurs .section-header h2 {
  color: #fff;
}

.secteurs .section-header h2 em {
  color: var(--accent);
}

.secteurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.secteur-card {
  padding: 2.5rem 1.5rem 2rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 8px;
  text-align: center;
  transition: background .3s, border-color .3s, transform .3s;
  cursor: pointer;
}

.secteur-card:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(0, 137, 209, .2);
  transform: translateY(-4px);
}

.secteur-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: border-color .3s;
}

.secteur-card:hover .secteur-icon {
  border-color: var(--blue);
}

.secteur-card h3 {
  font-size: .95rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: .4rem;
}

.secteur-card p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.5;
}

/* ─── ACCOMPAGNEMENT ─── */

.accompagnement {
  padding: 6rem 0;
  background: var(--gray-50);
}

.accompagnement-desc {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
  margin-top: .75rem;
}

.acc-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.acc-step {
  text-align: center;
  padding: 0 1rem;
}

.acc-step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.acc-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}

.acc-step:hover .acc-step-num {
  background: var(--blue-dark);
  transform: scale(1.1);
}

.acc-step-line {
  position: absolute;
  top: 50%;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: var(--gray-200);
  z-index: 1;
  right: calc(-50% + 28px);
  left: auto;
  width: calc(100%);
}

.acc-step:not(:last-child) .acc-step-header::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gray-200) 100%);
  z-index: 1;
}

.acc-step-line {
  display: none;
}

.acc-step h3 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.acc-step p {
  font-size: .8rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ─── ENGAGEMENT ─── */

.engagement {
  padding: 6rem 0;
  background: var(--warm-white);
}

.engagement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.engagement-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin: .75rem 0 1.25rem;
}

.engagement-text h2 em {
  font-style: italic;
  color: var(--blue-dark);
}

.engagement-desc {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.engagement-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.engagement-feat {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .84rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.engagement-feat-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.engagement-feat-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
}

.pharmacien-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border-radius: 8px;
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
}

.pharmacien-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.pharmacien-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}

.pharmacien-role {
  font-size: .76rem;
  color: var(--gray-400);
  line-height: 1.4;
  margin-top: 2px;
}

.engagement-visual {
  position: relative;
  height: 420px;
  border-radius: 10px;
  background: var(--gray-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}

.engagement-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: var(--gray-400);
}

.engagement-visual-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--gray-400);
  fill: none;
  stroke-width: 1.2;
}

/* ─── ACTUALITES ─── */

.actualites {
  padding: 6rem 0;
  background: var(--gray-50);
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.view-all {
  font-size: .82rem;
  color: var(--blue-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: gap .3s;
}

.view-all:hover {
  gap: .7rem;
}

.view-all svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue-dark);
  fill: none;
  stroke-width: 2;
}

.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.actu-card {
  background: var(--warm-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}

.actu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
}

.actu-img {
  height: 180px;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.actu-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 27, 42, .6) 100%);
}

.actu-img-placeholder {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  z-index: 1;
}

.actu-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: .25rem .75rem;
  background: var(--blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 3px;
  text-transform: uppercase;
}

.actu-body {
  padding: 1.5rem;
}

.actu-date {
  font-size: .72rem;
  color: var(--gray-400);
  margin-bottom: .5rem;
}

.actu-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ─── CTA FINAL ─── */

.cta-final {
  padding: 5rem 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0, 137, 209, .06) 0%, transparent 60%);
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
}

.cta-final h2 em {
  font-style: italic;
  color: var(--accent);
}

.cta-final-sub {
  font-size: .95rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-final-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* ─── Responsive ─── */

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-visual {
    display: none;
  }

  .hero-home .hero-carousel {
    display: none;
  }

  .en-action-card {
    grid-template-columns: 1fr !important;
  }

  .en-action-card > div:first-child {
    min-height: 240px !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .secteurs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .acc-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .acc-step:not(:last-child) .acc-step-header::after {
    display: none;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .actu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .acc-timeline {
    grid-template-columns: 1fr;
  }
}
