/* ═══════════════════════════════════════════════════════════════════
   chrono.css — Styles complets pour l'outil de chronométrage
   Appariteur.com — Design cohérent avec planning.php
════════════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Variables globales ─────────────────────────────────────────── */
:root {
  --navy:        #0B1D51;
  --navy-mid:    #0d2260;
  --gold:        #D4A843;
  --gold-dark:   #C9A227;
  --gold-light:  #e8c56a;
  --red:         #e05252;
  --red-dark:    #c73d3d;
  --amber:       #e08c30;
  --white:       #ffffff;
  --white-dim:   rgba(255,255,255,.55);
  --white-faint: rgba(255,255,255,.18);
  --glass-bg:    rgba(255,255,255,.04);
  --glass-border:rgba(255,255,255,.08);
  --glass-hover: rgba(255,255,255,.07);
  --shadow:      0 8px 32px rgba(0,0,0,.4);
  --radius:      16px;
}

/* ── Corps ──────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

/* ── Fond animé (identique à planning.php) ──────────────────────── */
.time-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%,  rgba(212,168,67,.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%,  rgba(13,34,96,.9)    0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #0d2260               0%, #0B1D51 100%);
  animation: bgPulse 12s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0%   { opacity: 1; }
  50%  { opacity: .85; filter: brightness(1.08); }
  100% { opacity: 1; }
}

/* ── Conteneur principal ─────────────────────────────────────────── */
.page-wrap {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ════════════════════════════════════════════════════════════════
   SECTION 1 — Heure courante
════════════════════════════════════════════════════════════════ */
.header-clock {
  text-align: center;
  padding-top: 56px;
  margin-bottom: 48px;
}

/* Horloge principale */
.clock-display {
  font-family: 'Orbitron', monospace;
  font-size: clamp(48px, 12vw, 140px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(212,168,67,.55)) drop-shadow(0 0 8px rgba(212,168,67,.3));
  user-select: none;
}

/* Séparateurs clignotants */
.clock-sep {
  display: inline-block;
  animation: blink 1s step-end infinite;
  margin: 0 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Date en français */
.clock-date {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 2.5vw, 18px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--white-dim);
  margin-top: 12px;
}

/* Badge synchronisé */
.sync-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212,168,67,.35);
  background: rgba(212,168,67,.09);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════
   SECTION 2 — Grille
════════════════════════════════════════════════════════════════ */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* ── Carte verre ─────────────────────────────────────────────── */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Titre de carte */
.card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card__title-icon {
  color: var(--gold);
  font-size: 14px;
}

/* ════════════════════════════════════════════════════════════════
   Affichages chrono & countdown
════════════════════════════════════════════════════════════════ */
.chrono-display,
.countdown-display {
  font-family: 'Orbitron', monospace;
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: .03em;
  background: linear-gradient(135deg, #ffffff 0%, #f0d48b 50%, #D4A843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(212,168,67,.4));
  user-select: none;
  transition: filter .3s;
}

/* Chrono en cours — légère pulsation */
.chrono-display--running {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(212,168,67,.4)); }
  50%       { filter: drop-shadow(0 0 28px rgba(212,168,67,.8)); }
}

/* Countdown avertissement (<5 min) */
.countdown-display--warning {
  background: linear-gradient(135deg, #f5b942 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(224,140,48,.6));
}

/* Countdown terminé */
.countdown-display--ended {
  background: linear-gradient(135deg, #ff8080 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(224,82,82,.7));
  animation: flash .6s step-end infinite;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}

/* ── Barre de progression ────────────────────────────────────── */
.progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 8px rgba(212,168,67,.5);
  transition: width .25s linear, background .4s;
}

.progress-fill--warning {
  background: linear-gradient(90deg, #c97520, #f5b942);
  box-shadow: 0 0 8px rgba(224,140,48,.5);
}

.progress-fill--ended {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  box-shadow: 0 0 8px rgba(224,82,82,.5);
}

/* ── Bannière temps écoulé ───────────────────────────────────── */
.ended-banner {
  text-align: center;
  font-family: 'Orbitron', monospace;
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--red);
  text-shadow: 0 0 20px rgba(224,82,82,.8), 0 0 40px rgba(224,82,82,.4);
  padding: 12px 0;
  animation: fadeIn .4s ease, flashBanner .8s step-end infinite;
}

@keyframes flashBanner {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ════════════════════════════════════════════════════════════════
   Boutons
════════════════════════════════════════════════════════════════ */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  border-radius: 10px;
  padding: 9px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: opacity .2s, transform .12s, box-shadow .2s, background .2s;
  white-space: nowrap;
}

.btn:active:not(:disabled) {
  transform: scale(.96);
}

/* Or */
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(212,168,67,.35);
}
.btn--gold:hover:not(:disabled) {
  box-shadow: 0 6px 20px rgba(212,168,67,.55);
  opacity: .92;
}

