/* ==== 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.
*/
.quick-links {
  border: 1px solid rgba(170, 229, 71, 0.5019607843);
  color: #ffffff;
  padding: 24px;
  border-radius: 0 8px 0 0;
}
@media (min-width: 783px) {
  .quick-links {
    padding: 32px;
  }
}
.quick-links * {
  color: #ffffff;
}
.quick-links a,
.quick-links button {
  color: #ffffff;
}
.quick-links > h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.quick-links ul li a {
  font-size: 18px;
}
.quick-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 1200px) {
  .quick-links__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 16px;
  }
}
.quick-links__item {
  margin: 0;
}
.quick-links__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: underline;
  transition: opacity 0.15s ease;
}
.quick-links__link:hover, .quick-links__link:focus-visible {
  opacity: 0.85;
}
.quick-links__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.quick-links__icon img {
  display: block;
  width: auto;
  height: 1.5em;
  filter: brightness(0) invert(1);
}
.quick-links__external-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.quick-links__external-icon svg {
  display: block;
  width: 0.75em;
  height: 0.75em;
}
/*# sourceMappingURL=quick-links.css.map */