.timeline {
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 80px;
    bottom: 145px;
    width: 3px;
    background: #E6212B;
    margin-bottom: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 120px;
}

.timeline-wrapper {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 30px;
    align-items: start;
}

.timeline-content { 
	width: 100%; 
	float: left;
}

.timeline-year-marker {
    position: relative;
    z-index: 2;
}

.timeline-dot-container {
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #E6212B;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-45%);
    top: 8px;
}

.timeline-image {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}


@media (max-width: 768px) {

    .timeline-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-line {
        display:none;
    }

    .timeline-dot {
        display: none;
    }

    .timeline-item {
        margin-bottom: 80px;
    }
}

#colophon {
  padding: 0 2rem;
}

.gradient-overlay .wp-block-cover__background {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 44.71%, rgba(0, 0, 0, 0.8) 100%) !important;
  opacity: 1 !important;
}

.gradient-overlay ul {
  padding-left: 0;
}

.gradient-overlay .wp-block-list li {
  list-style: none;
  padding-left: 30px;
  position: relative;
}

.gradient-overlay .wp-block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 8.125C0 3.6375 3.6375 0 8.125 0C12.6125 0 16.25 3.6375 16.25 8.125C16.25 12.6125 12.6125 16.25 8.125 16.25C3.6375 16.25 0 12.6125 0 8.125ZM11.1333 6.61333C11.1833 6.54671 11.2195 6.47076 11.2397 6.38996C11.26 6.30915 11.2638 6.22512 11.2511 6.1428C11.2384 6.06047 11.2094 5.98152 11.1657 5.91058C11.1221 5.83964 11.0646 5.77815 10.9969 5.72971C10.9291 5.68127 10.8523 5.64687 10.7711 5.62852C10.6898 5.61018 10.6057 5.60826 10.5237 5.62289C10.4417 5.63751 10.3635 5.66838 10.2936 5.71368C10.2237 5.75898 10.1635 5.81779 10.1167 5.88667L7.42 9.66167L6.06667 8.30833C5.94819 8.19793 5.79148 8.13783 5.62956 8.14069C5.46765 8.14354 5.31316 8.20914 5.19865 8.32365C5.08414 8.43816 5.01854 8.59265 5.01569 8.75456C5.01283 8.91648 5.07293 9.07319 5.18333 9.19167L7.05833 11.0667C7.12249 11.1308 7.19983 11.1802 7.28499 11.2114C7.37015 11.2426 7.46108 11.2549 7.55147 11.2474C7.64186 11.24 7.72955 11.213 7.80844 11.1682C7.88733 11.1235 7.95554 11.0621 8.00833 10.9883L11.1333 6.61333Z' fill='%2324A859'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.wp-block-columns[style*="border-bottom-width"],
.wp-block-columns[style*="border-bottom:"] {
  border-bottom-color: #DFDFDF !important;
  border-bottom-style: solid !important;
}
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}
/* =========================
   BUTTON SYSTEM
========================= */

/* Primary */
.wp-block-button.is-style-primary {
  --global-palette-btn-bg: #24A859;
  --global-palette-btn: #F5F5F5;
  --global-palette-btn-bg-hover: #A4EE95;
  --global-palette-btn-hover: #0B321B;
}

/* Secondary */
.wp-block-button.is-style-secondary {
  --global-palette-btn-bg: #A4EE95;
  --global-palette-btn: #0B321B;
  --global-palette-btn-bg-hover: #24A859;
  --global-palette-btn-hover: #F5F5F5;
}

/* =========================
   BLACK BUTTON
========================= */

.wp-block-button.is-style-black {
  --global-palette-btn-bg: #241F20;
  --global-palette-btn: #A4EE95;
  --global-palette-btn-bg-hover: transparent;
  --global-palette-btn-hover: #241F20;
}

.wp-block-button.is-style-black .wp-block-button__link {
  border: 2px solid transparent;
  box-shadow: none;
}

.wp-block-button.is-style-black .wp-block-button__link:hover {
  background: transparent;
  color: #241F20;
  border-color: #241F20;
  box-shadow: none;
}


/* =========================
   ARROW BUTTON
========================= */

.wp-block-button.is-style-arrow .wp-block-button__link {
  background: transparent !important;
  color: #0B321B;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  box-shadow: none;
}

