/**
 * IIEC - ABOUT PAGE STYLESHEET
 * Built according to Next Gen Pitch Design & Animation Specifications:
 * Editorial Warm Cream (#f5f5f0) + Pitch Black (#111111) + Electric Orange (#ff5a1f)
 */

/* ================================================================
   1. DESIGN TOKENS & ROOT VARIABLES
   ================================================================ */
:root {
  --bg: #f5f5f0;
  --ink: #111111;
  --card: #ffffff;
  --muted: #66665f;
  --line: #d8d8d0;
  --line-light: #e5e5dc;
  
  /* IIEC Signature Orange Scale */
  --accent: #ff5a1f;
  --accent-dark: #dc4310;
  --accent-light: #ffece4;
  --accent-border: #ffc7b0;
  
  /* Dark Shell & Glass Tokens */
  --dark-shell-bg: #111111;
  --dark-card-bg: #181818;
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(16px) saturate(180%);
  
  /* Status Colors */
  --color-success: #157f4a;
  --color-error: #dc4310;

  /* Layout & Geometry */
  --container-max: 1160px;
  --nav-height: 76px;
  
  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* ================================================================
   2. RESET & BASE TYPOGRAPHY
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* Container */
.container {
  width: min(var(--container-max), calc(100% - 40px));
  margin: 0 auto;
}

/* Headings */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(48px, 6.5vw, 84px);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

h1 em, h2 em, .highlight {
  color: var(--accent);
  font-style: normal;
}

h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.03em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 90, 31, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: #f0f0ea;
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-large {
  padding: 15px 32px;
  font-size: 15.5px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* Pulse Dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.7);
  animation: pulse-ring 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255, 90, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0); }
}

/* Section Header Structure */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 48px);
  flex-wrap: wrap;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-description {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ================================================================
   3. TOP RECRUITMENT ANNOUNCEMENT BAR
   ================================================================ */
.recruitment-topbar {
  background: var(--ink);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  flex-wrap: wrap;
}

.recruitment-topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 90, 31, 0.2);
  color: #ff7b4c;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.recruitment-topbar-link {
  color: #ff7b4c;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.recruitment-topbar-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ================================================================
   4. NAVIGATION BAR
   ================================================================ */
.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 245, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.brand-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: #555550;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--ink);
}

.nav-link.active {
  font-weight: 800;
}

.nav-cta {
  background: var(--ink);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ================================================================
   5. HERO DISPLAY HEADER SECTION
   ================================================================ */
.about-hero-section {
  padding: clamp(50px, 7vw, 90px) 0 clamp(30px, 5vw, 50px);
}

.about-hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent-border);
  align-self: flex-start;
}

.about-hero-title {
  font-size: clamp(48px, 6.8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: var(--ink);
}

.about-hero-subtitle {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--muted);
  line-height: 1.5;
  max-width: 720px;
  font-weight: 500;
  margin-top: 8px;
}

/* ================================================================
   6. INFINITE HARDWARE-ACCELERATED MARQUEE TICKER
   ================================================================ */
.marquee-container {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  background: #ffffff;
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: inline-block;
  animation: iiec-marquee 24s linear infinite;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  will-change: transform;
}

.marquee-track span {
  margin: 0 24px;
  color: var(--accent);
}

@keyframes iiec-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================================
   7. WHO WE ARE SECTION (2-Column Grid + Tilted 3D Ticket)
   ================================================================ */
.whoweare-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.whoweare-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.whoweare-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whoweare-text p {
  font-size: 16px;
  line-height: 1.68;
  color: #444440;
}

.whoweare-text strong {
  color: var(--ink);
  font-weight: 800;
}

/* 3D Tilted Hero Ticket Card */
.hero-ticket-card {
  background: var(--ink);
  color: #ffffff;
  min-height: 440px;
  border-radius: 28px;
  padding: clamp(26px, 3.5vw, 36px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(1.5deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-ticket-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 90, 31, 0.5);
}

.hero-ticket-card::before {
  content: "IIEC";
  position: absolute;
  font-size: 150px;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.04);
  right: -25px;
  bottom: 20px;
  pointer-events: none;
}

.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 16px;
}

.ticket-brand {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7b4c;
}

.ticket-tag {
  font-size: 10.5px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 999px;
  color: #ffffff;
}

.ticket-middle {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.ticket-stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
}

