/* ==== 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.
*/
.media-link-stack__intro {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.media-link-stack__description {
  font-size: 1.53125rem;
}

@media (min-width: 992px) {
  .media-link-stack__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}

@media (min-width: 992px) {
  .media-link-stack__media {
    flex: 1 1 80%;
  }
}

.media-link-stack__image {
  display: block;
  width: calc(100% + 48px);
  max-width: none;
  margin-left: -24px;
  margin-right: -24px;
}
@media (min-width: 992px) {
  .media-link-stack__image {
    width: 100%;
    max-width: unset;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .media-link-stack__links {
    flex: 1 1 30%;
    margin-left: -180px;
  }
}

.media-link-stack__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 8px;
  margin-top: -48px;
}
@media (min-width: 992px) {
  .media-link-stack__list {
    margin-top: 0;
  }
}

.media-link-stack__item {
  display: block;
  position: relative;
}

.media-link-stack__link {
  background-color: #D4F69C;
  line-height: 1.25;
  display: block;
  min-height: 100%;
  padding: 24px 24px 40px;
}
.media-link-stack__link:hover {
  text-decoration: none;
  background-color: rgb(218.0916666667, 247.275, 170.025);
}
.media-link-stack__link:hover .media-link-stack__link-icon {
  background-color: rgb(163.8071428571, 227.1057142857, 57.5942857143);
}
@media (min-width: 992px) {
  .media-link-stack__link {
    padding: 40px 40px 48px;
  }
}

.media-link-stack__link-text {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 400;
}

.media-link-stack__link-icon {
  display: block;
  background-color: #AAE547;
  color: #000000;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 40px;
  aspect-ratio: 1.05/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*# sourceMappingURL=media-link-stack.css.map */