/* ===== VAT LOGISTICS HOLDING B.V. — DESIGN SYSTEM ===== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Work+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #fbfcff;
  --bg-alt: #161A2E;
  --surface: #1B2038;
  --surface-2: #232A47;
  --line: #2C3350;
  --line-soft: #1F2540;
  --navy: #2C2C44;
  --navy-deep: #181A2E;
  --text: #E9032B;
  --muted: #9ea3ad;
  --muted-dim: #5D6480;
  --red: #E9032B;
  --red-deep: #A5021F;

  --display: 'Oswald', sans-serif;
  --body: 'Work Sans', Arial, sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --wrap: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mono {
  font-family: var(--mono);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

.wrap-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .6s ease, visibility .6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pl-logo {
  width: 64px;
  height: auto;
  margin-bottom: 22px;
}

.pl-bar-track {
  width: 220px;
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.pl-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: var(--red);
  transition: width .15s linear;
}

.pl-pct {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  margin-top: 16px;
}

.pl-word {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--text);
  margin-top: 2px;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  #preloader {
    transition: none;
  }
}

/* ===== NAV ===== */
.site-nav {
  position: relative;
  top: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 32px;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #2C3350;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.brand .brand-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.25;
  white-space: nowrap;
}

.brand .brand-text span {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 400;
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #020938;
  transition: color .2s ease;
  padding: 6px 0;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--red);
}

.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 22px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  border-radius: 2px;
  transition: filter .2s ease, transform .2s ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: rgb(34, 5, 151);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 900;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== NAV BACKDROP (mobile drawer) ===== */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 550;
  background: rgb(234, 235, 236);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width:900px) {
  .site-nav {
    position: relative;
    padding: 10px 18px;
  }

  .brand img {
    height: 32px;
  }

  .brand .brand-text {
    font-size: 13px;
  }

  .brand .brand-text span {
    font-size: 8px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 800;
    height: 100dvh;
    min-height: 100vh;
    width: 100vw;
    max-width: 100%;
    background: #e7e7eb;
    border-left: 0;
    box-shadow: -12px 0 34px rgba(0, 0, 0, 0.45);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 66px 26px 24px 26px;
    gap: 0;
    text-align: left;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .32s cubic-bezier(.4, 0, .2, 1), visibility .32s ease;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links a {
    font-size: 14.5px;
    letter-spacing: 1px;
    padding: 11px 0;
    width: 100%;
    border-bottom: 1px solid var(--line-soft);
    line-height: 1.2;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links .nav-cta-mobile {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding: 12px 18px;
    font-size: 12px;
  }
}

@media (max-width:900px) {

  .wrap,
  .wrap-narrow {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content {
    min-width: 0;
  }

  .hero h1,
  .hero-sub,
  .section-head,
  .page-header h1,
  .page-header p {
    overflow-wrap: anywhere;
  }

  .history-timeline,
  .history-item,
  .history-card,
  .history-content {
    min-width: 0;
    max-width: 100%;
  }

  .history-card img {
    max-width: 100%;
  }
}

@media (max-width:380px) {
  .brand .brand-text {
    display: none;
  }

  .nav-links {
    width: 82vw;
    padding: 60px 20px 20px 20px;
  }

  .nav-links a {
    font-size: 13.5px;
    padding: 9px 0;
  }

  .nav-links .nav-cta-mobile {
    margin-top: 12px;
    padding: 10px 16px;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn-red {
  background: rgb(34, 5, 151);
  color: #fff;
  font-weight: 700;
}

.btn-red:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--line);
  color: #fdfdff;
  background: red;
}

.btn-outline:hover {
  background: rgb(34, 5, 151);
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 20, 35, 0.35) 0%, rgba(18, 20, 35, 0.6) 55%, rgba(18, 20, 35, 0.97) 100%),
    linear-gradient(90deg, rgba(18, 20, 35, 0.8) 0%, rgba(18, 20, 35, 0.15) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 90px 0;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-eyebrow .dash {
  width: 28px;
  height: 1px;
  background: var(--red);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: clamp(42px, 6.8vw, 88px);
  line-height: 0.98;
  margin: 0 0 26px 0;
  max-width: 920px;
  text-transform: uppercase;
}

.hero h1 em {
  font-style: normal;
  color: #B9BFDA;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: #C6CADC;
  max-width: 560px;
  margin: 0 0 40px 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 920px;
}

.hero-stats .stat {
  padding: 20px 22px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats .stat:last-child {
  border-right: none;
}

.hero-stats .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 29px;
  color: var(--text);
  display: block;
}

.hero-stats .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.section.tight {
  padding: 72px 0;
}

.section-head {
  max-width: 840px;
  margin-bottom: 52px;
}

.eyebrow {
  font-family: rgb(1, 1, 93);
  font: size 13px;
  px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #01015d;
  display: block;
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.section-head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  background: var(--surface);
  padding: 64px 40px;
  transition: background .2s ease;
}

.card:hover {
  background-image: url('assets/footer.webp');
  background-size: cover;
  background-position: center;
}

.card .card-num {
  font-family: var(--mono);
  font-size: 15.5px;
  color: var(--red);
  display: block;
  margin-bottom: 16px;
}

.card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgb(239, 237, 237);
  margin: 0;
}

.spec-tile {
  background: var(--surface);
  padding: 26px 24px;
  position: relative;
}

.spec-tile .code {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
}

.spec-tile .name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
  text-transform: uppercase;
}

.spec-tile .desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

.spec-tile .tag {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* ===== TANK GAUGE SIGNATURE ELEMENT ===== */
.gauges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: red;
  border: 1px solid var(--line);
}

.gauge-card {
  background: var(--surface);
  padding: 65px 36px;
  text-align: center;
}

.gauge-ring {
  width: 104px;
  height: 104px;
  margin: 0 auto 18px auto;
  position: relative;
}

.gauge-ring svg {
  transform: rotate(-90deg);
}

.gauge-track {
  stroke: var(--line);
  stroke-width: 8;
  fill: none;
}

.gauge-fill {
  stroke: var(--red);
  stroke-width: 8;
  fill: none;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.4s ease;
}

.gauge-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 600;
}

