/* ============================================================
   ALGI OPERASYONU PAGE — Redesigned Styles
   ============================================================ */

:root {
  --algi-ink: #111827;
  --algi-muted: #4b5563;
  --algi-red: #8f1d25;
  --algi-red-light: #fef2f2;
  --algi-teal: #0f766e;
  --algi-teal-light: #f0fdfa;
  --algi-soft: #e5e7eb;
  --algi-paper: #f8fafc;
  --algi-amber: #d97706;
}

/* ——————————————————————————————
   SCROLL REVEAL ANIMATIONS
   —————————————————————————————— */
.algi-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.algi-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ——————————————————————————————
   HERO
   —————————————————————————————— */
.algi-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-bottom: none;
  background: #0b1220;
  min-height: 520px;
}

.algi-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(143, 29, 37, 0.35), transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(15, 118, 110, 0.28), transparent 50%),
    radial-gradient(ellipse at 50% 85%, rgba(59, 130, 246, 0.1), transparent 50%);
  animation: algiHeroPulse 8s ease-in-out infinite alternate;
}

@keyframes algiHeroPulse {
  0%   { opacity: 0.85; }
  100% { opacity: 1; }
}

.algi-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(80px, 12vh, 120px) 20px clamp(60px, 8vh, 90px);
}

.algi-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 16px;
}

.algi-hero-title {
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 20px;
}

.algi-hero-desc {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(226, 232, 240, 0.85);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
}

.algi-hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.algi-hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 28px;
  min-width: 150px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.algi-hero-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.algi-hero-stat--accent {
  border-color: rgba(143, 29, 37, 0.5);
  background: rgba(143, 29, 37, 0.12);
}

.algi-hero-stat-number {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fef3c7;
  line-height: 1;
  margin-bottom: 6px;
}

.algi-hero-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.75);
  line-height: 1.3;
}

.algi-hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.algi-hero-tags span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ——————————————————————————————
   SECTION BASE
   —————————————————————————————— */
.algi-section {
  padding: clamp(60px, 8vh, 100px) 0;
  background: var(--algi-paper);
}

.algi-section--dark {
  background: #0f172a;
}

.algi-section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}

.algi-section-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.algi-section-title {
  margin: 0 0 6px;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--algi-ink);
}

.algi-section-title--light {
  color: #f1f5f9;
}

.algi-section-subtitle {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--algi-muted);
}

.algi-section-subtitle--light {
  color: rgba(226, 232, 240, 0.7);
}

/* ——————————————————————————————
   VERSUS SECTION (Claim vs Truth)
   —————————————————————————————— */
.algi-versus {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.algi-versus-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.algi-versus-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
  color: #f8fafc;
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.4);
}

.algi-versus-panel {
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.algi-versus-panel--claim {
  background: linear-gradient(150deg, #fef2f2 0%, #fff 60%);
  border: 1px solid #fecaca;
  border-radius: 20px 0 0 20px;
  border-right: none;
}

.algi-versus-panel--truth {
  background: linear-gradient(150deg, #f0fdfa 0%, #fff 60%);
  border: 1px solid #99f6e4;
  border-radius: 0 20px 20px 0;
  border-left: none;
}

.algi-versus-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.algi-versus-badge--red {
  background: var(--algi-red);
  color: #fff;
}

.algi-versus-badge--teal {
  background: var(--algi-teal);
  color: #fff;
}

.algi-versus-quote {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.75;
  font-weight: 600;
  color: #1f2937;
  font-style: italic;
  border-left: 4px solid var(--algi-red);
  padding-left: 20px;
}

.algi-versus-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.algi-fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 118, 110, 0.1);
  transition: transform 0.25s ease;
}

.algi-fact:hover {
  transform: translateX(4px);
}

.algi-fact--highlight {
  background: linear-gradient(135deg, #ccfbf1 0%, #f0fdfa 100%);
  border-color: rgba(15, 118, 110, 0.25);
}

.algi-fact-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.algi-fact p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  color: #1f2937;
}

.algi-fact-data {
  display: block;
  margin-top: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--algi-teal);
}

/* ——————————————————————————————
   GAP CALLOUT
   —————————————————————————————— */
.algi-gap-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding: 0 20px;
}

.algi-gap-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--algi-red), transparent);
}

.algi-gap-content {
  text-align: center;
  flex-shrink: 0;
}

.algi-gap-badge {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--algi-red);
  margin-bottom: 8px;
}

.algi-gap-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--algi-muted);
  font-weight: 600;
  max-width: 400px;
}

/* ——————————————————————————————
   VERTICAL TIMELINE
   —————————————————————————————— */
.algi-timeline {
  position: relative;
  padding: 20px 0 20px 48px;
}

