@charset "UTF-8";
:root {
  --wp--preset--color---primary: $primary;
  --wp--preset--color---secondary: $secondary;
  --wp--preset--color---white: $white;
  --wp--preset--color---black: $black;
  --wp--preset--color---light-grey: $light_grey;
  --font-default: "Inter", sans-serif;
  --font-primary: "Noto Sans", sans-serif;
  --font-size-default: 16px;
  --font-weight-default: 400;
  --line-height-default: 1.633;
}

body {
  --wp--preset--font-size--medium: 18px;
}

/**  end vars */
.wp-block-acf-sectionnav-card {
  position: relative;
  width: 100%;
  border: 1px solid #8F0831;
  /* your comp has a thin border */
  overflow: hidden;
  background: transparent;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-grow: 1;
  align-items: stretch;
  min-height: 100%;
}
.wp-block-acf-sectionnav-card a {
  display: block;
  height: 100%;
  text-decoration: none;
  border-bottom: none;
  color: inherit;
}
.wp-block-acf-sectionnav-card .app__block-inner {
  width: 100%;
}
.wp-block-acf-sectionnav-card .app__block-content {
  width: 100%;
}
.wp-block-acf-sectionnav-card .card-bkgd {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
}
.wp-block-acf-sectionnav-card {
  /* Image (top) */
}
.wp-block-acf-sectionnav-card img.card-image,
.wp-block-acf-sectionnav-card .card-bkgd > img {
  width: 100%;
  height: auto;
  display: block;
}
.wp-block-acf-sectionnav-card {
  /* Body (bottom) */
}
.wp-block-acf-sectionnav-card .card-body {
  padding: 28px 32px 32px;
  background: transparent;
  /* let the page background show through */
}
.wp-block-acf-sectionnav-card .kicker {
  margin: 0 0 10px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #001E27;
  /* kicker in your comp is dark teal */
}
.wp-block-acf-sectionnav-card h3 {
  margin: 0 0 12px 0;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #003D51;
  /* big headline dark teal */
}
.wp-block-acf-sectionnav-card {
  /* Description (supports paragraphs + UL checkmarks) */
}
.wp-block-acf-sectionnav-card .description,
.wp-block-acf-sectionnav-card .card-body > p,
.wp-block-acf-sectionnav-card .card-body > div {
  color: #003D51;
}
.wp-block-acf-sectionnav-card .card-body p {
  margin: 0 0 14px 0;
  color: #003D51;
}
.wp-block-acf-sectionnav-card .card-body ul {
  list-style: none;
  margin: 18px 0 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.wp-block-acf-sectionnav-card .card-body ul li {
  position: relative;
  padding-left: 26px;
  margin: 0;
  color: #003D51;
}
.wp-block-acf-sectionnav-card .card-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: #EC0044;
  /* red checkmarks */
}
.wp-block-acf-sectionnav-card {
  /* Location pill group */
}
.wp-block-acf-sectionnav-card .locations-pill {
  margin-top: 22px;
  display: inline-flex;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
}
.wp-block-acf-sectionnav-card .locations {
  display: flex;
  flex-direction: row;
  justify-align: flex-start;
}
.wp-block-acf-sectionnav-card .locations .locations-label {
  background: #EC0044;
  /* red */
  color: #ffffff;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wp-block-acf-sectionnav-card .locations .locations-label::before {
  padding: 6px;
  background-size: cover;
  content: " ";
  background-image: url(../../../assets/images/icon-compass.svg);
  background-repeat: no-repeat;
}
.wp-block-acf-sectionnav-card .locations .locations-value {
  display: flex;
  flex-direction: row;
  justify-align: flex-start;
  gap: 8px;
  background: #ffffff;
  color: #001E27;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.wp-block-acf-sectionnav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
@media (max-width: 768px) {
  .wp-block-acf-sectionnav-card .card-body {
    padding: 20px;
  }
  .wp-block-acf-sectionnav-card h3 {
    font-size: 30px;
  }
}
