/* ------------------------------------- */
/* H E R O   C I T I E S   S E C T I O N */
/* ------------------------------------- */
.cig-state-hero-wrapper {
  background: url(../images/state.webp) center 40% / cover no-repeat;
}

/* Global */
.cig-light-hero-wrapper {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 87%);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cig-light-hero-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(3, 26, 54, 0.6);
  z-index: 0;
}
.cig-light-hero-content {
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.cig-light-hero-content h1 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
  margin: 5px 0;
}
.cig-light-hero-content span {
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .cig-light-hero-wrapper {
    height: 220px;
    padding: 0 20px;
  }
  .cig-light-hero-content h1 {
    font-size: 26px;
  }
  .cig-light-hero-content span {
    font-size: 14px;
    font-weight: 400;
  }
}

/* ----------------------------- */
/* --- L I S T   B O D Y     --- */
/* ----------------------------- */
.cig-bg-secondary {
  background: var(--color-blue-light-bg);
  padding: 100px 0 70px;
  margin-top: -50px;
}
ul.cig-primary-list-wrapper {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  margin: 0;
  padding: 0;
}
ul.cig-primary-list-wrapper li {
  list-style: none;
}
ul.cig-primary-list-wrapper li a {
  text-decoration: none;
  line-height: 1.6em;
  font-size: 16px;
  display: flex;
  gap: 6px;
}
ul.cig-primary-list-wrapper li a :hover {
  opacity: 0.7;
}
span.cig-content-head {
  color: var(--color-grey-dark);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 80%;
}
span.cig--count {
  color: var(--olor-blue-light);
}
@media (max-width: 768px) {
  .cig-bg-secondary {
    padding: 100px 0;
  }
  ul.cig-primary-list-wrapper {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}