.algi-timeline-line {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(143, 29, 37, 0.6) 0%, rgba(15, 118, 110, 0.4) 100%);
  border-radius: 999px;
}

.algi-timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.algi-timeline-item:last-child {
  margin-bottom: 0;
}

.algi-timeline-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--algi-teal);
  border: 3px solid #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.3);
  z-index: 2;
}

.algi-timeline-dot--red {
  background: var(--algi-red);
  box-shadow: 0 0 0 3px rgba(143, 29, 37, 0.3);
}

.algi-timeline-dot--amber {
  background: var(--algi-amber);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.3);
}

.algi-timeline-date {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.algi-timeline-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.algi-timeline-heading {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #f1f5f9;
}

.algi-timeline-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(226, 232, 240, 0.85);
  font-weight: 500;
}

.algi-timeline-card p strong {
  color: #fef3c7;
  font-weight: 700;
}

.algi-timeline-result {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.algi-timeline-result--negative {
  background: rgba(143, 29, 37, 0.15);
  border: 1px solid rgba(143, 29, 37, 0.3);
  color: #fca5a5;
}

.algi-timeline-result--negative strong {
  color: #fecaca;
}

/* ——————————————————————————————
   CRITICAL ALERT
   —————————————————————————————— */
.algi-critical-alert {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 48px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(143, 29, 37, 0.12) 0%, rgba(143, 29, 37, 0.06) 100%);
  border: 1px solid rgba(143, 29, 37, 0.25);
  border-left: 5px solid var(--algi-red);
}

.algi-critical-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.algi-critical-body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: #fca5a5;
}

.algi-critical-body p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(226, 232, 240, 0.88);
  font-weight: 500;
}

.algi-critical-body p:last-child {
  margin-bottom: 0;
}

.algi-critical-body p strong {
  color: #fef3c7;
  font-weight: 700;
}

.algi-critical-emphasis {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-style: italic;
}

/* ——————————————————————————————
   EFFORT RESULTS
   —————————————————————————————— */
.algi-effort-results {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 36px;
}

.algi-effort-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.algi-effort-card--detail {
  grid-column: 1 / -1;
}

.algi-effort-number {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  color: #fef3c7;
  line-height: 1;
  flex-shrink: 0;
  text-shadow: 0 0 30px rgba(254, 243, 199, 0.2);
}

.algi-effort-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.algi-effort-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.85);
  font-weight: 500;
}

.algi-effort-text strong {
  color: #fef3c7;
  font-weight: 700;
}

/* ——————————————————————————————
   MILESTONE FLOW
   —————————————————————————————— */
.algi-milestone-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
}

.algi-milestone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--algi-soft);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.algi-milestone:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.algi-milestone--success {
  border-color: rgba(15, 118, 110, 0.3);
  background: linear-gradient(150deg, #f0fdfa 0%, #fff 100%);
}

.algi-milestone-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.algi-milestone-connector::before {
  content: "";
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--algi-soft) 0%, var(--algi-teal) 50%, var(--algi-soft) 100%);
  border-radius: 999px;
}

.algi-milestone-connector::after {
  content: "\2192";
  position: absolute;
  font-size: 18px;
  color: var(--algi-teal);
  font-weight: 700;
}

.algi-milestone-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--algi-ink) 0%, #374151 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.algi-milestone-marker--success {
  background: linear-gradient(135deg, var(--algi-teal) 0%, #14b8a6 100%);
}

.algi-milestone-step {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.algi-milestone-date {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--algi-red);
  margin-bottom: 8px;
}

.algi-milestone-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--algi-ink);
  font-weight: 600;
}

/* ——————————————————————————————
   SECURITY MEASURES
   —————————————————————————————— */
.algi-measures {
  background: #fff;
  border: 1px solid var(--algi-soft);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  margin-bottom: 36px;
}

.algi-measures-header {
  margin-bottom: 28px;
}

.algi-measures-header h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  color: var(--algi-red);
  line-height: 1.3;
}

.algi-measures-header p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--algi-ink);
  font-weight: 600;
}

.algi-measures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.algi-measure-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 14px;
  background: linear-gradient(150deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--algi-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.algi-measure-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.algi-measure-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.algi-measure-number {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--algi-teal);
  line-height: 1;
  margin-bottom: 8px;
}

.algi-measure-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--algi-muted);
  line-height: 1.35;
}

/* ——————————————————————————————
   VERDICT
   —————————————————————————————— */
.algi-verdict {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}

.algi-verdict-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.algi-verdict p {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.01em;
}

.algi-verdict p strong {
  color: #86efac;
}