/* Verre */
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
}
.btn--ghost:hover:not(:disabled) {
  background: rgba(255,255,255,.13);
}

/* Danger */
.btn--danger {
  background: linear-gradient(135deg, #e06060, var(--red-dark));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(199,61,61,.3);
}
.btn--danger:hover:not(:disabled) {
  box-shadow: 0 6px 20px rgba(199,61,61,.5);
  opacity: .92;
}

/* Désactivé */
.btn--disabled,
.btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════
   Préréglages durées
════════════════════════════════════════════════════════════════ */
.presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preset-btn {
  border: 1px solid rgba(212,168,67,.4);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s;
  letter-spacing: .04em;
}

.preset-btn:hover {
  background: rgba(212,168,67,.12);
  border-color: var(--gold);
}

.preset-btn--active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(212,168,67,.4);
}

/* ════════════════════════════════════════════════════════════════
   Saisie manuelle HH MM SS
════════════════════════════════════════════════════════════════ */
.custom-time {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.time-sep {
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  padding-bottom: 10px;
  align-self: center;
}

.time-input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.time-input-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white-dim);
}

.time-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.spinner-btn {
  width: 30px;
  height: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  background: rgba(255,255,255,.05);
  color: var(--white-dim);
  font-size: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}

.spinner-btn:hover {
  background: rgba(212,168,67,.15);
  color: var(--gold);
  border-color: rgba(212,168,67,.3);
}

.time-input {
  width: 58px;
  height: 52px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  /* Masquer les flèches natives */
  -moz-appearance: textfield;
}

.time-input::-webkit-inner-spin-button,
.time-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.time-input:focus {
  border-color: rgba(212,168,67,.5);
  box-shadow: 0 0 0 3px rgba(212,168,67,.1);
}

/* ════════════════════════════════════════════════════════════════
   Liste des tours
════════════════════════════════════════════════════════════════ */
.laps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.laps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--white-dim);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.laps-list {
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Scrollbar personnalisée */
.laps-list::-webkit-scrollbar {
  width: 4px;
}
.laps-list::-webkit-scrollbar-track {
  background: rgba(255,255,255,.04);
  border-radius: 4px;
}
.laps-list::-webkit-scrollbar-thumb {
  background: rgba(212,168,67,.35);
  border-radius: 4px;
}
.laps-list::-webkit-scrollbar-thumb:hover {
  background: rgba(212,168,67,.6);
}

.lap-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  transition: background .15s;
}

.lap-item:hover {
  background: rgba(255,255,255,.04);
}

.lap-item:last-child {
  border-bottom: none;
}

.lap-item__num {
  color: var(--gold);
  font-weight: 700;
  min-width: 32px;
  font-size: 11px;
}

.lap-item__time {
  color: var(--white);
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}

.lap-item__total {
  color: var(--white-dim);
  font-size: 11px;
  font-family: 'Orbitron', monospace;
  letter-spacing: .02em;
}

/* ════════════════════════════════════════════════════════════════
   Pied de page
════════════════════════════════════════════════════════════════ */
.footer-bar {
  margin-top: 40px;
  text-align: center;
  padding: 16px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.footer-bar p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--white-dim);
  letter-spacing: .04em;
}

.footer-bar a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity .2s;
}

.footer-bar a:hover {
  opacity: .75;
}

/* ════════════════════════════════════════════════════════════════
   RANGÉE OUTILS — Compte à rebours (large) + Chronomètre
════════════════════════════════════════════════════════════════ */
.tools-row {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 20px;
  align-items: start;
}

