.history-hero {
  padding: 230px 0;
  background-image: url(/images/about/about-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.history-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.25),
    transparent
  );
}

.history-section {
  position: relative;
  padding: clamp(80px, 14vw, 240px) 0;
  background-image: url(/images/bg-texture.png);
  background-repeat: repeat-y;
  background-size: center;
}

.history-container {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 clamp(20px, 6vw, 180px);
  padding-bottom: 2rem;
  gap: clamp(100px, 10vw, 160px);
}

.history-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(50px, 6vw, 120px);
  align-items: start;
}

.history-title h2 {
  font-family: "obviously";
  text-transform: uppercase;
  font-size: clamp(2.8rem, 3.5vw, 4rem);
  line-height: 1.05;
}

.history-description {
  column-count: 2;
  column-gap: 50px;
}

.history-description p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #2a2a2a;
  text-align: justify;
}

.history-lead {
  column-span: all;
  font-size: 1.4rem;
  font-weight: 500;
}

.history-image img {
  width: 100%;
  display: block;
}

.history-image--center {
  max-width: 1200px;
  margin: 0 auto;
  border: 2px solid #1b667f;
}

.history-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 5vw, 100px);
}

.history-feature {
  position: relative;
  padding-left: 24px;
}

.history-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: 26px;
  background: #1b667f;
}

.history-feature h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.history-feature p {
  font-size: 1rem;
  line-height: 1.9;
  color: #444;
}

.history-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(60px, 7vw, 140px);
  align-items: center;
}

.history-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-split-content {
  max-width: 600px;
}

.history-split-content h3 {
  font-size: 30px;
  margin-bottom: 16px;
  font-family: "obviously";
}

.history-split-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 14px;
  color: #2a2a2a;
}

.history-split-content .history-lead {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #1b667f;
}

@media (max-width: 1200px) {
  .history-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .history-description {
    column-count: 1;
  }
}

@media (max-width: 1024px) {
  .history-features {
    grid-template-columns: 1fr;
  }

  .history-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 850px) {
  .history-hero {
    min-height: 400px;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .history-container {
    gap: 70px;
  }

  .history-title h2 {
    font-size: 2rem;
  }

  .history-description p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .history-container {
    gap: 50px;
  }

  .history-title h2 {
    font-size: 1.6rem;
  }
}
