/******* Do not edit this file *******
Code Snippets Manager
Saved: Jan 05 2026 | 17:16:00 */
@charset "UTF-8";
/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
/* --------------------------------------------------------------------------
   Flex Utilities
   -------------------------------------------------------------------------- */
.flex-row {
  display: flex;
  align-items: center;
  gap: var(--space-s);
}
.full-height-children > * {
  height: var(--full);
}
/* --------------------------------------------------------------------------
   Shadow Utilities
   -------------------------------------------------------------------------- */
.main-shadow {
  box-shadow: var(--main-shadow);
}
.noshadow {
  box-shadow: none;
}
/* --------------------------------------------------------------------------
   Background Utilities
   -------------------------------------------------------------------------- */
.nobackground {
  background: transparent;
}
.blend-multiply {
  mix-blend-mode: multiply;
}
/* --------------------------------------------------------------------------
   Visibility Utilities
   -------------------------------------------------------------------------- */
.hide-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
/* Legacy class support */
.hide-accesible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
/* ==========================================================================
   LINKS
   ========================================================================== */
.footer-copy a {
  text-decoration: underline;
  text-underline-offset: var(--text-underline-offset);
}
.header-menu a:hover {
  color: inherit;
}
.byline a {
  border-bottom: 0;
}
.sagecell button.sagecell_evalButton {
  cursor: pointer;
}
:root :where(.wp-block-button.is-style-outline .wp-block-button__link) {
  border-bottom: 2px solid currentcolor;
}
/* ==========================================================================
   CONTENT & CARDS
   ========================================================================== */
.card {
  border: 1px solid var(--wp--preset--color--bordered);
  border-radius: var(--radius-s);
}
.format figure {
  margin-bottom: var(--content-gap);
}
header.content-headline {
  padding-top: var(--space-l);
}
/* Bleed layout */
.content-inner .alignfull.bleed, .content-inner .bleed {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: none;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}
/* ==========================================================================
   CLICKABLE & INTERACTIVE ELEMENTS
   ========================================================================== */
:focus {
  outline: 2px solid var(--accent-color-primary);
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--accent-color-primary);
  outline-offset: 2px;
}
.clickable-parent:not(a), .clickable-parent:not(a) a {
  position: static;
}
.clickable-parent:not(a) > a::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  cursor: pointer;
}
.md-card-linked {
  position: relative;
}
/* Scroll behavior */
[id] {
  scroll-margin-top: calc(var(--header-height) + var(--space-l));
}
/* ==========================================================================
   DETAILS/ACCORDION
   ========================================================================== */
details {
  margin: var(--space-s) 0;
  padding: var(--space-s);
  border: 1px solid var(--wp--preset--color--bordered);
  border-radius: var(--radius-xs);
  transition: all var(--transition-duration) ease-in-out;
}
details:hover {
  border-color: var(--wp--preset--color--text-sec);
  background-color: var(--wp--preset--color--offwhite);
}
summary {
  cursor: pointer;
  font-weight: 600;
  outline: 0;
}
summary:focus, summary:hover {
  font-weight: 900;
}
details details {
  margin-left: var(--space-m);
}
details > :not(summary) {
  margin-top: var(--space-s);
}
details > * {
  overflow: hidden;
  transition: max-height var(--transition-duration) ease;
}
/* ==========================================================================
   PARAGRAPH LIMITER
   ========================================================================== */
.paragraph-limited {
  position: relative;
  max-height: 4.9em;
  overflow: hidden;
  cursor: pointer;
  transition: max-height var(--transition-duration) ease;
}
.paragraph-limited::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: var(--full);
  height: 2.5em;
  background: linear-gradient(transparent, var(--wp--preset--color--white));
  pointer-events: none;
}
.paragraph-limited.expanded {
  max-height: none;
  cursor: pointer;
}
.paragraph-limited.expanded::after {
  display: none;
}
.paragraph-limited-6 {
  max-height: 10em;
}
/* ==========================================================================
   VIDEO EMBEDS
   ========================================================================== */
.perfmatters-lazy-youtube {
  border-radius: var(--border-radius);
  box-shadow: var(--main-shadow);
}
.wp-block-embed.is-type-video iframe {
  width: var(--full);
  height: auto;
  max-width: var(--full);
  margin: auto;
  aspect-ratio: 1.7777777778;
}
/* ==========================================================================
   MISC COMPONENTS
   ========================================================================== */