.ticket-stat-num {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
}

.ticket-stat-num span {
  color: var(--accent);
}

.ticket-stat-label {
  font-size: 12px;
  font-weight: 700;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.ticket-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  font-size: 12.5px;
  color: #888888;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.ticket-bottom strong {
  color: #ffffff;
}

/* ================================================================
   8. MISSION & VISION SECTION (2-Column Bento Grid)
   ================================================================ */
.mission-vision-section {
  padding: clamp(50px, 7vw, 80px) 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.mission-card {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  opacity: 0.8;
}

.mission-card:hover {
  transform: translateY(-5px);
  border-color: #b8b8b0;
  box-shadow: var(--shadow-hover);
}

.mission-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 20px;
  border: 1px solid var(--accent-border);
}

.mission-card-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.mission-card-desc {
  font-size: 15.5px;
  color: #444440;
  line-height: 1.65;
  margin-bottom: 24px;
}

.mission-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line-light);
  padding-top: 20px;
}

.mission-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555550;
  font-weight: 600;
}

.mission-points li::before {
  content: "→";
  color: var(--accent);
  font-weight: 900;
  font-size: 15px;
}

/* ================================================================
   9. OUR JOURNEY / TIMELINE SECTION
   ================================================================ */
.timeline-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.timeline-track-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline-track-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: var(--line);
}

.timeline-node {
  position: relative;
  padding-left: 56px;
  margin-bottom: 32px;
}

.timeline-node:last-child {
  margin-bottom: 0;
}

.timeline-bullet {
  position: absolute;
  left: 13px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 3.5px solid var(--accent);
  box-shadow: 0 0 0 4px var(--bg);
  z-index: 2;
}

.timeline-card {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.timeline-card:hover {
  transform: translateX(4px);
  border-color: #b8b8b0;
  box-shadow: var(--shadow-md);
}

.timeline-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.timeline-date-chip {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
  font-weight: 800;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid var(--accent-border);
}

.timeline-status-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--ink);
  color: #ffffff;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.timeline-node-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-node-desc {
  font-size: 14.5px;
  color: #555550;
  line-height: 1.6;
}

.timeline-node-desc strong {
  color: var(--ink);
}

/* ================================================================
   10. VALUES SECTION (3-Column Grid)
   ================================================================ */
.values-section {
  padding: clamp(50px, 7vw, 80px) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 32px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: #b8b8b0;
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f4f4ee;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 6px;
}

.value-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.value-title {
  font-size: 20px;
}

.value-desc {
  font-size: 14px;
  color: #555550;
  line-height: 1.6;
}

/* ================================================================
   11. ECOSYSTEM PORTALS / CROSS BANNERS
   ================================================================ */
.explore-section {
  padding: clamp(50px, 7vw, 80px) 0;
}

.explore-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cross-banner {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 34px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.25s ease;
}

.cross-banner:hover {
  transform: translateY(-4px);
  border-color: #b8b8b0;
  box-shadow: var(--shadow-hover);
}

.cross-banner-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
}

.cross-banner-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.cross-banner-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ================================================================
   12. GRAND DARK CTA SECTION
   ================================================================ */
.cta-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.cta-card {
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 70px) clamp(24px, 4vw, 50px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.25) 0%, rgba(255, 90, 31, 0) 70%);
  pointer-events: none;
  filter: blur(40px);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-title {
  font-size: clamp(32px, 5vw, 54px);
  color: #ffffff;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.cta-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #bbbbbb;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* ================================================================
   13. FOOTER
   ================================================================ */
.footer {
  background: var(--ink);
  color: #ffffff;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.footer-desc {
  font-size: 13.5px;
  color: #888888;
  line-height: 1.6;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #ffffff;
  transition: all 0.2s ease;
}

.footer-social:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: #888888;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
  color: #666666;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: #888888;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ================================================================
   14. RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (max-width: 1024px) {
  .whoweare-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none !important;
  }

  .hamburger-btn,
  .menu-toggle {
    display: flex !important;
  }

  .explore-banners {
    grid-template-columns: 1fr;
  }
}

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

  .hero-ticket-card {
    min-height: auto;
    transform: rotate(0deg);
  }

  .timeline-node {
    padding-left: 44px;
  }

  .timeline-track-wrap::before {
    left: 12px;
  }

  .timeline-bullet {
    left: 5px;
  }
}