/* ——————————————————————————————
   RESPONSIVE BREAKPOINTS
   —————————————————————————————— */
@media (max-width: 1024px) {
  .algi-measures-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .algi-milestone-flow {
    flex-direction: column;
    gap: 0;
  }

  .algi-milestone-connector {
    width: auto;
    height: 32px;
  }

  .algi-milestone-connector::before {
    width: 3px;
    height: 100%;
  }

  .algi-milestone-connector::after {
    content: "\2193";
  }
}

@media (max-width: 900px) {
  .algi-versus {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .algi-versus-label {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    justify-content: center;
    margin: -16px 0;
    z-index: 3;
  }

  .algi-versus-panel--claim {
    border-radius: 20px 20px 0 0;
    border-right: 1px solid #fecaca;
    border-bottom: none;
  }

  .algi-versus-panel--truth {
    border-radius: 0 0 20px 20px;
    border-left: 1px solid #99f6e4;
    border-top: none;
  }

  .algi-effort-results {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .algi-hero {
    min-height: auto;
  }

  .algi-hero-inner {
    padding: 72px 16px 52px;
  }

  .algi-hero-title {
    line-height: 1.16;
  }

  .algi-hero-title br {
    display: none;
  }

  .algi-hero-desc {
    margin-bottom: 28px;
  }

  .algi-section {
    padding: 56px 0;
  }

  .algi-section-header {
    margin-bottom: 28px;
  }

  .algi-hero-stats {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .algi-hero-stat {
    width: min(100%, 340px);
    min-width: 0;
    padding: 18px 20px;
  }

  .algi-hero-tags span {
    padding: 5px 10px;
  }

  .algi-versus-panel {
    padding: 24px 20px;
  }

  .algi-versus-label {
    margin: -10px 0;
  }

  .algi-versus-vs {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .algi-versus-quote {
    font-size: 15px;
  }

  .algi-fact p,
  .algi-fact-data,
  .algi-timeline-card p,
  .algi-critical-body p,
  .algi-effort-text,
  .algi-milestone-body p,
  .algi-measures-header p,
  .algi-verdict p {
    overflow-wrap: anywhere;
  }

  .algi-measures {
    padding: 24px 20px;
  }

  .algi-measures-grid {
    grid-template-columns: 1fr 1fr;
  }

  .algi-critical-alert {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .algi-gap-callout {
    flex-direction: column;
    gap: 16px;
  }

  .algi-gap-line {
    width: 60%;
    height: 2px;
  }

  .algi-timeline {
    padding-left: 40px;
  }

  .algi-timeline-card {
    padding: 20px 18px;
  }

  .algi-timeline-heading {
    font-size: 17px;
  }

  .algi-timeline-dot {
    left: -32px;
    width: 14px;
    height: 14px;
  }

  .algi-timeline-line {
    left: 14px;
  }

  .algi-verdict {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .algi-hero-inner {
    padding: 64px 12px 44px;
  }

  .algi-kicker {
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }

  .algi-hero-title {
    font-size: clamp(28px, 9.2vw, 36px);
    margin-bottom: 16px;
  }

  .algi-hero-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .algi-section-header {
    flex-direction: column;
    gap: 10px;
  }

  .algi-section-icon {
    font-size: 28px;
    margin-top: 0;
  }

  .algi-section-subtitle {
    font-size: 14px;
  }

  .algi-versus-panel {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .algi-versus-label {
    margin: -6px 0;
  }

  .algi-gap-badge {
    font-size: clamp(20px, 8vw, 30px);
  }

  .algi-gap-content p {
    font-size: 13px;
  }

  .algi-timeline {
    padding-left: 34px;
  }

  .algi-timeline-line {
    left: 12px;
  }

  .algi-timeline-dot {
    left: -26px;
    top: 8px;
  }

  .algi-timeline-card {
    padding: 16px;
  }

  .algi-timeline-date {
    font-size: 12px;
  }

  .algi-measures-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .algi-measures,
  .algi-critical-alert,
  .algi-verdict {
    padding: 18px 16px;
  }

  .algi-effort-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
  }

  .algi-fact p,
  .algi-timeline-card p,
  .algi-effort-text,
  .algi-milestone-body p,
  .algi-measures-header p,
  .algi-verdict p {
    font-size: 14px;
    line-height: 1.62;
  }

  .algi-milestone {
    align-items: flex-start;
    text-align: left;
    padding: 22px 16px;
  }

  .algi-milestone-connector {
    height: 24px;
  }

  .algi-measure-item {
    padding: 16px 12px;
  }

  .algi-measure-number {
    font-size: clamp(22px, 8vw, 30px);
  }

  .algi-measure-label {
    font-size: 12px;
  }
}
