/**
 * ReachOut Three Column Navigation Styles
 */

.reachout-three-col-nav-wrapper {
  width: 100%;
}

.reachout-three-col-nav {
  display: flex;
  gap: 40px;
  width: 100%;
}

/* Columns */
.reachout-three-col-nav__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.reachout-three-col-nav__column--1,
.reachout-three-col-nav__column--2 {
  /* Menu columns */
}

.reachout-three-col-nav__column--3 {
  /* Nestable column for other elements */
}

/* Responsive */
@media (max-width: 768px) {
  .reachout-three-col-nav {
    flex-direction: column;
    gap: 32px;
  }

  .reachout-three-col-nav__column {
    width: 100%;
  }
}

/* Sections */
.reachout-three-col-nav__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Section Title */
.reachout-three-col-nav__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.reachout-three-col-nav__title-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.reachout-three-col-nav__title-link:hover,
.reachout-three-col-nav__title-link:focus {
  opacity: 0.8;
  text-decoration: none;
}

/* Menu List */
.reachout-three-col-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reachout-three-col-nav__item {
  margin: 0;
}

/* Menu Links */
.reachout-three-col-nav__link {
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.reachout-three-col-nav__link:hover,
.reachout-three-col-nav__link:focus {
  transform: translateX(4px);
}