.wp-block-button.is-style-arrow .wp-block-button__link::after {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 4px;
  transition: all 0.25s ease;
  background-color: #A4EE95;
  background-image: url("data:image/svg+xml;utf8,<svg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M0.175472 7.824C0.287972 7.93636 0.440472 7.99947 0.599472 7.99947C0.758473 7.99947 0.910972 7.93636 1.02347 7.824L6.79947 2.048V6.6C6.79947 6.75913 6.86269 6.91174 6.97521 7.02426C7.08773 7.13679 7.24034 7.2 7.39947 7.2C7.5586 7.2 7.71121 7.13679 7.82374 7.02426C7.93626 6.91174 7.99947 6.75913 7.99947 6.6V0.6C7.99947 0.44087 7.93626 0.288258 7.82374 0.175736C7.71121 0.063214 7.5586 0 7.39947 0H1.39947C1.24034 0 1.08773 0.063214 0.975208 0.175736C0.862686 0.288258 0.799472 0.44087 0.799472 0.6C0.799472 0.75913 0.862686 0.911742 0.975208 1.02426C1.08773 1.13679 1.24034 1.2 1.39947 1.2H5.95147L0.175472 6.976C0.0631115 7.0885 0 7.241 0 7.4C0 7.559 0.0631115 7.7115 0.175472 7.824Z' fill='%230B321B'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.has-theme-palette-1-background-color .wp-block-button.is-style-arrow .wp-block-button__link::after {
  background-color: #0B321B;
  background-image: url("data:image/svg+xml;utf8,<svg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M0.175472 7.824C0.287972 7.93636 0.440472 7.99947 0.599472 7.99947C0.758473 7.99947 0.910972 7.93636 1.02347 7.824L6.79947 2.048V6.6C6.79947 6.75913 6.86269 6.91174 6.97521 7.02426C7.08773 7.13679 7.24034 7.2 7.39947 7.2C7.5586 7.2 7.71121 7.13679 7.82374 7.02426C7.93626 6.91174 7.99947 6.75913 7.99947 6.6V0.6C7.99947 0.44087 7.93626 0.288258 7.82374 0.175736C7.71121 0.063214 7.5586 0 7.39947 0H1.39947C1.24034 0 1.08773 0.063214 0.975208 0.175736C0.862686 0.288258 0.799472 0.44087 0.799472 0.6C0.799472 0.75913 0.862686 0.911742 0.975208 1.02426C1.08773 1.13679 1.24034 1.2 1.39947 1.2H5.95147L0.175472 6.976C0.0631115 7.0885 0 7.241 0 7.4C0 7.559 0.0631115 7.7115 0.175472 7.824Z' fill='%23A4EE95'/></svg>");
}


.wp-block-button.is-style-arrow .wp-block-button__link:hover::after {
  background-color: #0B321B;
  background-image: url("data:image/svg+xml;utf8,<svg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M0.175472 7.824C0.287972 7.93636 0.440472 7.99947 0.599472 7.99947C0.758473 7.99947 0.910972 7.93636 1.02347 7.824L6.79947 2.048V6.6C6.79947 6.75913 6.86269 6.91174 6.97521 7.02426C7.08773 7.13679 7.24034 7.2 7.39947 7.2C7.5586 7.2 7.71121 7.13679 7.82374 7.02426C7.93626 6.91174 7.99947 6.75913 7.99947 6.6V0.6C7.99947 0.44087 7.93626 0.288258 7.82374 0.175736C7.71121 0.063214 7.5586 0 7.39947 0H1.39947C1.24034 0 1.08773 0.063214 0.975208 0.175736C0.862686 0.288258 0.799472 0.44087 0.799472 0.6C0.799472 0.75913 0.862686 0.911742 0.975208 1.02426C1.08773 1.13679 1.24034 1.2 1.39947 1.2H5.95147L0.175472 6.976C0.0631115 7.0885 0 7.241 0 7.4C0 7.559 0.0631115 7.7115 0.175472 7.824Z' fill='%23A4EE95'/></svg>");
  transform: translateX(3px);
}

.has-theme-palette-1-background-color .wp-block-button.is-style-arrow .wp-block-button__link:hover::after {
  background-color: #A4EE95;
  background-image: url("data:image/svg+xml;utf8,<svg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M0.175472 7.824C0.287972 7.93636 0.440472 7.99947 0.599472 7.99947C0.758473 7.99947 0.910972 7.93636 1.02347 7.824L6.79947 2.048V6.6C6.79947 6.75913 6.86269 6.91174 6.97521 7.02426C7.08773 7.13679 7.24034 7.2 7.39947 7.2C7.5586 7.2 7.71121 7.13679 7.82374 7.02426C7.93626 6.91174 7.99947 6.75913 7.99947 6.6V0.6C7.99947 0.44087 7.93626 0.288258 7.82374 0.175736C7.71121 0.063214 7.5586 0 7.39947 0H1.39947C1.24034 0 1.08773 0.063214 0.975208 0.175736C0.862686 0.288258 0.799472 0.44087 0.799472 0.6C0.799472 0.75913 0.862686 0.911742 0.975208 1.02426C1.08773 1.13679 1.24034 1.2 1.39947 1.2H5.95147L0.175472 6.976C0.0631115 7.0885 0 7.241 0 7.4C0 7.559 0.0631115 7.7115 0.175472 7.824Z' fill='%230B321B'/></svg>");
}
