/* ==== SCSS Utils ==== */
/* ========== Layout & Grid ========== */
/* ========== Fonts ========== */
/* ========== Elderplan Color Palette ========== */
/* Based on Figma designs - 2026-05-18 */
/* ========== Semantic Color Aliases ========== */
/* ========== Spacing ========== */
/* ========== Borders ========== */
/* ========== Z-Index ========== */
/* ========== SVGS ========== */
/* ==== SCSS Utils ==== */
/* ========== Font Weights ========== */
/* ========== Font Sizes ========== */
/* ==== SCSS Utils ==== */
/* ========== Breakpoints for Mixins ========== */
/* ======= Media Queries ======= */
/* Mobile */
/* Tablet */
/* Desktop */
/* Desktop XL */
/* Desktop XXL */
/* Custom media queries */
/* ==== SCSS Utils ==== */
/* ==== SCSS Utils ==== */
/* ======= Media ======= */
/* ======= SVG ======= */
/* ======= Typography ======= */
/* ======= Storybook Goodies ======= */
/* ======= Form Spacing ======= */
/* ======= Input Styles ======= */
/* ==== SCSS Utils ==== */
/* ======= Buttons ======= */
/* Base button styles */
/* Primary button styles */
/* Secondary button styles */
/* Blue button styles */
/* Green button styles */
/* Link button styles */
/* Button Icon styles */
/* Button Icon styles */
/* ==== SCSS Utils ==== */
/* ======= Layout ======= */
/* ======= FLEXBOX MIXINS ======= */
/* ======= GRID MIXINS ======= */
/* ==== SCSS Utils ==== */
/* MJ 7.17.24: Only call utilites like variable definitions and mixins.
* ! Do not add any class or ID selects, or it will render output into EVERY .css file.
* Add styles to global.scss instead to add styles globally.
*/
.coverage-overview {
  background-color: #ffffff;
}

.coverage-overview__inner {
  display: grid;
  gap: 32px;
}
@media (min-width: 992px) {
  .coverage-overview__inner {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 35%);
    align-items: start;
    gap: 64px;
  }
}

.coverage-overview__copy {
  color: #444444;
  font-size: 1.25rem;
  line-height: 1.45;
}
.coverage-overview__copy p {
  margin-bottom: 24px;
}
.coverage-overview__copy a {
  color: #2E8500;
  font-weight: 700;
  text-decoration: underline;
}

.coverage-overview__document-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.coverage-overview__document-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 8rem;
  padding: 24px;
  color: #000000;
  background-color: #D4F69C;
  text-decoration: none;
}
.coverage-overview__document-link:hover, .coverage-overview__document-link:focus-visible {
  color: #000000;
  background-color: #AAE547;
  text-decoration: none;
}

.coverage-overview__document-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  flex: 0 0 auto;
}
.coverage-overview__document-icon svg {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
}

.coverage-overview__document-title {
  color: #000000;
  font-size: 1.53125rem;
  line-height: 1.25;
}
/*# sourceMappingURL=coverage-overview.css.map */