/* ==== 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.
*/
.overview-media__columns {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 992px) {
  .overview-media__columns {
    flex-direction: row;
  }
}

.overview-primary-media,
.overview-secondary-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 992px) {
  .overview-primary-media {
    flex: 1 0 60%;
  }
}

@media (min-width: 992px) {
  .overview-secondary-media {
    flex: 0 1 auto;
  }
}

.overview-primary-media__image-link,
.overview-secondary-media__image-link {
  display: block;
}

.overview-primary-media__media,
.overview-secondary-media__media {
  order: 1;
}

.overview-primary-media__title,
.overview-secondary-media__title {
  order: 2;
}

.overview-primary-media__title-link,
.overview-secondary-media__title-link {
  text-decoration: none;
}
.overview-primary-media__title-link:hover, .overview-primary-media__title-link:focus-visible,
.overview-secondary-media__title-link:hover,
.overview-secondary-media__title-link:focus-visible {
  text-decoration: underline;
}

.overview-primary-media__description,
.overview-secondary-media__description {
  order: 3;
  font-size: 22px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .overview-primary-media__description,
  .overview-secondary-media__description {
    font-size: 1.53125rem;
  }
}

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

.overview-primary-media__video,
.overview-secondary-media__video {
  display: block;
  aspect-ratio: 16/9;
  border: 0;
}

.news-and-events {
  background-color: rgba(237, 248, 233, 0.5019607843);
  padding: 40px 0;
}

.news-and-events__columns {
  border: 3px solid #eee;
  background-color: #ffffff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 8px 0 0;
}
@media (min-width: 992px) {
  .news-and-events__columns {
    margin: 0 24px;
    flex-direction: row;
  }
}

.news-and-events__column {
  flex: 1 1 0;
}

.news-and-events__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-and-events__link {
  color: #2E8500;
  text-decoration: underline;
  font-size: 1.53125rem;
  text-decoration-thickness: 0.05em;
  text-underline-offset: 0.2em;
}

.news-and-events__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.news-and-events__heading::before {
  content: "";
  display: block;
  flex-shrink: 0;
  background-color: #167045;
  -webkit-mask-size: contain;
  mask-size: contain;
}
/*# sourceMappingURL=plan-tab--overview.css.map */