/* Empêche le contenu d'élargir les colonnes au-delà de leur fraction */
.tools-row > * {
  min-width: 0;
  overflow: hidden;
}

/* Compte à rebours : affichage grand */
#cardCountdown .countdown-display {
  font-size: clamp(48px, 9vw, 100px);
  filter: drop-shadow(0 0 20px rgba(212,168,67,.5)) drop-shadow(0 0 6px rgba(212,168,67,.25));
}

/* Barre de progression un peu plus épaisse */
#cardCountdown .progress-bar {
  height: 8px;
}

/* Chronomètre : affichage adapté à la colonne étroite */
#cardChrono .chrono-display {
  font-size: clamp(20px, 3.5vw, 36px);
}

@media (max-width: 768px) {
  .tools-row {
    grid-template-columns: 1fr;
  }

  #cardChrono .chrono-display {
    font-size: clamp(36px, 10vw, 64px);
  }
}

/* ════════════════════════════════════════════════════════════════
   BLOC HEURE — Layout planning.php (tl-*)
════════════════════════════════════════════════════════════════ */

/* Pill localisation */
.tl-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 36px auto 0;
  padding: 7px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-dim);
  display: flex;
}

.tl-location-pill i {
  color: var(--gold);
  font-size: 13px;
}

/* Wrapper horloge principale */
.tl-clock-wrap {
  text-align: center;
  padding-top: 12px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Horloge géante */
.tl-clock {
  font-family: 'Orbitron', monospace;
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .03em;
  background: linear-gradient(135deg, #ffffff 0%, #f0d48b 50%, #D4A843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(212,168,67,.45)) drop-shadow(0 0 6px rgba(212,168,67,.25));
  user-select: none;
}

/* Séparateurs ":" du clock */
.tl-sep {
  display: inline-block;
  animation: blink 1s step-end infinite;
  margin: 0 4px;
}

/* Bande d'infos (5 pills) */
.tl-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.tl-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 10px 16px;
  min-width: 130px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tl-pill__icon {
  font-size: 20px;
  line-height: 1;
}

.tl-pill__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white-dim);
  margin-bottom: 2px;
}

.tl-pill__val {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

/* Carte verre fuseau horaire */
.tl-glass-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.tl-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--white-dim);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.tl-card-title i {
  color: var(--gold);
}

/* Ligne sélecteur de fuseau */
.tl-tz-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tl-tz-row label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-dim);
  white-space: nowrap;
}

.tl-tz-select {
  flex: 1;
  min-width: 180px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 8px 12px;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
}

.tl-tz-select:focus {
  border-color: rgba(212,168,67,.5);
}

.tl-tz-select option {
  background: #0b1d51;
}

.tl-tz-badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212,168,67,.12);
  border: 1px solid rgba(212,168,67,.3);
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
  white-space: nowrap;
}

/* Ligne recherche de ville */
.tl-search {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tl-search input {
  flex: 1;
  min-width: 200px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 8px 12px;
  outline: none;
  transition: border-color .2s;
}

.tl-search input::placeholder {
  color: rgba(255,255,255,.28);
}

.tl-search input:focus {
  border-color: rgba(212,168,67,.5);
}

.tl-search button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .12s;
}

.tl-search button:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* Séparateur de section */
.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 28px;
  color: var(--gold);
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,.35), transparent);
}

.section-divider i {
  font-size: 18px;
}

.section-divider span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════════
   Responsive — petits écrans
════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .page-wrap {
    padding: 0 12px 60px;
  }

  .header-clock {
    padding-top: 36px;
    margin-bottom: 28px;
  }

  .card {
    padding: 20px 16px 18px;
    gap: 16px;
  }

  .custom-time {
    gap: 4px;
  }

  .time-input {
    width: 50px;
    height: 46px;
    font-size: 18px;
  }

  .time-sep {
    font-size: 20px;
  }

  .btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .tl-pill {
    min-width: 110px;
    padding: 8px 12px;
  }

  .tl-glass-card {
    padding: 16px;
  }

  .tl-tz-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .tl-tz-select {
    width: 100%;
  }

  .section-divider span {
    font-size: 10px;
    letter-spacing: .12em;
  }
}
