/* About and history page styles. Loaded after style.css only by about.html. */

.sub-hero-about {
  background:
    linear-gradient(135deg, rgba(18, 59, 42, 0.92), rgba(46, 107, 71, 0.82)),
    url("../images/hero.png") center center / cover no-repeat;
}

.site-header .nav > a,
.site-header .nav-dropdown-trigger {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
}

.site-header .nav > a:hover,
.site-header .nav > a:focus-visible,
.site-header .nav-dropdown-trigger:hover,
.site-header .nav-dropdown-trigger:focus-visible {
  color: #b9dd9a;
}

.about-body {
  max-width: 720px;
}

.about-body p {
  color: #303832;
  line-height: 1.9;
}

.about-sign {
  margin-top: 36px;
  text-align: right;
  font-weight: 700;
  color: var(--deep-green) !important;
}

.about-cta-section {
  padding-block: 76px;
}

.about-cta-section .related-actions {
  gap: 14px;
  margin-top: 22px;
}

.about-cta-section .action-link {
  min-height: 50px;
  padding: 11px 20px;
  background: transparent;
  border-color: rgba(46, 107, 71, 0.28);
}

.about-cta-section .action-link-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--deep-green));
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(18, 59, 42, 0.22);
}

.about-cta-section .action-link-primary::after {
  color: rgba(255, 255, 255, 0.9);
}

.about-cta-section .action-link-primary:hover,
.about-cta-section .action-link-primary:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #347753, var(--deep-green));
  border-color: transparent;
}

.history-section {
  background:
    linear-gradient(180deg, rgba(18, 59, 42, 0.03) 0%, rgba(147, 201, 107, 0.07) 100%);
}

.history-list {
  display: grid;
  gap: 16px;
  position: relative;
  padding-left: 28px;
}

.history-list::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 8px;
  width: 1px;
  content: "";
  background: rgba(46, 107, 71, 0.22);
}

.history-item {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.history-item::before {
  position: absolute;
  top: 28px;
  left: -24px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--green);
  border: 3px solid #f7fbf4;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(46, 107, 71, 0.2);
}

.history-date {
  font-weight: 800;
  color: #173d2d;
}

.history-content {
  color: #303832;
}

@media (max-width: 820px) {

  .about-body p {
    line-height: 1.82 !important;
  }

  .about-cta-section {
    padding-block: 64px;
  }

  .history-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