span.cmd-button {
  padding: var(--space-xs);
  border-radius: var(--radius-xs);
  background: rgba(1, 25, 71, 0.4);
  color: var(--wp--preset--color--white);
  font-size: var(--fs-s);
}
/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes slideDowner {
  from {
    transform: translateY(calc(var(--space-m) * -1));
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.slidedown {
  transform: translateY(calc(var(--space-m) * -1));
  opacity: 0;
  animation: slideDowner 0.5s forwards;
}
/* ==========================================================================
   RESPONSIVE - Desktop (768px+)
   ========================================================================== */
@media (min-width: 768px) {
  .megamenu .sub-menu {
    min-width: max-content;
    max-width: var(--full);
  }
  .no-desktop, .no-laptop, .nopc {
    display: none;
  }
}
/* ==========================================================================
   RESPONSIVE - Large Screens (992px+)
   ========================================================================== */
@media (min-width: 992px) {
  blockquote.wp-block-quote {
    margin-left: calc(var(--space-xl) * -1);
    margin-right: calc(var(--space-xl) * -1);
  }
}
/* ==========================================================================
   RESPONSIVE - Tablet and below (992px)
   ========================================================================== */
@media (max-width: 992px) {
  .notablet {
    display: none !important;
  }
}
/* ==========================================================================
   RESPONSIVE - Small Tablet and below (768px)
   ========================================================================== */
@media (max-width: 768px) {
  .menu .menu-toggle {
    background-color: transparent;
  }
}
/* ==========================================================================
   RESPONSIVE - Mobile (480px and below)
   ========================================================================== */
@media (max-width: 480px) {
  .nomobile {
    display: none !important;
  }
}
.pre-wrapper {
  position: relative;
}
.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s;
}
.copy-btn:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.08);
}
.copy-btn:active {
  background: rgba(0, 0, 0, 0.12);
}
.copy-btn.copied {
  opacity: 1;
  color: #22c55e;
}
.copy-btn.copy-failed {
  opacity: 1;
  color: #ef4444;
}
/* Optional: show on hover only */
.pre-wrapper .copy-btn {
  opacity: 0;
}
.pre-wrapper:hover .copy-btn {
  opacity: 0.5;
}
.pre-wrapper:hover .copy-btn:hover {
  opacity: 1;
}
/* --------------------------------------------------------------------------
   Variable Font Support
   -------------------------------------------------------------------------- */
@supports (font-variation-settings: normal) {
  body {
    font-weight: 450;
  }
  b, strong, .bold {
    font-weight: 650;
  }
}
/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */
.wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.wp-block-table table {
  border-collapse: collapse;
  width: var(--full);
  min-width: 50rem;
  /* ~800px, better for responsive calc */
}
.wp-block-table thead {
  border-bottom: 3px solid var(--color-border);
  background: var(--color-headline);
}
tr > td {
  vertical-align: middle;
}
table td {
  padding: var(--space-xs) var(--space-s);
}
td img {
  padding: 0;
  width: auto;
}
table .button {
  min-width: 9.375rem;
  /* 150px in rem */
  padding: var(--btn-space);
}
table .button-outline {
  border-width: 1px;
  border-style: solid;
}
/* Ratings Table - Star icons after strong text */
.has-ratings table tr strong::after, .is-style-ratings table tr strong::after {
  content: "";
  margin-left: var(--space-xs);
  padding: var(--space-xs);
  font-family: md-icon;
  font-size: 1em;
  color: var(--wp--preset--color--latest-green, #22c55e);
}
/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.no-border, .no-border * {
  border: 0;
  box-shadow: none;
}
.nolabel label {
  display: none;
}
.mdt-wrapper.alignfull {
  max-width: initial;
}
/* --------------------------------------------------------------------------
   Desktop Navigation (768px+)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  /* Arrow indicator on hover */
  .sub-menu {
    right: calc(var(--space-l) * -1);
    width: 16.625rem;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-lg);
  }
  .sub-menu li a {
    padding: var(--space-s);
    font-size: var(--fs-base);
    transition: background-color var(--transition);
  }
  .sub-menu li:first-child {
    border-radius: var(--radius-m) var(--radius-m) 0 0;
  }
  .menu-header .sub-menu .sub-menu {
    left: -16.625rem;
  }
  .menu-header > .menu-item-has-children:hover::after {
    content: "";
    display: block;
    position: absolute;
    bottom: calc(var(--space-s) * -1);
    left: 50%;
    width: var(--space-s);
    height: var(--space-s);
    margin-left: calc(var(--space-s) * -0.75);
    background: var(--color-content-bg);
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
  }
  .menu-header .sub-menu a:hover, .menu-header .sub-menu .menu-toggle:hover {
    background: rgba(255, 215, 0, 0.14);
    /* Gold highlight - intentionally hardcoded for brand */
  }
}
/* --------------------------------------------------------------------------
   Large Screens (992px+)
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .alignfix .block-half, .alignfix .block-half-lr, .alignfix .col {
    padding-left: 0;
    padding-right: 0;
  }
  .md-loop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--content-gap);
  }
  .sub-menu {
    transform: translateY(calc(var(--space-m) * -1));
    opacity: 0;
    animation: slideDown var(--transition-duration) ease forwards;
  }
}
/* --------------------------------------------------------------------------
   Tablet (992px and below)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  header#header {
    box-shadow: none;
  }
  .footer-copy {
    padding-bottom: var(--space-2xl);
  }
  .md-loop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--content-gap);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .hide-mid {
    display: none;
  }
}
/* --------------------------------------------------------------------------
   Small Tablet (480px - 768px)
   -------------------------------------------------------------------------- */
@media (min-width: 480px) and (max-width: 768px) {
  .wp-block-column:not(:only-child) {
    flex-grow: 1;
  }
}
/* --------------------------------------------------------------------------
   Mobile (480px and below)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .wp-block-image .alignleft {
    float: none;
  }
}
.md-popup-close-corner {
  font-size: 44px;
}
.cf-message {
  border: 1px solid transparent;
  margin-bottom: 1rem;
  padding: 0.75rem 1.25rem;
}
.cf-message-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d;
}
.cf-message-warning {
  background-color: #fcf8e3;
  border-color: #faf2cc;
  color: #8a6d3b;
}
.cf-message-error {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}
/* Hidden fields wrap */
.cf-fields-wrap {
  /* Container for form fields */
}