.gauge-card h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

.gauge-card p {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-deep) 0%, #191C31 60%, var(--bg) 100%);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 3, 43, 0.18), transparent 70%);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 38px);
  margin: 0;
  max-width: 560px;
  text-transform: uppercase;
  line-height: 1.15;
}

.cta-inner p {
  color: var(--muted);
  margin: 10px 0 0 0;
  max-width: 480px;
}

/* ===== FOOTER ===== */
footer {
  padding: 150px 0 82px 0;
  background-image: url('assets/foo.jpg');
  background-size: cover;
  background-position: center;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  color: #323232;
  font-size: 15px;
  line-height: 1.7;
  margin: 16px 0 0 0;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: red;
  margin: 0 0 18px 0;
}

.footer-col ul li {
  margin-bottom: 20px;
}

.footer-col ul li a {
  font-size: 15px;
  color: #323232;
  transition: color .2s ease;
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom span {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--muted-dim);
}

@media (max-width:900px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats .stat:nth-child(2) {
    border-right: none;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .gauges {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 64px 0 48px 0;
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.6vw, 60px);
  text-transform: uppercase;
  margin: 18px 0 14px 0;
  line-height: 1.05;
}

.page-header p {
  font-size: 16px;
  color: #fff;
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

.page-header {
  background-image: url("assets/hero2.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== FORM ===== */
.form-field {
  margin-bottom: 26px;
}

.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 14.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgb(11, 10, 10);
  margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: white;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  border-radius: 2px;
  transition: border-color .2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 400;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, filter .2s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgb(34, 5, 151);
  color: #fff;
}

.scroll-top svg {
  width: 19px;
  height: 19px;
}

@media (max-width:900px) {
  .scroll-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: opacity .1s linear, visibility .1s linear;
  }
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 50px;
}

.feature-content {
  width: 50%;
}

.feature-visual {
  width: 50%;
}

.feature-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .feature {
    flex-direction: column;
    gap: 30px;
  }

  .feature-content,
  .feature-visual {
    width: 100%;
  }

  .feature-visual img {
    height: 300px;
  }
}

.history-section {
  padding: 100px 0;
  background: #f7f8fa;
}

.history-section .section-head {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
}

.history-section .section-head h2 {
  font-size: 45px;
  color: #111;
  margin: 10px 0 15px;
}

.history-section .section-head p {
  color: #666;
  line-height: 1.7;
}


/* =========================
   TIMELINE
========================= */

.history-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Vertical tree line */
.history-timeline::before {
  content: "";
  position: absolute;

  top: 0;
  bottom: 0;
  left: 180px;

  width: 3px;
  background: #d5d9df;
}


/* Timeline item */
.history-item {
  position: relative;

  display: grid;
  grid-template-columns: 150px 60px 1fr;

  gap: 0;

  margin-bottom: 60px;
}


/* Year */
.history-year {
  text-align: right;
  padding-top: 25px;
  padding-right: 20px;
}

.history-year span {
  font-size: 18px;
  font-weight: 700;
  color: red;
}


/* Timeline dot */
.history-dot {
  position: relative;
  z-index: 5;

  width: 20px;
  height: 20px;

  margin-top: 27px;
  margin-left: 10px;

  background: #0b4f8a;

  border: 5px solid #fff;

  border-radius: 50%;

  box-shadow: 0 0 0 2px #0b4f8a;
}


/* =========================
   HISTORY CARD
========================= */

.history-card {
  display: grid;

  grid-template-columns: 260px 1fr;

  background: #fff;

  border-radius: 12px;

  overflow: hidden;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

.history-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.13);
}


/* Image */
.history-image {
  height: 100%;
  min-height: 250px;
  overflow: hidden;
}

.history-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

.history-card:hover .history-image img {
  transform: scale(1.06);
}


/* Text */
.history-content {
  padding: 30px;
}

.history-content h3 {
  margin: 0 0 15px;

  font-size: 25px;

  color: red;
}

.history-content p {
  margin: 0 0 15px;

  color: #444;

  font-size: 16px;

  line-height: 1.8;
}


/* List */
.history-content ul {
  padding-left: 20px;
  margin-top: 15px;
}

.history-content li {
  color: #444;
  line-height: 1.8;
  margin-bottom: 5px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .history-section {
    padding: 60px 20px;
  }

  .history-section .section-head {
    margin-bottom: 50px;
  }

  .history-section .section-head h2 {
    font-size: 34px;
  }


  /* Move timeline line to left */
  .history-timeline::before {
    left: 9px;
  }


  .history-item {
    grid-template-columns: 30px 1fr;

    margin-bottom: 40px;
  }


  /* Dot */
  .history-dot {
    grid-column: 1;
    grid-row: 2;

    margin-left: 0;
    margin-top: 20px;
  }


  /* Year */
  .history-year {
    grid-column: 2;
    grid-row: 1;

    text-align: left;

    padding: 0 0 12px 0;
  }


  /* Card */
  .history-card {
    grid-column: 2;
    grid-row: 2;

    grid-template-columns: 1fr;
  }


  .history-image {
    height: 220px;
    min-height: 220px;
  }


  .history-content {
    padding: 22px;
  }


  .history-content h3 {
    font-size: 21px;
  }
}