/* Site-wide text selection — light orange theme */
::-moz-selection {
  color: #a86524;
  background-color: rgba(229, 125, 32, 0.15);
}

::selection {
  color: #a86524;
  background-color: rgba(229, 125, 32, 0.15);
}

.g-bg-primary ::-moz-selection,
.g-bg-orange ::-moz-selection,
.g-bg-orange-lineargradient ::-moz-selection,
.g-bg-black ::-moz-selection,
.g-bg-darkred ::-moz-selection,
.g-bg-army-green ::-moz-selection {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.25);
}

.g-bg-primary ::selection,
.g-bg-orange ::selection,
.g-bg-orange-lineargradient ::selection,
.g-bg-black ::selection,
.g-bg-darkred ::selection,
.g-bg-army-green ::selection {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.25);
}

:root {
  --site-header-height: 4.5rem;
}

.site-header-bar {
  --site-logo-max-height: 2.4rem;
  --site-logo-max-width: 9rem;
  --site-logo-block-max-width: 100%;
  --site-header-bar-padding-y: clamp(0.5rem, calc(var(--site-logo-max-height) * 0.16), 1.125rem);
  padding-top: var(--site-header-bar-padding-y);
  padding-bottom: var(--site-header-bar-padding-y);
}

.site-header-bar--logo-large {
  --site-logo-max-height: 3.75rem;
  --site-logo-max-width: 10.5rem;
}

.site-header-bar--logo-x-large {
  --site-logo-max-height: 4.5rem;
  --site-logo-max-width: 12rem;
}

.site-header-bar .navbar {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 0;
  align-items: center;
}

.site-header-bar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 0.875rem;
}

.site-header-nav {
  padding-top: 0;
  padding-bottom: 0;
}

.site-header-nav__link {
  color: #111 !important;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding-top: calc(var(--site-header-bar-padding-y) * 0.45);
  padding-bottom: calc(var(--site-header-bar-padding-y) * 0.45);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header-nav__link:hover,
.site-header-nav__link:focus-visible,
.site-header-nav__link.active {
  color: #000 !important;
}

@media (min-width: 768px) {
  .site-header-nav__link {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .site-header-bar {
    --site-logo-max-height: 2.85rem;
    --site-logo-max-width: 10.5rem;
    --site-logo-block-max-width: 20rem;
    --site-header-bar-padding-y: clamp(0.625rem, calc(var(--site-logo-max-height) * 0.17), 1.125rem);
  }

  .site-header-bar--logo-large {
    --site-logo-max-height: 4.5rem;
    --site-logo-max-width: 15rem;
    --site-logo-block-max-width: 26rem;
  }

  .site-header-bar--logo-x-large {
    --site-logo-max-height: 5.25rem;
    --site-logo-max-width: 17.5rem;
    --site-logo-block-max-width: 32rem;
  }

  .site-header-bar:has(.site-logo--has-subtitle) {
    --site-header-bar-padding-y: clamp(
      0.75rem,
      calc(var(--site-logo-max-height) * 0.19),
      1.25rem
    );
  }

  .site-header-nav__link {
    font-size: 1.0625rem;
  }

  .site-header-bar--logo-large .site-header-nav__link,
  .site-header-bar--logo-x-large .site-header-nav__link {
    font-size: 1.125rem;
  }
}
.site-header-glass {
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.js-header-change-moment .site-header-glass {
  background: rgba(255, 255, 255, 0.96);
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header-glass {
    background: #fff;
  }
}

.site-header-solid {
  background-color: #fff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.js-header-change-moment.g-bg-white--shift.site-header-solid {
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}

.u-header {
  border-bottom: none;
}

#js-header.u-header,
#js-header.u-header--sticky-top {
  position: sticky;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 501;
}

#js-header.js-header-change-moment {
  box-shadow:
    0 1px 0 rgba(17, 24, 39, 0.08),
    0 8px 24px rgba(17, 24, 39, 0.08);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  text-decoration: none;
}

.site-logo--beside {
  flex-direction: row;
}

.site-logo--below {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
}

.site-logo--image-only {
  flex-direction: row;
}

.site-logo__media {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

.site-logo__image {
  display: block;
  width: auto;
  height: auto;
}

.site-header-bar .site-logo {
  max-width: var(--site-logo-block-max-width);
}

.site-header-bar .site-logo__image {
  max-height: var(--site-logo-max-height);
  max-width: var(--site-logo-max-width);
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  min-width: 0;
  max-width: 100%;
}

.site-logo__title {
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  line-height: 1.22;
  letter-spacing: 0.018em;
  font-variant-ligatures: common-ligatures;
  font-feature-settings: "liga" 1, "kern" 1;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-logo__subtitle {
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-logo--has-subtitle.site-logo--beside {
  align-items: center;
  gap: 0.875rem;
}

.site-logo--has-subtitle .site-logo__text {
  gap: 0.0625rem;
}

.site-logo__text.site-logo__title--size-small .site-logo__title {
  letter-spacing: 0.012em;
  line-height: 1.28;
}

.site-logo__text.site-logo__title--size-large .site-logo__title {
  letter-spacing: 0.024em;
  line-height: 1.18;
}

.site-logo__text.site-logo__title--size-x-large .site-logo__title {
  letter-spacing: 0.03em;
  line-height: 1.14;
}

.site-header-bar .header-cta {
  min-height: max(2.45rem, calc(var(--site-logo-max-height) * 0.55));
  padding: calc(var(--site-header-bar-padding-y) * 0.85) 1.35rem;
  font-size: 1rem;
}

.header-cta-item {
  margin-left: 1.5rem;
}

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 2.45rem;
  padding: 0.45rem 1.35rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #e57d20 !important;
  background: transparent;
  border: 2px solid #e57d20;
  border-radius: 999px;
  box-shadow: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1),
    gap 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
  white-space: nowrap;
  text-decoration: none;
}

.header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(229, 125, 32, 0);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
}

.header-cta:hover,
.header-cta:focus {
  color: #fff !important;
  background: #e57d20;
  border-color: #e57d20;
  box-shadow: 0 6px 18px rgba(229, 125, 32, 0.28);
  transform: translateY(-1px);
  gap: 0.75rem;
  text-decoration: none;
}

.header-cta:hover::after,
.header-cta:focus::after {
  box-shadow: 0 0 0 3px rgba(229, 125, 32, 0.14);
}

.header-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(229, 125, 32, 0.2);
  border-color: #cf7119;
  background: #cf7119;
  color: #fff !important;
}

.header-cta:focus-visible {
  outline: 2px solid #e57d20;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(229, 125, 32, 0.18);
}

.header-cta__label {
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.header-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.header-cta:hover .header-cta__label,
.header-cta:focus .header-cta__label {
  transform: translateX(-2px);
}

.header-cta:hover .header-cta__icon,
.header-cta:focus .header-cta__icon {
  transform: translateX(5px);
}

@media (min-width: 992px) {
  .site-header-bar .header-cta {
    padding: calc(var(--site-header-bar-padding-y) * 0.9) 1.5rem;
    font-size: 1.0625rem;
  }

  .site-header-bar--logo-large .header-cta,
  .site-header-bar--logo-x-large .header-cta {
    font-size: 1.125rem;
  }

  .header-cta__icon {
    font-size: 1.0625rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .header-cta__label,
  .header-cta__icon,
  .header-cta::after {
    transition: none;
  }

  .header-cta:hover,
  .header-cta:focus,
  .header-cta:active {
    transform: none;
    gap: 0.625rem;
  }

  .header-cta:hover::after,
  .header-cta:focus::after {
    box-shadow: none;
  }

  .header-cta:hover .header-cta__label,
  .header-cta:focus .header-cta__label,
  .header-cta:hover .header-cta__icon,
  .header-cta:focus .header-cta__icon {
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .header-cta-item {
    width: 100%;
    margin-left: 0;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .header-cta {
    width: 100%;
    min-height: 3rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1.0625rem;
  }
}

@media (max-width: 414px) {
  .site-footer__bottom {
    text-align: center;
  }
}

.site-footer {
  --list-block-accent: #e57d20;
  --list-block-accent-hover: #cf7119;
  --list-block-accent-border: rgba(229, 125, 32, 0.42);
  --list-block-accent-soft: var(--list-block-section-bg, rgba(229, 125, 32, 0.08));
  --site-footer-text: #000;
  --site-footer-text-weight: 500;
  background-color: var(--list-block-section-bg) !important;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  color: var(--site-footer-text);
  font-weight: var(--site-footer-text-weight);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

.site-footer__column {
  min-width: 0;
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--list-block-accent);
}

.site-footer__link-list,
.site-footer__contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__link-item + .site-footer__link-item,
.site-footer__contact-item + .site-footer__contact-item {
  margin-top: 0.5rem;
}

.site-footer__link {
  color: var(--site-footer-text);
  font-weight: var(--site-footer-text-weight);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus {
  color: var(--list-block-accent-hover);
  text-decoration: underline;
}

.site-footer__link:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 2px;
}

.site-footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  font-style: normal;
  color: var(--site-footer-text);
  font-weight: var(--site-footer-text-weight);
  line-height: 1.6;
}

.site-footer__location-name {
  margin: 0 0 0.5rem;
  color: var(--site-footer-text);
  font-weight: 600;
}

.site-footer__location-link-wrap {
  margin: 0 0 0.75rem;
}

.site-footer__map-embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 20rem;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  background: #fff;
}

.site-footer__map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer__contact-note {
  margin: 0.75rem 0 0;
  color: var(--site-footer-text);
  font-size: 0.9375rem;
  font-weight: var(--site-footer-text-weight);
  line-height: 1.5;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.site-footer__copyright {
  margin: 0;
  color: var(--site-footer-text);
  font-size: 0.9375rem;
  font-weight: var(--site-footer-text-weight);
}

.site-footer__social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__social-item {
  margin: 0;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--list-block-accent);
  background: #fff;
  border: 1px solid var(--list-block-accent-border);
  border-radius: 50%;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus {
  color: var(--list-block-accent-hover);
  background: var(--list-block-accent-soft);
  border-color: rgba(229, 125, 32, 0.62);
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
}

.site-footer__social-link:focus {
  outline: none;
}

.site-footer__social-link:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 2px;
}

.site-footer__social-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(229, 125, 32, 0.1);
}

.site-footer__social-icon {
  display: block;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__social-link {
    transition: none;
  }

  .site-footer__social-link:hover,
  .site-footer__social-link:focus {
    transform: none;
  }
}

@media only screen and (min-width: 720px) {
  .e-w-lg {
    min-height: 26rem;
  }
}

.overlay-effect {
  background: rgba(0, 0, 0, 0.5);

  z-index: 2;
}

/* Add here all your css styles (customizations) */
.whatsapp-widget {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #21c87a;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 0 15px #21c87a;
  z-index: 100;
}

a.whatsapp-widget:hover,
a.whatsapp-widget:focus,
a.whatsapp-widget:active {
  color: #fff;
  box-shadow: 0 0 15px #fff;
}

.whatsapp-widget i {
  line-height: 60px;
}

.fsc-logo {
  max-width: 100%;
}

.g-bg-orange-lineargradient--hover {
  background-repeat: repeat-x;
  background-image: -webkit-linear-gradient(225deg, #be1715, #EF780C);
  background-image: -o-linear-gradient(225deg, #be1715, #EF780C);
  background-image: linear-gradient(225deg, #be1715, #EF780C);
}

.text-gold {
  color: #bcac76 !important;
}

.g-brd-gold-bg {
  -webkit-border-image: linear-gradient(
    160deg,
    rgb(221 192 93 / 55%) 0%,
    rgb(188 172 118 / 60%) 100%
  );
  -o-border-image: linear-gradient(
    160deg,
    rgb(221 192 93 / 55%) 0%,
    rgb(188 172 118 / 60%) 100%
  );
  border-image: linear-gradient(
    160deg,
    rgb(221 192 93 / 55%) 0%,
    rgb(188 172 118 / 60%) 100%
  );
  border-image-slice: 1;
}

.bg-light-sea-green {
  background-color: #f3fdfa !important;
}

.bg-light-sea-blue {
  background-color: #f3fdfa !important;
}
.bg-light-sea-blue-v2 {
  background-color: #f9fdf9 !important;
}

.bg-light-yellow {
  background-color: #fcfaeb !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-light-red {
  background-color: #fff !important;
}

/* Classic CTA block */
.classic-cta-block--text-white .classic-cta-block__title,
.classic-cta-block--text-white .classic-cta-block__text {
  color: #fff;
}

.classic-cta-block--text-white .classic-cta-block__btn {
  color: #fff;
  border-color: #fff !important;
}

.classic-cta-block--text-white .classic-cta-block__btn:hover,
.classic-cta-block--text-white .classic-cta-block__btn:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.classic-cta-block--text-black .classic-cta-block__title,
.classic-cta-block--text-black .classic-cta-block__text {
  color: rgba(17, 17, 17, 0.9);
}

.classic-cta-block--text-black .classic-cta-block__btn {
  color: rgba(17, 17, 17, 0.9);
  border-color: rgba(17, 17, 17, 0.85) !important;
}

.classic-cta-block--text-black .classic-cta-block__btn:hover,
.classic-cta-block--text-black .classic-cta-block__btn:focus {
  color: rgba(17, 17, 17, 0.9);
  background-color: rgba(17, 17, 17, 0.08);
}

/* Bright solid backgrounds */
.bg-classic-sky-cyan {
  background-color: #7febfc !important;
}

.bg-classic-bright-blue {
  background-color: #4fc3f7 !important;
}

.bg-classic-sunny-yellow {
  background-color: #fff176 !important;
}

.bg-classic-coral {
  background-color: #ff8a65 !important;
}

.bg-classic-orange {
  background-color: #ffb300 !important;
}

.bg-classic-christmas-red {
  background-color: #e53935 !important;
}

.bg-classic-christmas-green {
  background-color: #43a047 !important;
}

.bg-classic-purple {
  background-color: #8e24aa !important;
}

.bg-classic-pink {
  background-color: #ec407a !important;
}

.bg-classic-mint {
  background-color: #69f0ae !important;
}

/* Custom bright gradients */
.bg-classic-gradient-cyan-mint {
  background-image: linear-gradient(135deg, #7febfc 0%, #69f0ae 100%);
}

.bg-classic-gradient-christmas {
  background-image: linear-gradient(135deg, #e53935 0%, #43a047 100%);
}

.bg-classic-gradient-sunset {
  background-image: linear-gradient(135deg, #ffb300 0%, #ec407a 100%);
}

.bg-classic-gradient-sky-blue {
  background-image: radial-gradient(circle farthest-side at 50% 30%, #7febfc, #4fc3f7);
}

.bg-classic-gradient-sunshine {
  background-image: linear-gradient(135deg, #fff176 0%, #ffb300 100%);
}

.bg-classic-gradient-purple-pink {
  background-image: linear-gradient(135deg, #8e24aa 0%, #ec407a 100%);
}

/* Modern blockquote — bright solids */
.bg-modern-bq-scarlet {
  background-color: #e50914 !important;
}

.bg-modern-bq-royal-blue {
  background-color: #4285f4 !important;
}

.bg-modern-bq-tomato-red {
  background-color: #ea4335 !important;
}

.bg-modern-bq-golden-yellow {
  background-color: #fbbc04 !important;
}

.bg-modern-bq-forest-green {
  background-color: #34a853 !important;
}

.bg-modern-bq-indigo {
  background-color: #3f51b5 !important;
}

.bg-modern-bq-teal {
  background-color: #009688 !important;
}

.bg-modern-bq-slate {
  background-color: #546e7a !important;
}

/* Modern blockquote — gradients */
.bg-modern-bq-gradient-spectrum {
  background-image: linear-gradient(
    135deg,
    #4285f4 0%,
    #4285f4 24%,
    #ea4335 24%,
    #ea4335 49%,
    #fbbc04 49%,
    #fbbc04 74%,
    #34a853 74%,
    #34a853 100%
  );
}

.bg-modern-bq-gradient-scarlet-dark {
  background-image: linear-gradient(160deg, #e50914 0%, #141414 100%);
}

.bg-modern-bq-gradient-ocean {
  background-image: linear-gradient(135deg, #4285f4 0%, #009688 100%);
}

.bg-modern-bq-gradient-aurora {
  background-image: linear-gradient(135deg, #8e24aa 0%, #7febfc 100%);
}

.bg-modern-bq-gradient-fire {
  background-image: linear-gradient(135deg, #ffb300 0%, #e50914 100%);
}

/* Modern blockquote — card outer border accents */
.modern-blockquote__container {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.modern-blockquote__card-outer {
  border-color: rgba(255, 255, 255, 0.35);
}

.modern-blockquote__card-outer.g-bg-orange-lineargradient,
.modern-blockquote__card-outer.g-bg-orange-lineargradient-v2 {
  border-color: #e65100;
}

.modern-blockquote__card-outer.bg-classic-sunny-yellow,
.modern-blockquote__card-outer.bg-modern-bq-golden-yellow,
.modern-blockquote__card-outer.g-bg-yellow-lineargradient,
.modern-blockquote__card-outer.bg-classic-gradient-sunshine {
  border-color: rgba(0, 0, 0, 0.2);
}

.modern-blockquote__card-outer.bg-modern-bq-scarlet,
.modern-blockquote__card-outer.bg-modern-bq-gradient-scarlet-dark,
.modern-blockquote__card-outer.bg-modern-bq-gradient-fire {
  border-color: #9b0710;
}

.modern-blockquote__card-outer.bg-modern-bq-royal-blue {
  border-color: #1967d2;
}

.modern-blockquote__card-outer.bg-modern-bq-tomato-red {
  border-color: #c5221f;
}

.modern-blockquote__card-outer.bg-modern-bq-forest-green {
  border-color: #137333;
}

.modern-blockquote__card-outer.bg-modern-bq-indigo {
  border-color: #303f9f;
}

.modern-blockquote__card-outer.bg-modern-bq-teal {
  border-color: #00695c;
}

/* Modern blockquote — text colors */
.modern-blockquote__title {
  color: var(--modern-bq-title, #111);
}

.modern-blockquote__subtitle {
  color: var(--modern-bq-title-muted, rgba(17, 17, 17, 0.88));
}

.modern-blockquote__quote-mark,
.modern-blockquote__author {
  color: var(--modern-bq-content, #fff);
}

.modern-blockquote__quote {
  color: var(--modern-bq-content-muted, rgba(255, 255, 255, 0.92));
}

.modern-blockquote__author-line {
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  margin-right: 0.5rem;
  vertical-align: middle;
  background: var(--modern-bq-content-line, rgba(255, 255, 255, 0.8));
}

.modern-blockquote__quote-mark {
  display: block;
  font-size: 2.5rem;
  line-height: 0.7;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.modern-blockquote--title-white {
  --modern-bq-title: #fff;
  --modern-bq-title-muted: rgba(255, 255, 255, 0.9);
}

.modern-blockquote--title-black {
  --modern-bq-title: #111;
  --modern-bq-title-muted: rgba(17, 17, 17, 0.88);
}

.modern-blockquote--title-orange {
  --modern-bq-title: #e57d20;
  --modern-bq-title-muted: rgba(229, 125, 32, 0.92);
}

.modern-blockquote--title-deep-orange {
  --modern-bq-title: #e65100;
  --modern-bq-title-muted: rgba(230, 81, 0, 0.92);
}

.modern-blockquote--title-navy {
  --modern-bq-title: #05023b;
  --modern-bq-title-muted: rgba(5, 2, 59, 0.88);
}

.modern-blockquote--title-scarlet {
  --modern-bq-title: #e50914;
  --modern-bq-title-muted: rgba(229, 9, 20, 0.92);
}

.modern-blockquote--title-royal-blue {
  --modern-bq-title: #4285f4;
  --modern-bq-title-muted: rgba(66, 133, 244, 0.92);
}

.modern-blockquote--title-tomato-red {
  --modern-bq-title: #ea4335;
  --modern-bq-title-muted: rgba(234, 67, 53, 0.92);
}

.modern-blockquote--title-forest-green {
  --modern-bq-title: #34a853;
  --modern-bq-title-muted: rgba(52, 168, 83, 0.92);
}

.modern-blockquote--title-golden-yellow {
  --modern-bq-title: #fbbc04;
  --modern-bq-title-muted: rgba(251, 188, 4, 0.92);
}

.modern-blockquote--title-purple {
  --modern-bq-title: #8e24aa;
  --modern-bq-title-muted: rgba(142, 36, 170, 0.92);
}

.modern-blockquote--title-pink {
  --modern-bq-title: #ec407a;
  --modern-bq-title-muted: rgba(236, 64, 122, 0.92);
}

.modern-blockquote--title-coral {
  --modern-bq-title: #ff8a65;
  --modern-bq-title-muted: rgba(255, 138, 101, 0.92);
}

.modern-blockquote--title-teal {
  --modern-bq-title: #009688;
  --modern-bq-title-muted: rgba(0, 150, 136, 0.92);
}

.modern-blockquote--title-indigo {
  --modern-bq-title: #3f51b5;
  --modern-bq-title-muted: rgba(63, 81, 181, 0.92);
}

.modern-blockquote--title-mint {
  --modern-bq-title: #69f0ae;
  --modern-bq-title-muted: rgba(105, 240, 174, 0.92);
}

.modern-blockquote--title-sky-cyan {
  --modern-bq-title: #7febfc;
  --modern-bq-title-muted: rgba(127, 235, 252, 0.92);
}

.modern-blockquote--title-slate {
  --modern-bq-title: #546e7a;
  --modern-bq-title-muted: rgba(84, 110, 122, 0.92);
}

.modern-blockquote--content-white {
  --modern-bq-content: #fff;
  --modern-bq-content-muted: rgba(255, 255, 255, 0.92);
  --modern-bq-content-line: rgba(255, 255, 255, 0.8);
}

.modern-blockquote--content-black {
  --modern-bq-content: #111;
  --modern-bq-content-muted: rgba(17, 17, 17, 0.88);
  --modern-bq-content-line: rgba(17, 17, 17, 0.65);
}

.modern-blockquote--content-orange {
  --modern-bq-content: #e57d20;
  --modern-bq-content-muted: rgba(229, 125, 32, 0.92);
  --modern-bq-content-line: rgba(229, 125, 32, 0.75);
}

.modern-blockquote--content-deep-orange {
  --modern-bq-content: #e65100;
  --modern-bq-content-muted: rgba(230, 81, 0, 0.92);
  --modern-bq-content-line: rgba(230, 81, 0, 0.75);
}

.modern-blockquote--content-navy {
  --modern-bq-content: #05023b;
  --modern-bq-content-muted: rgba(5, 2, 59, 0.88);
  --modern-bq-content-line: rgba(5, 2, 59, 0.65);
}

.modern-blockquote--content-scarlet {
  --modern-bq-content: #e50914;
  --modern-bq-content-muted: rgba(229, 9, 20, 0.92);
  --modern-bq-content-line: rgba(229, 9, 20, 0.75);
}

.modern-blockquote--content-royal-blue {
  --modern-bq-content: #4285f4;
  --modern-bq-content-muted: rgba(66, 133, 244, 0.92);
  --modern-bq-content-line: rgba(66, 133, 244, 0.75);
}

.modern-blockquote--content-tomato-red {
  --modern-bq-content: #ea4335;
  --modern-bq-content-muted: rgba(234, 67, 53, 0.92);
  --modern-bq-content-line: rgba(234, 67, 53, 0.75);
}

.modern-blockquote--content-forest-green {
  --modern-bq-content: #34a853;
  --modern-bq-content-muted: rgba(52, 168, 83, 0.92);
  --modern-bq-content-line: rgba(52, 168, 83, 0.75);
}

.modern-blockquote--content-golden-yellow {
  --modern-bq-content: #fbbc04;
  --modern-bq-content-muted: rgba(251, 188, 4, 0.92);
  --modern-bq-content-line: rgba(251, 188, 4, 0.75);
}

.modern-blockquote--content-purple {
  --modern-bq-content: #8e24aa;
  --modern-bq-content-muted: rgba(142, 36, 170, 0.92);
  --modern-bq-content-line: rgba(142, 36, 170, 0.75);
}

.modern-blockquote--content-pink {
  --modern-bq-content: #ec407a;
  --modern-bq-content-muted: rgba(236, 64, 122, 0.92);
  --modern-bq-content-line: rgba(236, 64, 122, 0.75);
}

.modern-blockquote--content-coral {
  --modern-bq-content: #ff8a65;
  --modern-bq-content-muted: rgba(255, 138, 101, 0.92);
  --modern-bq-content-line: rgba(255, 138, 101, 0.75);
}

.modern-blockquote--content-teal {
  --modern-bq-content: #009688;
  --modern-bq-content-muted: rgba(0, 150, 136, 0.92);
  --modern-bq-content-line: rgba(0, 150, 136, 0.75);
}

.modern-blockquote--content-indigo {
  --modern-bq-content: #3f51b5;
  --modern-bq-content-muted: rgba(63, 81, 181, 0.92);
  --modern-bq-content-line: rgba(63, 81, 181, 0.75);
}

.modern-blockquote--content-mint {
  --modern-bq-content: #69f0ae;
  --modern-bq-content-muted: rgba(105, 240, 174, 0.92);
  --modern-bq-content-line: rgba(105, 240, 174, 0.75);
}

.modern-blockquote--content-sky-cyan {
  --modern-bq-content: #7febfc;
  --modern-bq-content-muted: rgba(127, 235, 252, 0.92);
  --modern-bq-content-line: rgba(127, 235, 252, 0.75);
}

.modern-blockquote--content-slate {
  --modern-bq-content: #546e7a;
  --modern-bq-content-muted: rgba(84, 110, 122, 0.92);
  --modern-bq-content-line: rgba(84, 110, 122, 0.75);
}

/* Blockquote block */
.blockquote-block__container {
  padding-top: clamp(3.5rem, 7vw, 7.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 7.5rem);
}

.blockquote-block--height-full-screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.blockquote-block--height-full-screen .blockquote-block__container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(3rem, 8vh, 5rem);
  padding-bottom: clamp(3rem, 8vh, 5rem);
}

.blockquote-block--height-full-screen .blockquote-block__container .row {
  width: 100%;
}

/* Blockquote border gradients — same border-image technique as g-brd-cyan-gradient-opacity-v1 */
.g-brd-orange-gradient-opacity-v1,
.bq-border-gradient-orange {
  -webkit-border-image: -webkit-linear-gradient(290deg, rgba(190, 23, 21, 0.7) 0%, rgba(237, 109, 15, 0.75) 100%);
  -o-border-image: -o-linear-gradient(290deg, rgba(190, 23, 21, 0.7) 0%, rgba(237, 109, 15, 0.75) 100%);
  border-image: linear-gradient(160deg, rgba(190, 23, 21, 0.7) 0%, rgba(237, 109, 15, 0.75) 100%);
  border-image-slice: 1;
}

.g-brd-sunset-gradient-opacity-v1,
.bq-border-gradient-sunset {
  -webkit-border-image: -webkit-linear-gradient(290deg, rgba(255, 179, 0, 0.7) 0%, rgba(236, 64, 122, 0.75) 100%);
  -o-border-image: -o-linear-gradient(290deg, rgba(255, 179, 0, 0.7) 0%, rgba(236, 64, 122, 0.75) 100%);
  border-image: linear-gradient(160deg, rgba(255, 179, 0, 0.7) 0%, rgba(236, 64, 122, 0.75) 100%);
  border-image-slice: 1;
}

.g-brd-christmas-gradient-opacity-v1,
.bq-border-gradient-christmas {
  -webkit-border-image: -webkit-linear-gradient(290deg, rgba(229, 57, 53, 0.7) 0%, rgba(67, 160, 71, 0.75) 100%);
  -o-border-image: -o-linear-gradient(290deg, rgba(229, 57, 53, 0.7) 0%, rgba(67, 160, 71, 0.75) 100%);
  border-image: linear-gradient(160deg, rgba(229, 57, 53, 0.7) 0%, rgba(67, 160, 71, 0.75) 100%);
  border-image-slice: 1;
}

.g-brd-purple-pink-gradient-opacity-v1,
.bq-border-gradient-purple-pink {
  -webkit-border-image: -webkit-linear-gradient(290deg, rgba(142, 36, 170, 0.7) 0%, rgba(236, 64, 122, 0.75) 100%);
  -o-border-image: -o-linear-gradient(290deg, rgba(142, 36, 170, 0.7) 0%, rgba(236, 64, 122, 0.75) 100%);
  border-image: linear-gradient(160deg, rgba(142, 36, 170, 0.7) 0%, rgba(236, 64, 122, 0.75) 100%);
  border-image-slice: 1;
}

.g-brd-sunshine-gradient-opacity-v1,
.bq-border-gradient-sunshine {
  -webkit-border-image: -webkit-linear-gradient(290deg, rgba(255, 241, 118, 0.75) 0%, rgba(255, 179, 0, 0.8) 100%);
  -o-border-image: -o-linear-gradient(290deg, rgba(255, 241, 118, 0.75) 0%, rgba(255, 179, 0, 0.8) 100%);
  border-image: linear-gradient(160deg, rgba(255, 241, 118, 0.75) 0%, rgba(255, 179, 0, 0.8) 100%);
  border-image-slice: 1;
}

.g-brd-mint-sky-gradient-opacity-v1,
.bq-border-gradient-mint-sky {
  -webkit-border-image: -webkit-linear-gradient(290deg, rgba(105, 240, 174, 0.7) 0%, rgba(127, 235, 252, 0.75) 100%);
  -o-border-image: -o-linear-gradient(290deg, rgba(105, 240, 174, 0.7) 0%, rgba(127, 235, 252, 0.75) 100%);
  border-image: linear-gradient(160deg, rgba(105, 240, 174, 0.7) 0%, rgba(127, 235, 252, 0.75) 100%);
  border-image-slice: 1;
}

.g-brd-pink-gradient-opacity-v1,
.bq-border-gradient-pink {
  -webkit-border-image: -webkit-linear-gradient(290deg, rgba(182, 0, 59, 0.7) 0%, rgba(237, 18, 97, 0.75) 100%);
  -o-border-image: -o-linear-gradient(290deg, rgba(182, 0, 59, 0.7) 0%, rgba(237, 18, 97, 0.75) 100%);
  border-image: linear-gradient(160deg, rgba(182, 0, 59, 0.7) 0%, rgba(237, 18, 97, 0.75) 100%);
  border-image-slice: 1;
}

.g-brd-rainbow-gradient-opacity-v1,
.bq-border-gradient-rainbow {
  -webkit-border-image: -webkit-linear-gradient(
    290deg,
    rgba(229, 57, 53, 0.7) 0%,
    rgba(255, 179, 0, 0.7) 25%,
    rgba(105, 240, 174, 0.7) 50%,
    rgba(79, 195, 247, 0.75) 100%
  );
  -o-border-image: -o-linear-gradient(
    290deg,
    rgba(229, 57, 53, 0.7) 0%,
    rgba(255, 179, 0, 0.7) 25%,
    rgba(105, 240, 174, 0.7) 50%,
    rgba(79, 195, 247, 0.75) 100%
  );
  border-image: linear-gradient(
    160deg,
    rgba(229, 57, 53, 0.7) 0%,
    rgba(255, 179, 0, 0.7) 25%,
    rgba(105, 240, 174, 0.7) 50%,
    rgba(79, 195, 247, 0.75) 100%
  );
  border-image-slice: 1;
}

.g-brd-red-gradient-opacity-v1,
.bq-border-gradient-red {
  -webkit-border-image: -webkit-linear-gradient(290deg, rgba(215, 4, 23, 0.7) 0%, rgba(159, 4, 27, 0.75) 100%);
  -o-border-image: -o-linear-gradient(290deg, rgba(215, 4, 23, 0.7) 0%, rgba(159, 4, 27, 0.75) 100%);
  border-image: linear-gradient(160deg, rgba(215, 4, 23, 0.7) 0%, rgba(159, 4, 27, 0.75) 100%);
  border-image-slice: 1;
}

.bq-border-gradient-cyan {
  -webkit-border-image: -webkit-linear-gradient(290deg, rgba(0, 0, 153, 0.55) 0%, rgba(0, 190, 214, 0.6) 100%);
  -o-border-image: -o-linear-gradient(290deg, rgba(0, 0, 153, 0.55) 0%, rgba(0, 190, 214, 0.6) 100%);
  border-image: linear-gradient(160deg, rgba(0, 0, 153, 0.55) 0%, rgba(0, 190, 214, 0.6) 100%);
  border-image-slice: 1;
}


.saturate-bg {
  backdrop-filter: saturate(180%) blur(15px);
  /* -webkit-backdrop-filter: saturate(180%) blur(20px); */
}

.g-bg-opacity {
  background-color: rgba(49, 60, 92, 0.5);
}

.g-bg-beige-2 {
  background-color: #bfb2a3;
}

.g-bg-beige-3 {
  background-color: #78716e;
}

.g-color-beige-3 {
  color: #78716e !important;
}

.g-brd-beige--hover:hover,
.g-brd-beige--active.active {
  border-color: #bfb2a3 !important;
}

.g-bg-beige-color {
  color: #78716e !important;
}

.g-brd-beige {
  border-color: #78716e !important;
}

.g-bg-army-green {
  background-color: #152618 !important;
}

.g-bg-black {
  background-color: #0D0D0D !important;
}

.custom-form-toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1050;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.custom-form-toast-container .alert {
  pointer-events: auto;
  margin-bottom: 0;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
}

[x-cloak] {
  display: none !important;
}

.custom-form-success-panel {
  color: #c9782a;
}

.custom-form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(229, 125, 32, 0.08);
  color: #d9924f;
  font-size: 1.5rem;
  font-weight: bold;
}

.custom-form-success-heading {
  color: #c9782a;
}

.custom-form-success-heading:focus {
  outline: none;
}

.custom-form-spinner {
  vertical-align: middle;
}

.custom-form-readonly {
  opacity: 0.85;
  pointer-events: none;
}

.custom-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.stream-block-mt {
  margin-top: 2.5rem !important;
}

.stream-block-mb {
  margin-bottom: 2.5rem !important;
}

@media (min-width: 768px) {
  .stream-block-mt {
    margin-top: 4rem !important;
  }

  .stream-block-mb {
    margin-bottom: 4rem !important;
  }
}

@media (min-width: 992px) {
  .stream-block-mt {
    margin-top: 7.14286rem !important;
  }

  .stream-block-mb {
    margin-bottom: 7.14286rem !important;
  }
}

.parallax-hero {
  overflow: hidden;
}

.parallax-hero--height-normal {
  min-height: 28rem;
}

.parallax-hero--height-normal .parallax-hero__content {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.parallax-hero--height-tall {
  min-height: 40rem;
}

.parallax-hero--height-tall .parallax-hero__content {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.parallax-hero--height-full-screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.parallax-hero--height-full-screen .parallax-hero__content {
  width: 100%;
  padding-top: clamp(3.5rem, 8vh, 7rem);
  padding-bottom: clamp(3.5rem, 8vh, 7rem);
}

@media (min-width: 992px) {
  .parallax-hero--height-normal .parallax-hero__content {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .parallax-hero--height-tall {
    min-height: 44rem;
  }

  .parallax-hero--height-tall .parallax-hero__content {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

.parallax-hero__image {
  top: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.parallax-hero--height-full-screen .parallax-hero__image {
  min-height: 100%;
  height: 150%;
}

.parallax-hero__content {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.parallax-hero__title {
  letter-spacing: 0.06em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.parallax-hero__text {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.parallax-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.parallax-hero__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 12.5rem;
  min-height: 3.5rem;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1),
    gap 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.parallax-hero__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
}

.parallax-hero__btn-label {
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.parallax-hero__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.parallax-hero__btn--outline {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.92);
}

.parallax-hero__btn--outline:hover,
.parallax-hero__btn--outline:focus {
  color: #111;
  background: #fff;
  border-color: #fff;
  transform: translateY(-3px) scale(1.02);
  gap: 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  text-decoration: none;
}

.parallax-hero__btn--outline:hover::after,
.parallax-hero__btn--outline:focus::after {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.parallax-hero__btn--outline:hover .parallax-hero__btn-icon,
.parallax-hero__btn--outline:focus .parallax-hero__btn-icon {
  transform: translateX(3px);
}

.parallax-hero__btn--outline:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.parallax-hero__btn--orange {
  color: #fff;
  background: #f0a86a;
  border: 2px solid #f0a86a;
}

.parallax-hero__btn--orange:hover,
.parallax-hero__btn--orange:focus {
  color: #fff;
  background: #e8974a;
  border-color: #e8974a;
  transform: translateY(-3px) scale(1.02);
  gap: 1rem;
  box-shadow: 0 10px 28px rgba(229, 125, 32, 0.32);
  text-decoration: none;
}

.parallax-hero__btn--orange:hover::after,
.parallax-hero__btn--orange:focus::after {
  box-shadow: 0 0 0 4px rgba(240, 168, 106, 0.35);
}

.parallax-hero__btn--orange:hover .parallax-hero__btn-icon,
.parallax-hero__btn--orange:focus .parallax-hero__btn-icon {
  transform: translateX(3px);
}

.parallax-hero__btn--orange:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.22);
}

.parallax-hero__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.parallax-hero__btn--orange:focus-visible {
  outline-color: #f0a86a;
}

@media (max-width: 575.98px) {
  .custom-form-toast-container {
    left: 1rem;
    right: 1rem;
    top: 1rem;
    max-width: none;
  }
}

.homepage-carousel {
  margin-bottom: 0 !important;
  overflow: hidden;
}

.homepage-carousel .slick-list,
.homepage-carousel .slick-track {
  height: 100%;
}

.homepage-carousel .slick-track .slick-slide {
  height: 100%;
}

.homepage-carousel .js-slide {
  min-height: 100%;
}

.modern-promo-fs {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modern-promo-fs__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.modern-promo-fs__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.modern-promo-fs__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.93);
  pointer-events: none;
}

.modern-promo-fs__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 4vw, 3rem);
}

.modern-promo-fs__content {
  max-width: 56rem;
  margin: 0 auto;
}

.modern-promo-fs__subtitle {
  margin: 0;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.125rem, 2.8vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.45;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.modern-promo-fs__subtitle--bottom {
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.modern-promo-fs__subtitle:not(.modern-promo-fs__subtitle--bottom) {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.modern-promo-fs__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.modern-promo-fs__title-wrap--image-fill {
  display: block;
}

.modern-promo-fs__rule {
  flex: 1 1 0;
  max-width: clamp(3rem, 8vw, 6rem);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95));
}

.modern-promo-fs__rule--right {
  background: linear-gradient(270deg, transparent, rgba(255, 255, 255, 0.95));
}

.modern-promo-fs__title {
  margin: 0;
  color: #fff;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.modern-promo-fs--text-image-fill .modern-promo-fs__image-fill-text {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: var(--modern-promo-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: none;
}

.modern-promo-fs--text-image-fill .modern-promo-fs__title {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-size: clamp(2.25rem, 8vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.modern-promo-fs--text-image-fill .modern-promo-fs__subtitle {
  font-weight: 800;
  font-size: clamp(1.25rem, 3.2vw, 2rem);
  letter-spacing: 0.22em;
}

.modern-promo-fs__image-fill-text::selection {
  color: #a86524;
  -webkit-text-fill-color: #a86524;
  background-color: rgba(229, 125, 32, 0.15);
}

@media (max-width: 575.98px) {
  .modern-promo-fs__title-wrap {
    flex-direction: column;
    gap: 0.75rem;
  }

  .modern-promo-fs__rule {
    width: 3.5rem;
    max-width: none;
    flex: 0 0 auto;
  }

  .modern-promo-fs__rule--left,
  .modern-promo-fs__rule--right {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  }

  .modern-promo-fs__bg {
    background-attachment: scroll;
  }

  .modern-promo-fs--text-image-fill .modern-promo-fs__image-fill-text {
    background-attachment: scroll;
  }
}

.cta-block {
  position: relative;
  overflow: hidden;
  --cta-shape-opacity: 0.45;
  --cta-float-distance: 10px;
  --cta-float-duration: 6s;
  --cta-hover-scale: 1.05;
}

.cta-block--energy-subtle {
  --cta-shape-opacity: 0.45;
  --cta-float-distance: 10px;
  --cta-float-duration: 6s;
  --cta-hover-scale: 1.05;
}

.cta-block--energy-engaging {
  --cta-shape-opacity: 0.62;
  --cta-float-distance: 18px;
  --cta-float-duration: 4.5s;
  --cta-hover-scale: 1.1;
}

.cta-block--energy-colorful {
  --cta-shape-opacity: 0.78;
  --cta-float-distance: 26px;
  --cta-float-duration: 3.5s;
  --cta-hover-scale: 1.15;
}

.cta-block .container {
  position: relative;
  z-index: 1;
}

.cta-block__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  translate: var(--pattern-parallax-x, 0) var(--pattern-parallax-y, 0);
  transition: translate 0.35s ease-out, opacity 0.35s ease;
}

.cta-block__pattern--active .cta-block__shape {
  opacity: calc(var(--cta-shape-opacity) + 0.08);
}

.cta-block__shape {
  position: absolute;
  left: var(--shape-x);
  top: var(--shape-y);
  width: var(--shape-size);
  height: var(--shape-size);
  opacity: var(--cta-shape-opacity);
  translate: var(--parallax-x, 0) var(--parallax-y, 0);
  transition: opacity 0.3s ease, translate 0.3s ease;
}

.cta-block__shape-inner {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--shape-color);
  transform: rotate(var(--shape-rotate, 0deg));
  transition: transform 0.3s ease;
}

.cta-block__shape-inner svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cta-block__shape-inner.cta-block__shape--circle {
  border-radius: 50%;
  background: var(--shape-color);
}

.cta-block__shape-inner.cta-block__shape--confetti {
  background: var(--shape-color);
  border-radius: 2px;
}

.cta-block__shape-inner.cta-block__shape--dot {
  border-radius: 50%;
}

.cta-block:hover .cta-block__shape {
  opacity: calc(var(--cta-shape-opacity) + 0.1);
}

.cta-block:hover .cta-block__shape-inner {
  transform: rotate(var(--shape-rotate, 0deg)) scale(var(--cta-hover-scale));
}

.cta-block:hover .cta-block__shape-inner.cta-block__shape--confetti {
  transform: rotate(var(--shape-rotate, 0deg)) scale(calc(var(--cta-hover-scale) + 0.03));
}

.cta-block--pattern-strawberries:hover .cta-block__shape-inner,
.cta-block--pattern-christmas:hover .cta-block__shape--ornament .cta-block__shape-inner,
.cta-block--pattern-christmas:hover .cta-block__shape--candy .cta-block__shape-inner {
  transform: scale(var(--cta-hover-scale));
}

/* Pattern-specific idle motion (inner layer) */
.cta-block--pattern-stars .cta-block__shape-inner {
  animation: cta-shape-float var(--cta-float-duration) ease-in-out infinite,
    cta-shape-twinkle calc(var(--cta-float-duration) * 1.2) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s), var(--shape-delay, 0s);
}

.cta-block--pattern-bubbles .cta-block__shape-inner {
  animation: cta-shape-rise var(--cta-float-duration) ease-in-out infinite,
    cta-shape-breathe calc(var(--cta-float-duration) * 1.3) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s), var(--shape-delay, 0s);
}

.cta-block--pattern-books {
  --cta-float-distance: 6px;
}

.cta-block--pattern-books .cta-block__shape-inner {
  animation: cta-shape-drift calc(var(--cta-float-duration) * 1.2) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s);
}

.cta-block--pattern-confetti .cta-block__shape-inner {
  animation: cta-shape-fall var(--cta-float-duration) ease-in-out infinite,
    cta-shape-sway calc(var(--cta-float-duration) * 1.1) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s), var(--shape-delay, 0s);
}

.cta-block--pattern-strawberries .cta-block__shape-inner {
  transform: none;
  transform-origin: 50% 0%;
  animation: cta-shape-swing var(--cta-float-duration) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s);
}

.cta-block--pattern-christmas .cta-block__shape--snowflake .cta-block__shape-inner {
  animation: cta-shape-snowflake-drift var(--cta-float-duration) ease-in-out infinite,
    cta-shape-twinkle calc(var(--cta-float-duration) * 1.4) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s), var(--shape-delay, 0s);
}

.cta-block--pattern-christmas .cta-block__shape--ornament .cta-block__shape-inner {
  transform: none;
  transform-origin: 50% 0%;
  animation: cta-shape-swing var(--cta-float-duration) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s);
}

.cta-block--pattern-christmas .cta-block__shape--holly .cta-block__shape-inner {
  animation: cta-shape-float calc(var(--cta-float-duration) * 1.4) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s);
}

.cta-block--pattern-christmas .cta-block__shape--candy .cta-block__shape-inner {
  transform: none;
  animation: cta-shape-swing calc(var(--cta-float-duration) * 1.1) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s);
}

/* Colorful wiggle on patterns without strong swing motion */
.cta-block--energy-colorful.cta-block--pattern-stars .cta-block__shape-inner {
  animation: cta-shape-float var(--cta-float-duration) ease-in-out infinite,
    cta-shape-twinkle calc(var(--cta-float-duration) * 1.2) ease-in-out infinite,
    cta-shape-wiggle calc(var(--cta-float-duration) * 1.4) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s), var(--shape-delay, 0s), var(--shape-delay, 0s);
}

.cta-block--energy-colorful.cta-block--pattern-bubbles .cta-block__shape-inner {
  animation: cta-shape-rise var(--cta-float-duration) ease-in-out infinite,
    cta-shape-breathe calc(var(--cta-float-duration) * 1.3) ease-in-out infinite,
    cta-shape-wiggle calc(var(--cta-float-duration) * 1.4) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s), var(--shape-delay, 0s), var(--shape-delay, 0s);
}

.cta-block--energy-colorful.cta-block--pattern-books .cta-block__shape-inner {
  animation: cta-shape-drift calc(var(--cta-float-duration) * 1.2) ease-in-out infinite,
    cta-shape-wiggle calc(var(--cta-float-duration) * 1.4) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s), var(--shape-delay, 0s);
}

.cta-block--energy-colorful.cta-block--pattern-confetti .cta-block__shape-inner {
  animation: cta-shape-fall var(--cta-float-duration) ease-in-out infinite,
    cta-shape-sway calc(var(--cta-float-duration) * 1.1) ease-in-out infinite,
    cta-shape-wiggle calc(var(--cta-float-duration) * 1.4) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s), var(--shape-delay, 0s), var(--shape-delay, 0s);
}

.cta-block--energy-colorful.cta-block--pattern-christmas .cta-block__shape--snowflake .cta-block__shape-inner {
  animation: cta-shape-snowflake-drift var(--cta-float-duration) ease-in-out infinite,
    cta-shape-twinkle calc(var(--cta-float-duration) * 1.4) ease-in-out infinite,
    cta-shape-wiggle calc(var(--cta-float-duration) * 1.4) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s), var(--shape-delay, 0s), var(--shape-delay, 0s);
}

.cta-block--energy-colorful.cta-block--pattern-christmas .cta-block__shape--holly .cta-block__shape-inner {
  animation: cta-shape-float calc(var(--cta-float-duration) * 1.4) ease-in-out infinite,
    cta-shape-wiggle calc(var(--cta-float-duration) * 1.4) ease-in-out infinite;
  animation-delay: var(--shape-delay, 0s), var(--shape-delay, 0s);
}

@keyframes cta-shape-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 calc(var(--cta-float-distance) * -1);
  }
}

@keyframes cta-shape-twinkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes cta-shape-rise {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 calc(var(--cta-float-distance) * -1.2);
  }
}

@keyframes cta-shape-breathe {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.08;
  }
}

@keyframes cta-shape-drift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: calc(var(--cta-float-distance) * 0.8) 0;
  }
}

@keyframes cta-shape-fall {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 var(--cta-float-distance);
  }
}

@keyframes cta-shape-sway {
  0%,
  100% {
    translate: 0 0;
  }
  25% {
    translate: calc(var(--cta-float-distance) * 0.5) 0;
  }
  75% {
    translate: calc(var(--cta-float-distance) * -0.5) 0;
  }
}

@keyframes cta-shape-swing {
  0%,
  100% {
    rotate: calc(var(--shape-rotate, 0deg) - 6deg);
  }
  50% {
    rotate: calc(var(--shape-rotate, 0deg) + 6deg);
  }
}

@keyframes cta-shape-snowflake-drift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 var(--cta-float-distance);
  }
}

@keyframes cta-shape-wiggle {
  0%,
  100% {
    rotate: var(--shape-rotate, 0deg);
  }
  25% {
    rotate: calc(var(--shape-rotate, 0deg) + 4deg);
  }
  75% {
    rotate: calc(var(--shape-rotate, 0deg) - 4deg);
  }
}

.cta-block__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 42rem;
  margin: 0 auto;
}

.cta-block--height-normal .cta-block__inner {
  padding: clamp(3.5rem, 7vw, 6.25rem) 0;
}

.cta-block--height-full-screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.cta-block--height-full-screen .cta-block__inner {
  padding: clamp(3rem, 8vh, 5rem) 0;
  max-width: 48rem;
}

.cta-block__content {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.cta-block__title {
  margin: 0 0 1rem;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.cta-block--height-full-screen .cta-block__title {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
}

.cta-block__accent {
  display: block;
  width: 2.5rem;
  height: 3px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(90deg, #e57d20, #f0a86a);
  border-radius: 999px;
}

.cta-block--height-full-screen .cta-block__accent {
  width: clamp(2.5rem, 6vw, 4rem);
  height: 4px;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.cta-block__text {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.82);
}

.cta-block--height-full-screen .cta-block__text {
  font-size: clamp(1.0625rem, 2.2vw, 1.375rem);
  line-height: 1.75;
}

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-block__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 12.5rem;
  min-height: 3.5rem;
  padding: 1rem 2.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  border: 2px solid transparent;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1),
    gap 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cta-block__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(229, 125, 32, 0);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
}

.cta-block__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cta-block__btn--primary {
  color: #fff;
  background: #e57d20;
  border-color: #e57d20;
}

.cta-block__btn--primary:hover,
.cta-block__btn--primary:focus {
  color: #fff;
  background: #cf6f18;
  border-color: #cf6f18;
  transform: translateY(-3px) scale(1.02);
  gap: 1rem;
  box-shadow: 0 10px 28px rgba(229, 125, 32, 0.32);
  text-decoration: none;
}

.cta-block__btn--primary:hover::after,
.cta-block__btn--primary:focus::after {
  box-shadow: 0 0 0 4px rgba(229, 125, 32, 0.22);
}

.cta-block__btn--primary:hover .cta-block__btn-icon,
.cta-block__btn--primary:focus .cta-block__btn-icon {
  transform: translateX(3px);
}

.cta-block__btn--primary:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.22);
}

.cta-block__btn--outline {
  color: #e57d20;
  background: transparent;
  border-color: #e57d20;
}

.cta-block__btn--outline:hover,
.cta-block__btn--outline:focus {
  color: #fff;
  background: #e57d20;
  border-color: #e57d20;
  transform: translateY(-3px) scale(1.02);
  gap: 1rem;
  box-shadow: 0 10px 28px rgba(229, 125, 32, 0.24);
  text-decoration: none;
}

.cta-block__btn--outline:hover::after,
.cta-block__btn--outline:focus::after {
  box-shadow: 0 0 0 4px rgba(229, 125, 32, 0.18);
}

.cta-block__btn--outline:hover .cta-block__btn-icon,
.cta-block__btn--outline:focus .cta-block__btn-icon {
  transform: translateX(3px);
}

.cta-block__btn--outline:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.18);
}

.cta-block__btn:focus-visible {
  outline: 2px solid #e57d20;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .cta-block__btn,
  .cta-block__btn::after,
  .cta-block__btn-icon {
    transition: none;
  }

  .cta-block__btn:hover,
  .cta-block__btn:focus,
  .cta-block__btn:active {
    transform: none;
    gap: 0.75rem;
  }

  .cta-block__btn:hover .cta-block__btn-icon,
  .cta-block__btn:focus .cta-block__btn-icon {
    transform: none;
  }

  .cta-block__shape-inner {
    animation: none !important;
  }

  .cta-block__pattern {
    translate: 0 0 !important;
  }

  .cta-block__shape {
    translate: 0 0 !important;
  }

  .cta-block__pattern--active .cta-block__shape {
    opacity: var(--cta-shape-opacity);
  }
}

/* Summary block */
.summary-block {
  --summary-accent: #e57d20;
  --summary-accent-hover: #cf7119;
  --summary-text: #111;
  --summary-muted: #444;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.summary-block--bg-white {
  background-color: transparent;
}

.summary-block--bg-warm {
  background-color: rgba(229, 125, 32, 0.08);
}

.summary-block--bg-cream {
  background-color: #faf8f5;
}

.summary-block--bg-gray {
  background-color: #f4f4f5;
}

.summary-block--bg-mint {
  background-color: #f0faf6;
}

.summary-block--bg-sky {
  background-color: #eef6fc;
}

.summary-block--bg-lavender {
  background-color: #f5f3ff;
}

.summary-block--bg-blush {
  background-color: #fdf2f4;
}

.summary-block__container {
  display: flex;
  justify-content: center;
}

.summary-block__inner {
  width: 100%;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 768px) {
  .summary-block__inner {
    max-width: 48rem;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

.summary-block__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0 0 0.25rem;
  width: 100%;
  text-align: center;
}

.summary-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--summary-text);
  text-wrap: balance;
}

.summary-block__accent {
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--summary-accent);
}

.summary-block__content {
  width: 100%;
  max-width: 34rem;
  margin: 0;
  color: #222;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.125rem, 2.4vw, 1.3125rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.01em;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.summary-block__content--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.summary-block__content--left {
  text-align: left;
  align-self: center;
}

.summary-block__content p {
  margin: 0 0 1em;
}

.summary-block__content p:last-child {
  margin-bottom: 0;
}

.summary-block__actions {
  margin-top: 0.25rem;
  align-self: center;
  text-align: center;
}

.summary-block__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 3rem;
  padding: 0.75rem 1.75rem;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--summary-accent) !important;
  background: transparent;
  border: 2px solid var(--summary-accent);
  border-radius: 999px;
  box-shadow: none;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1),
    gap 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.summary-block__cta:hover,
.summary-block__cta:focus-visible {
  color: var(--summary-accent-hover) !important;
  background: rgba(229, 125, 32, 0.08);
  border-color: var(--summary-accent-hover);
  box-shadow: 0 6px 18px rgba(229, 125, 32, 0.14);
  transform: translateY(-2px);
  gap: 0.875rem;
  text-decoration: none;
}

.summary-block__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(229, 125, 32, 0.1);
  background: rgba(229, 125, 32, 0.12);
  border-color: #b86210;
  color: #b86210 !important;
}

.summary-block__cta:focus-visible {
  outline: 2px solid var(--summary-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(229, 125, 32, 0.15);
}

.summary-block__cta-label {
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.summary-block__cta-icon {
  display: inline-flex;
  font-size: 1rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.summary-block__cta:hover .summary-block__cta-label,
.summary-block__cta:focus-visible .summary-block__cta-label {
  transform: translateX(-2px);
}

.summary-block__cta:hover .summary-block__cta-icon,
.summary-block__cta:focus-visible .summary-block__cta-icon {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .summary-block__cta {
    min-height: 3.25rem;
    padding: 0.8125rem 2rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 575.98px) {
  .summary-block__cta {
    width: 100%;
    max-width: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .summary-block__cta,
  .summary-block__cta-label,
  .summary-block__cta-icon {
    transition: none;
  }

  .summary-block__cta:hover,
  .summary-block__cta:focus-visible,
  .summary-block__cta:active {
    transform: none;
    gap: 0.625rem;
  }

  .summary-block__cta:hover .summary-block__cta-label,
  .summary-block__cta:focus-visible .summary-block__cta-label,
  .summary-block__cta:hover .summary-block__cta-icon,
  .summary-block__cta:focus-visible .summary-block__cta-icon {
    transform: none;
  }
}

/* Card block — section.card-block avoids Bootstrap .card-block padding conflict */
section.card-block {
  --card-block-padding-y: clamp(2.75rem, 7vw, 5rem);
  padding-top: var(--card-block-padding-y);
  padding-bottom: var(--card-block-padding-y);
  padding-left: 0;
  padding-right: 0;
}

.card-block--bg-white {
  background-color: transparent;
}

.card-block--bg-warm {
  background-color: rgba(229, 125, 32, 0.08);
}

.card-block--bg-cream {
  background-color: #faf8f5;
}

.card-block--bg-gray {
  background-color: #f4f4f5;
}

.card-block--bg-mint {
  background-color: #f0faf6;
}

.card-block--bg-sky {
  background-color: #eef6fc;
}

.card-block--bg-lavender {
  background-color: #f5f3ff;
}

.card-block--bg-blush {
  background-color: #fdf2f4;
}

.card-block--bg-gradient-warm {
  background: linear-gradient(
    180deg,
    rgba(229, 125, 32, 0.1) 0%,
    rgba(250, 248, 245, 0.65) 45%,
    #fff 100%
  );
}

.card-block--bg-gradient-sky {
  background: linear-gradient(
    180deg,
    #eef6fc 0%,
    #f4faff 55%,
    #fff 100%
  );
}

.card-block--bg-gradient-cream {
  background: linear-gradient(
    180deg,
    #faf8f5 0%,
    #fff9f3 50%,
    #fff 100%
  );
}

.card-block--bg-gradient-lavender {
  background: linear-gradient(
    135deg,
    #f5f3ff 0%,
    #fdf2f8 48%,
    #faf8f5 100%
  );
}

.card-block__grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: minmax(0, 1fr);
}

.card-block__grid--cols-3 {
  --card-block-cols-md: 2;
  --card-block-cols-lg: 3;
}

.card-block__grid--cols-4 {
  --card-block-cols-md: 2;
  --card-block-cols-lg: 4;
}

@media (min-width: 576px) {
  .card-block__grid--cols-3,
  .card-block__grid--cols-4 {
    grid-template-columns: repeat(var(--card-block-cols-md), minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .card-block__grid--cols-3,
  .card-block__grid--cols-4 {
    grid-template-columns: repeat(var(--card-block-cols-lg), minmax(0, 1fr));
  }
}

.card-block__col {
  display: flex;
  min-width: 0;
}

.card-block__card {
  width: 100%;
}

.card-block__body--center {
  text-align: center;
}

.card-block__body--left {
  text-align: left;
}

.card-block__body {
  background: #fff;
}

.card-block__card-title {
  margin: 0 0 0.75rem;
}

.card-block__text {
  margin: 0;
}

.card-block__link {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.card-block__link:hover,
.card-block__link:focus-visible {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-style: dashed;
}

.card-block__link:focus-visible {
  outline: 2px solid #222;
  outline-offset: 3px;
}

/* Card group block */
section.card-group-block {
  --card-group-block-padding-y: clamp(2.75rem, 7vw, 5rem);
  --card-group-accent: #e57d20;
  padding-top: var(--card-group-block-padding-y);
  padding-bottom: var(--card-group-block-padding-y);
  padding-left: 0;
  padding-right: 0;
}

.card-group-block--bg-white {
  background-color: transparent;
}

.card-group-block--bg-warm {
  background-color: rgba(229, 125, 32, 0.08);
}

.card-group-block--bg-cream {
  background-color: #faf8f5;
}

.card-group-block--bg-gray {
  background-color: #f4f4f5;
}

.card-group-block--bg-mint {
  background-color: #f0faf6;
}

.card-group-block--bg-sky {
  background-color: #eef6fc;
}

.card-group-block--bg-lavender {
  background-color: #f5f3ff;
}

.card-group-block--bg-blush {
  background-color: #fdf2f4;
}

.card-group-block--bg-gradient-warm {
  background: linear-gradient(
    180deg,
    rgba(229, 125, 32, 0.1) 0%,
    rgba(250, 248, 245, 0.65) 45%,
    #fff 100%
  );
}

.card-group-block--bg-gradient-sky {
  background: linear-gradient(180deg, #eef6fc 0%, #f4faff 55%, #fff 100%);
}

.card-group-block--bg-gradient-cream {
  background: linear-gradient(180deg, #faf8f5 0%, #fff9f3 50%, #fff 100%);
}

.card-group-block--bg-gradient-lavender {
  background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 48%, #faf8f5 100%);
}

.card-group-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.card-group-block__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 40rem;
}

.card-group-block__header--center {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.card-group-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.card-group-block__accent {
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--card-group-accent);
}

.card-group-block__header--center .card-group-block__accent {
  margin-left: auto;
  margin-right: auto;
}

.card-group-block__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 576px) {
  .card-group-block__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .card-group-block__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card-group-block__card {
  min-width: 0;
}

.card-group-block__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 1rem;
  background: #e8e8ea;
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.1);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.3s ease;
}

.card-group-block__card--linked .card-group-block__media {
  cursor: pointer;
}

.card-group-block__card--linked:hover .card-group-block__media,
.card-group-block__card--linked:focus-within .card-group-block__media {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.16);
}

.card-group-block__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card-group-block__card--linked:hover .card-group-block__image,
.card-group-block__card--linked:focus-within .card-group-block__image {
  transform: scale(1.04);
}

.card-group-block__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.08) 0%,
    rgba(17, 17, 17, 0.35) 45%,
    rgba(17, 17, 17, 0.72) 100%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.card-group-block__card--linked:hover .card-group-block__scrim,
.card-group-block__card--linked:focus-within .card-group-block__scrim {
  opacity: 0.92;
}

.card-group-block__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.card-group-block__card-title {
  margin: 0 0 0.375rem;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.8vw, 1.625rem);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.card-group-block__card-subtitle {
  margin: 0;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.card-group-block__stretched-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 1rem;
}

.card-group-block__stretched-link:focus-visible {
  outline: 3px solid var(--card-group-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .card-group-block__media,
  .card-group-block__image,
  .card-group-block__scrim {
    transition: none;
  }

  .card-group-block__card--linked:hover .card-group-block__media,
  .card-group-block__card--linked:focus-within .card-group-block__media,
  .card-group-block__card--linked:hover .card-group-block__image,
  .card-group-block__card--linked:focus-within .card-group-block__image {
    transform: none;
  }
}

/* Max card block */
section.max-card-block {
  --max-card-block-padding-y: clamp(2.75rem, 7vw, 5rem);
  --max-card-accent: #e57d20;
  --max-card-radius: 1rem;
  padding-top: var(--max-card-block-padding-y);
  padding-bottom: var(--max-card-block-padding-y);
  padding-left: 0;
  padding-right: 0;
}

section.max-card-block.max-card-block--square {
  --max-card-radius: 0;
}

.max-card-block--bg-white {
  background-color: transparent;
}

.max-card-block--bg-warm {
  background-color: rgba(229, 125, 32, 0.08);
}

.max-card-block--bg-cream {
  background-color: #faf8f5;
}

.max-card-block--bg-gray {
  background-color: #f4f4f5;
}

.max-card-block--bg-mint {
  background-color: #f0faf6;
}

.max-card-block--bg-sky {
  background-color: #eef6fc;
}

.max-card-block--bg-lavender {
  background-color: #f5f3ff;
}

.max-card-block--bg-blush {
  background-color: #fdf2f4;
}

.max-card-block--bg-gradient-warm {
  background: linear-gradient(
    180deg,
    rgba(229, 125, 32, 0.1) 0%,
    rgba(250, 248, 245, 0.65) 45%,
    #fff 100%
  );
}

.max-card-block--bg-gradient-sky {
  background: linear-gradient(180deg, #eef6fc 0%, #f4faff 55%, #fff 100%);
}

.max-card-block--bg-gradient-cream {
  background: linear-gradient(180deg, #faf8f5 0%, #fff9f3 50%, #fff 100%);
}

.max-card-block--bg-gradient-lavender {
  background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 48%, #faf8f5 100%);
}

.max-card-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.max-card-block__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 40rem;
  text-align: left;
}

.max-card-block__header--center {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.max-card-block__header--left {
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.max-card-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
}

.max-card-block__subtitle {
  margin: 0;
  color: #444;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}

.max-card-block__accent {
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--max-card-accent);
}

.max-card-block__header--center .max-card-block__accent {
  margin-left: auto;
  margin-right: auto;
}

.max-card-block__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 576px) {
  .max-card-block__grid--cols-3,
  .max-card-block__grid--cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .max-card-block__grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .max-card-block__grid--cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .max-card-block__grid--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.max-card-block__card {
  min-width: 0;
  height: 100%;
}

.max-card-block__card--linked .max-card-block__media,
.max-card-block__card--title-linked .max-card-block__media {
  cursor: pointer;
}

.max-card-block__media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(18rem, 48vw, 26rem);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--max-card-radius);
  background: #1a1a1a;
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.12);
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease;
}

.max-card-block__card:hover .max-card-block__media,
.max-card-block__card:focus-within .max-card-block__media {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.18);
}

.max-card-block__card:active .max-card-block__media {
  transform: scale(1.01);
  transition-duration: 0.12s;
}

.max-card-block__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.max-card-block__card:hover .max-card-block__image,
.max-card-block__card:focus-within .max-card-block__image {
  transform: scale(1.08);
}

.max-card-block__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.05) 0%,
    rgba(17, 17, 17, 0.35) 38%,
    rgba(17, 17, 17, 0.82) 72%,
    rgba(17, 17, 17, 0.95) 100%
  );
  pointer-events: none;
  transition: background 0.5s ease;
}

.max-card-block__card:hover .max-card-block__scrim,
.max-card-block__card:focus-within .max-card-block__scrim {
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.1) 0%,
    rgba(17, 17, 17, 0.45) 30%,
    rgba(17, 17, 17, 0.88) 65%,
    rgba(17, 17, 17, 0.98) 100%
  );
}

.max-card-block__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  padding: clamp(1.5rem, 4vw, 2rem);
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.max-card-block__content::before {
  content: "";
  position: absolute;
  inset: -0.5rem 0 0;
  z-index: -1;
  border-radius: 0 0 var(--max-card-radius) var(--max-card-radius);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(17, 17, 17, 0.55) 35%,
    rgba(17, 17, 17, 0.82) 100%
  );
  opacity: 0.92;
  pointer-events: none;
  transition: opacity 0.45s ease, background 0.45s ease;
}

.max-card-block__card:hover .max-card-block__content::before,
.max-card-block__card:focus-within .max-card-block__content::before {
  opacity: 1;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(17, 17, 17, 0.65) 28%,
    rgba(17, 17, 17, 0.92) 100%
  );
}

.max-card-block__card-title {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.3125rem, 3.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.005em;
  text-transform: none;
  overflow-wrap: break-word;
  hyphens: auto;
  color: #fff;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 4px 24px rgba(0, 0, 0, 0.35);
}

.max-card-block__title-link {
  position: relative;
  z-index: 3;
  display: inline;
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition:
    color 0.25s ease,
    background-size 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.max-card-block__title-link:hover,
.max-card-block__title-link:focus-visible {
  color: #fff;
  background-size: 100% 2px;
  text-decoration: none;
}

.max-card-block__title-link:focus-visible {
  outline: 2px solid var(--max-card-accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.max-card-block__card-text {
  margin: 0;
  max-width: 26rem;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.98);
  text-wrap: pretty;
  text-shadow:
    0 1px 6px rgba(0, 0, 0, 0.5),
    0 3px 16px rgba(0, 0, 0, 0.35);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.max-card-block__actions {
  margin-top: 0.125rem;
  pointer-events: auto;
}

.max-card-block__link-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0.125rem 0 0;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0.85;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.max-card-block__card--linked:hover .max-card-block__link-hint,
.max-card-block__card--linked:focus-within .max-card-block__link-hint {
  color: #fff;
  opacity: 1;
  transform: translateX(3px);
}

.max-card-block__link-hint-icon {
  display: inline-block;
  transition: transform 0.25s ease;
}

.max-card-block__card--linked:hover .max-card-block__link-hint-icon,
.max-card-block__card--linked:focus-within .max-card-block__link-hint-icon {
  transform: translateX(4px);
}

.max-card-block__stretched-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--max-card-radius);
}

.max-card-block__stretched-link:focus-visible {
  outline: 3px solid var(--max-card-accent);
  outline-offset: 3px;
}

.max-card-block__cta {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.375rem;
  padding: 0.4375rem 1.25rem;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff !important;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  text-decoration: none;
  pointer-events: auto;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.max-card-block__cta:hover,
.max-card-block__cta:focus-visible {
  color: #111 !important;
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.max-card-block__cta:focus-visible {
  outline: 2px solid var(--max-card-accent);
  outline-offset: 3px;
}

.max-card-block__cta:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 575.98px) {
  .max-card-block__media {
    aspect-ratio: 4 / 5;
    min-height: 18rem;
  }
}

/* 4-column layout: shorter cards, tighter type */
@media (min-width: 1200px) {
  .max-card-block__grid--cols-4 {
    gap: clamp(1rem, 2vw, 1.25rem);
  }

  .max-card-block__grid--cols-4 .max-card-block__media {
    aspect-ratio: 4 / 5;
    min-height: auto;
  }

  .max-card-block__grid--cols-4 .max-card-block__content {
    gap: 0.625rem;
    padding: clamp(1.125rem, 2.2vw, 1.5rem);
  }

  .max-card-block__grid--cols-4 .max-card-block__card-title {
    font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
    line-height: 1.3;
  }

  .max-card-block__grid--cols-4 .max-card-block__card-text {
    font-size: clamp(0.9375rem, 1.1vw, 1rem);
    line-height: 1.5;
    -webkit-line-clamp: 4;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .max-card-block__media,
  .max-card-block__image,
  .max-card-block__scrim,
  .max-card-block__content::before,
  .max-card-block__cta,
  .max-card-block__title-link,
  .max-card-block__link-hint,
  .max-card-block__link-hint-icon {
    transition: none;
  }

  .max-card-block__card:hover .max-card-block__media,
  .max-card-block__card:focus-within .max-card-block__media,
  .max-card-block__card:active .max-card-block__media,
  .max-card-block__card:hover .max-card-block__image,
  .max-card-block__card:focus-within .max-card-block__image,
  .max-card-block__cta:hover,
  .max-card-block__cta:focus-visible,
  .max-card-block__cta:active,
  .max-card-block__card--linked:hover .max-card-block__link-hint,
  .max-card-block__card--linked:focus-within .max-card-block__link-hint,
  .max-card-block__card--linked:hover .max-card-block__link-hint-icon,
  .max-card-block__card--linked:focus-within .max-card-block__link-hint-icon {
    transform: none;
    box-shadow: 0 10px 32px rgba(17, 17, 17, 0.12);
  }
}

/* Modern block */
section.modern-block {
  --modern-block-accent: #e57d20;
  --modern-block-accent-hover: #cf7119;
  padding: clamp(2.75rem, 7vw, 5rem) 0;
}

.modern-block--bg-white {
  background-color: transparent;
}

.modern-block--bg-warm {
  background-color: rgba(229, 125, 32, 0.08);
}

.modern-block--bg-cream {
  background-color: #faf8f5;
}

.modern-block--bg-gray {
  background-color: #f4f4f5;
}

.modern-block--bg-mint {
  background-color: #f0faf6;
}

.modern-block--bg-sky {
  background-color: #eef6fc;
}

.modern-block--bg-lavender {
  background-color: #f5f3ff;
}

.modern-block--bg-blush {
  background-color: #fdf2f4;
}

.modern-block--bg-gradient-warm {
  background: linear-gradient(
    180deg,
    rgba(229, 125, 32, 0.1) 0%,
    rgba(250, 248, 245, 0.65) 45%,
    #fff 100%
  );
}

.modern-block--bg-gradient-sky {
  background: linear-gradient(180deg, #eef6fc 0%, #f4faff 55%, #fff 100%);
}

.modern-block--bg-gradient-cream {
  background: linear-gradient(180deg, #faf8f5 0%, #fff9f3 50%, #fff 100%);
}

.modern-block--bg-gradient-lavender {
  background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 48%, #faf8f5 100%);
}

.modern-block__container {
  width: 100%;
}

.modern-block__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 992px) {
  .modern-block__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(2.5rem, 4vw, 4rem);
  }
}

.modern-block__gallery {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(0.875rem, 2vw, 1.25rem);
  align-items: center;
}

.modern-block__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.12);
  transition:
    transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.45s ease;
}

.modern-block__figure--secondary {
  margin-top: clamp(1.5rem, 4vw, 2.75rem);
}

.modern-block__gallery:hover .modern-block__figure--primary,
.modern-block__gallery:focus-within .modern-block__figure--primary {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.16);
}

.modern-block__gallery:hover .modern-block__figure--secondary,
.modern-block__gallery:focus-within .modern-block__figure--secondary {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(17, 17, 17, 0.18);
}

.modern-block__figure:hover .modern-block__image,
.modern-block__figure:focus-within .modern-block__image {
  transform: scale(1.04);
}

.modern-block__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-block__panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 2.5vw, 1.375rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.4s ease;
}

.modern-block__panel:hover,
.modern-block__panel:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(17, 17, 17, 0.12);
}

.modern-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.005em;
  color: #111;
  text-wrap: balance;
}

.modern-block__accent {
  display: block;
  width: 3rem;
  height: 0.25rem;
  margin-top: -0.375rem;
  border-radius: 999px;
  background: var(--modern-block-accent);
  transition: width 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.modern-block__panel:hover .modern-block__accent,
.modern-block__panel:focus-within .modern-block__accent {
  width: 4rem;
}

.modern-block__content {
  margin: 0;
  color: #444;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.75;
  text-wrap: pretty;
}

.modern-block__content p {
  margin: 0 0 1em;
}

.modern-block__content p:last-child {
  margin-bottom: 0;
}

.modern-block__actions {
  margin-top: 0.25rem;
}

.modern-block__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 1.5rem;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--modern-block-accent);
  border: 2px solid var(--modern-block-accent);
  border-radius: 999px;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1),
    gap 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.modern-block__cta:hover,
.modern-block__cta:focus-visible {
  color: #fff !important;
  background: var(--modern-block-accent-hover);
  border-color: var(--modern-block-accent-hover);
  box-shadow: 0 8px 24px rgba(229, 125, 32, 0.28);
  transform: translateY(-2px);
  gap: 0.75rem;
  text-decoration: none;
}

.modern-block__cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(229, 125, 32, 0.2);
}

.modern-block__cta:focus-visible {
  outline: 2px solid var(--modern-block-accent);
  outline-offset: 3px;
}

.modern-block__cta-icon {
  display: inline-block;
  transition: transform 0.25s ease;
}

.modern-block__cta:hover .modern-block__cta-icon,
.modern-block__cta:focus-visible .modern-block__cta-icon {
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .modern-block__gallery {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  .modern-block__panel {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .modern-block__figure,
  .modern-block__image,
  .modern-block__panel,
  .modern-block__accent,
  .modern-block__cta,
  .modern-block__cta-icon {
    transition: none;
  }

  .modern-block__gallery:hover .modern-block__figure--primary,
  .modern-block__gallery:focus-within .modern-block__figure--primary,
  .modern-block__gallery:hover .modern-block__figure--secondary,
  .modern-block__gallery:focus-within .modern-block__figure--secondary,
  .modern-block__figure:hover .modern-block__image,
  .modern-block__figure:focus-within .modern-block__image,
  .modern-block__panel:hover,
  .modern-block__panel:focus-within,
  .modern-block__panel:hover .modern-block__accent,
  .modern-block__panel:focus-within .modern-block__accent,
  .modern-block__cta:hover,
  .modern-block__cta:focus-visible,
  .modern-block__cta:active,
  .modern-block__cta:hover .modern-block__cta-icon,
  .modern-block__cta:focus-visible .modern-block__cta-icon {
    transform: none;
  }
}

/* Accordion block */
section.accordion-block {
  --accordion-accent: #e57d20;
  --accordion-accent-hover: #cf7119;
  --accordion-accent-soft: rgba(229, 125, 32, 0.1);
  --accordion-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --accordion-ease-out: cubic-bezier(0.32, 0.72, 0, 1);
  --accordion-duration: 0.65s;
  padding: clamp(2.75rem, 7vw, 5rem) 0;
}

.accordion-block--bg-white {
  background-color: transparent;
}

.accordion-block--bg-warm {
  background-color: rgba(229, 125, 32, 0.08);
}

.accordion-block--bg-cream {
  background-color: #faf8f5;
}

.accordion-block--bg-gray {
  background-color: #f4f4f5;
}

.accordion-block--bg-mint {
  background-color: #f0faf6;
}

.accordion-block--bg-sky {
  background-color: #eef6fc;
}

.accordion-block--bg-lavender {
  background-color: #f5f3ff;
}

.accordion-block--bg-blush {
  background-color: #fdf2f4;
}

.accordion-block--bg-gradient-warm {
  background: linear-gradient(
    180deg,
    rgba(229, 125, 32, 0.1) 0%,
    rgba(250, 248, 245, 0.65) 45%,
    #fff 100%
  );
}

.accordion-block--bg-gradient-sky {
  background: linear-gradient(180deg, #eef6fc 0%, #f4faff 55%, #fff 100%);
}

.accordion-block--bg-gradient-cream {
  background: linear-gradient(180deg, #faf8f5 0%, #fff9f3 50%, #fff 100%);
}

.accordion-block--bg-gradient-lavender {
  background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 48%, #faf8f5 100%);
}

.accordion-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.accordion-block__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.accordion-block__header--center {
  align-items: center;
  text-align: center;
}

.accordion-block__header--left {
  align-items: flex-start;
  text-align: left;
}

.accordion-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
}

.accordion-block__accent {
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--accordion-accent);
}

.accordion-block__header--center .accordion-block__accent {
  margin-left: auto;
  margin-right: auto;
}

.accordion-block__subtitle {
  margin: 0;
  max-width: 36rem;
  color: #444;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.accordion-block__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.accordion-block__item {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.875rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.04);
  transition:
    border-color 0.4s var(--accordion-ease),
    box-shadow 0.45s var(--accordion-ease),
    transform 0.45s var(--accordion-ease-out);
}

.accordion-block__item:hover {
  border-color: rgba(229, 125, 32, 0.2);
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.05);
  transform: translateY(-1px);
}

.accordion-block__item.is-open {
  border-color: rgba(229, 125, 32, 0.28);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.06);
  transform: translateY(-1px);
}

.accordion-block__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.25rem, 3vw, 1.5rem);
  border: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  user-select: none;
  background: transparent;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 0.45s var(--accordion-ease),
    color 0.35s var(--accordion-ease);
}

.accordion-block__item.is-open > .accordion-block__trigger {
  background: var(--accordion-accent-soft);
}

.accordion-block__trigger:active {
  background: rgba(229, 125, 32, 0.14);
}

.accordion-block__trigger:focus {
  outline: none;
  box-shadow: none;
}

.accordion-block__trigger:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.accordion-block__trigger-text {
  flex: 1;
  min-width: 0;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  text-wrap: pretty;
  transition: color 0.4s var(--accordion-ease);
}

.accordion-block__item.is-open > .accordion-block__trigger .accordion-block__trigger-text {
  color: #1a1a1a;
}

.accordion-block__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: var(--accordion-accent);
  background: var(--accordion-accent-soft);
  transition:
    background-color 0.45s var(--accordion-ease),
    color 0.45s var(--accordion-ease),
    box-shadow 0.45s var(--accordion-ease);
}

.accordion-block__icon svg {
  display: block;
  transform: rotate(0deg);
  transition: transform var(--accordion-duration) var(--accordion-ease-out);
}

.accordion-block__item.is-open > .accordion-block__trigger .accordion-block__icon {
  background: var(--accordion-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(229, 125, 32, 0.22);
}

.accordion-block__item.is-open > .accordion-block__trigger .accordion-block__icon svg {
  transform: rotate(180deg);
}

.accordion-block__trigger:focus-visible {
  outline: 2px solid var(--accordion-accent);
  outline-offset: 3px;
}

.accordion-block__panel-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--accordion-duration) var(--accordion-ease-out);
}

.accordion-block__panel-wrap.is-open {
  grid-template-rows: 1fr;
}

.accordion-block__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.accordion-block__panel {
  padding: 0 clamp(1.25rem, 3vw, 1.5rem) clamp(1.125rem, 2.5vw, 1.375rem);
  color: #2a2a2a;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-top: 1px solid transparent;
  opacity: 0;
  transform: translateY(-4px);
  padding-top: 0;
  transition:
    opacity 0.28s var(--accordion-ease),
    transform var(--accordion-duration) var(--accordion-ease-out),
    border-color 0.4s var(--accordion-ease),
    padding-top var(--accordion-duration) var(--accordion-ease-out);
}

.accordion-block__item.is-open .accordion-block__panel {
  padding-top: clamp(0.875rem, 2vw, 1rem);
  border-top-color: rgba(17, 17, 17, 0.07);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s var(--accordion-ease) 0.12s,
    transform var(--accordion-duration) var(--accordion-ease-out) 0.1s,
    border-color 0.45s var(--accordion-ease) 0.14s,
    padding-top var(--accordion-duration) var(--accordion-ease-out);
}

.accordion-block__panel p {
  margin: 0 0 1em;
  color: #2a2a2a;
}

.accordion-block__panel p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  section.accordion-block {
    --accordion-duration: 0.01ms;
  }

  .accordion-block__item,
  .accordion-block__trigger,
  .accordion-block__trigger-text,
  .accordion-block__icon,
  .accordion-block__icon svg,
  .accordion-block__panel-wrap,
  .accordion-block__panel {
    transition: none;
  }

  .accordion-block__item:hover,
  .accordion-block__item.is-open,
  .accordion-block__item.is-open .accordion-block__panel,
  .accordion-block__item.is-open > .accordion-block__trigger .accordion-block__icon svg {
    transform: none;
  }

  .accordion-block__panel-wrap.is-open {
    grid-template-rows: 1fr;
  }

  .accordion-block__item:not(.is-open) .accordion-block__panel {
    opacity: 0;
  }

  .accordion-block__item.is-open .accordion-block__panel {
    opacity: 1;
  }
}

/* List block */
:root {
  --list-block-section-bg: rgba(229, 125, 32, 0.08);
}

.list-block {
  padding: 2rem 0;
  --list-block-accent: #e57d20;
  --list-block-accent-hover: #cf7119;
  --list-block-accent-border: rgba(229, 125, 32, 0.42);
  --list-block-accent-soft: rgba(229, 125, 32, 0.08);
}

@media (min-width: 768px) {
  .list-block {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
  }
}

@media (min-width: 992px) {
  .list-block {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }
}

@media (max-width: 767px) {
  .list-block__container {
    gap: 1.25rem;
  }

  .list-block__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .list-block__toolbar-meta {
    justify-content: center;
  }
}

.list-block--bg-white {
  background-color: #fff;
}

.list-block--bg-warm {
  background-color: rgba(229, 125, 32, 0.08);
}

.list-block--bg-cream {
  background-color: #faf8f5;
}

.list-block--bg-gray {
  background-color: #f4f4f5;
}

.list-block--bg-mint {
  background-color: #f0faf6;
}

.list-block--bg-sky {
  background-color: #f0f7fc;
}

.list-block--bg-lavender {
  background-color: #f5f3ff;
}

.list-block--bg-blush {
  background-color: #fdf2f4;
}

.list-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.list-block__header {
  margin-bottom: 0.25rem;
}

.list-block__title {
  margin: 0 0 0.75rem;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  line-height: 1.2;
}

.list-block__subtitle {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}

.list-block__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  width: 100%;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.list-block--layout-grid .list-block__toolbar {
  max-width: none;
}

.list-block--layout-grid .list-block__search-wrap {
  max-width: 28rem;
}

.list-block__search-wrap {
  position: relative;
  flex: 1 1 12rem;
  min-width: 0;
  max-width: 20rem;
}

.list-block__search-label {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  color: rgba(229, 125, 32, 0.55);
  pointer-events: none;
  line-height: 0;
}

.list-block__search-input {
  width: 100%;
  height: 2.5rem;
  padding: 0 2.5rem 0 2.375rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #111;
  background: var(--list-block-accent-soft);
  border: 1px solid var(--list-block-accent-border);
  border-radius: 8px;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.list-block__search-input::-webkit-search-cancel-button {
  display: none;
}

.list-block__search-wrap--loading .list-block__search-input {
  opacity: 0.72;
}

.list-block__search-spinner {
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  margin-top: -0.5rem;
  border: 2px solid rgba(17, 17, 17, 0.12);
  border-top-color: #e57d20;
  border-radius: 50%;
  animation: list-block-spin 0.65s linear infinite;
}

@keyframes list-block-spin {
  to {
    transform: rotate(360deg);
  }
}

.list-block__search-input::placeholder {
  color: rgba(17, 17, 17, 0.42);
}

.list-block__search-input:hover {
  border-color: rgba(229, 125, 32, 0.55);
}

.list-block__search-input:focus {
  outline: none;
  border-color: rgba(229, 125, 32, 0.62);
  background: var(--list-block-accent-soft);
  box-shadow: 0 0 0 3px rgba(229, 125, 32, 0.12);
}

.list-block__search-clear {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(229, 125, 32, 0.55);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.list-block__search-clear:hover {
  color: var(--list-block-accent-hover);
  background: var(--list-block-accent-soft);
}

.list-block__search-clear:focus {
  outline: none;
}

.list-block__search-clear:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 1px;
}

.list-block__toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.list-block__htmx-form {
  display: none;
}

.list-block__results {
  transition: opacity 0.2s ease;
}

.list-block__results--loading {
  opacity: 0.72;
  pointer-events: none;
}

.list-block__results.htmx-swapping {
  opacity: 0.55;
}

.list-block__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto 1rem;
  padding: 0.75rem 1rem;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 600;
  color: #111;
  background: var(--list-block-accent-soft);
  border: 1px solid var(--list-block-accent-border);
  border-radius: 8px;
  transition: opacity 0.22s ease;
}

.list-block--layout-grid .list-block__status {
  max-width: none;
}

.list-block__status--empty {
  justify-content: center;
}

.list-block__status-range,
.list-block__status-page {
  margin: 0;
}

.list-block__status-page {
  color: var(--list-block-accent-hover);
  font-weight: 600;
}

.list-block__highlight {
  padding: 0 0.1em;
  color: inherit;
  background: rgba(229, 125, 32, 0.18);
  border-radius: 2px;
}

.list-block__view-toggle {
  position: relative;
  display: inline-flex;
  padding: 3px;
  background: #fff;
  border: 1px solid var(--list-block-accent-border);
  border-radius: 8px;
  isolation: isolate;
}

.list-block__view-indicator {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 6px;
  background: var(--list-block-accent);
  box-shadow: 0 2px 8px rgba(229, 125, 32, 0.22);
  transform: translateX(calc(var(--view-index, 0) * 100%));
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
  pointer-events: none;
  z-index: 0;
}

.list-block__view-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex: 1 1 0;
  min-width: 4.75rem;
  padding: 0.4375rem 0.75rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--list-block-accent);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.list-block__view-btn:hover:not(.list-block__view-btn--active) {
  color: var(--list-block-accent-hover);
}

.list-block__view-btn:focus {
  outline: none;
}

.list-block__view-btn:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 1px;
}

.list-block__view-btn--active {
  color: #fff;
  background: transparent;
}

.list-block__view-btn--active:hover {
  color: #fff;
}

.list-block__view-label {
  display: none;
}

@media (min-width: 576px) {
  .list-block__view-label {
    display: inline;
  }
}

.list-block__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  transform: translateY(0);
}

.list-block--view-switching .list-block__list {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.list-block--view-switching .list-block__status {
  opacity: 0.72;
  transition: opacity 0.22s ease;
}

.list-block--layout-list .list-block__list {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.list-block--layout-grid .list-block__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (min-width: 768px) {
  .list-block--layout-grid .list-block__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .list-block--layout-grid .list-block__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.list-block__item {
  margin: 0;
}

.list-block__card {
  position: relative;
  display: flex;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.06);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.list-block__card:hover,
.list-block__card:focus-within,
.list-block__card:has(.list-block__btn:hover) {
  border-color: rgba(229, 125, 32, 0.62);
  background: var(--list-block-accent-soft);
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.12);
}

.list-block__card:hover .list-block__btn,
.list-block__card:focus-within .list-block__btn {
  border-color: rgba(229, 125, 32, 0.62);
  color: var(--list-block-accent-hover);
}

.list-block--layout-list .list-block__card {
  flex-direction: row;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  padding: 1.25rem 1.5rem;
}

.list-block--layout-grid .list-block__card {
  flex-direction: column;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.list-block__card-body {
  flex: 1 1 auto;
  min-width: 0;
}

.list-block__card-title {
  margin: 0 0 0.5rem;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.1875rem);
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.list-block__card-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.82);
}

.list-block__card-footer {
  flex-shrink: 0;
}

.list-block--layout-list .list-block__card-footer {
  width: auto;
  min-width: 10rem;
}

.list-block--layout-grid .list-block__card-footer {
  width: 100%;
  margin-top: auto;
  padding-top: 1.25rem;
}

.list-block__action {
  width: 100%;
}

.list-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.list-block__btn:hover,
.list-block__btn:focus {
  color: var(--list-block-accent-hover);
  background: var(--list-block-accent-soft);
  border-color: rgba(229, 125, 32, 0.62);
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.12);
  text-decoration: none;
}

.list-block__btn:focus {
  outline: none;
}

.list-block__btn:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 2px;
}

.list-block__btn:active {
  color: var(--list-block-accent-hover);
  background: rgba(229, 125, 32, 0.12);
  border-color: rgba(229, 125, 32, 0.62);
  box-shadow: 0 2px 8px rgba(229, 125, 32, 0.1);
}

.list-block__btn-icon {
  transition: transform 0.2s ease;
}

.list-block__btn:hover .list-block__btn-icon {
  transform: translateX(2px);
}

.list-block__audio {
  width: 100%;
  max-width: 100%;
}

.list-block__alert {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #856404;
  background: #fff3cd;
  border: 1px solid #ffeeba;
  border-radius: 8px;
}

.list-block__empty {
  text-align: center;
  padding: 2.5rem 1rem;
}

.list-block__empty-text {
  margin: 0 0 1rem;
  color: rgba(17, 17, 17, 0.65);
}

.list-block__empty-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.625rem 1.375rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--list-block-accent);
  background: transparent;
  border: 1px solid var(--list-block-accent-border);
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.list-block__empty-clear:hover,
.list-block__empty-clear:focus {
  color: var(--list-block-accent-hover);
  background: var(--list-block-accent-soft);
  border-color: rgba(229, 125, 32, 0.62);
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.12);
}

.list-block__empty-clear:focus {
  outline: none;
}

.list-block__empty-clear:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 2px;
}

.list-block__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.list-block__page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.75rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--list-block-accent);
  background: transparent;
  border: 1px solid var(--list-block-accent-border);
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.list-block__page-btn:hover:not(:disabled) {
  color: var(--list-block-accent-hover);
  background: var(--list-block-accent-soft);
  border-color: rgba(229, 125, 32, 0.62);
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.12);
}

.list-block__page-btn:focus {
  outline: none;
}

.list-block__page-btn:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 2px;
}

.list-block__page-btn--active {
  color: #fff;
  background: var(--list-block-accent);
  border-color: var(--list-block-accent);
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.22);
}

.list-block__page-btn--active:hover:not(:disabled) {
  color: #fff;
  background: var(--list-block-accent-hover);
  border-color: var(--list-block-accent-hover);
  box-shadow: 0 6px 18px rgba(229, 125, 32, 0.28);
}

.list-block__page-btn--active:focus,
.list-block__page-btn--active:focus-visible {
  outline: none;
  box-shadow: none;
}

.list-block__view-btn:focus:not(:focus-visible),
.list-block__search-clear:focus:not(:focus-visible),
.list-block__btn:focus:not(:focus-visible),
.list-block__empty-clear:focus:not(:focus-visible),
.list-block__page-btn:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.list-block__page-btn:disabled {
  color: rgba(229, 125, 32, 0.38);
  border-color: rgba(229, 125, 32, 0.22);
  background: transparent;
  box-shadow: none;
  cursor: not-allowed;
}

.list-block__page-btn--arrow {
  min-width: 2.5rem;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 991px) {
  .list-block--layout-list .list-block__card {
    flex-direction: column;
    align-items: stretch;
  }

  .list-block--layout-list .list-block__card-footer {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .list-block__card,
  .list-block__btn,
  .list-block__btn-icon,
  .list-block__view-btn,
  .list-block__view-indicator,
  .list-block__page-btn,
  .list-block__empty-clear,
  .list-block__search-input,
  .list-block__list,
  .list-block__status,
  .list-block__results {
    transition: none;
  }

  .list-block--view-switching .list-block__list {
    opacity: 1;
    transform: none;
  }

  .list-block__search-spinner {
    animation: none;
  }
}

/* Flexible content block — mobile layout */
@media (max-width: 767px) {
  .flex-content-block .row {
    row-gap: 1.25rem;
  }

  .flex-content-block .col-12.col-md-6.g-mb-50 {
    margin-bottom: 0 !important;
  }

  .flex-content-block .cta-block__btn {
    width: 100%;
    min-width: 0;
  }
}

/* Data table block */
.data-table-block {
  padding: 2rem 0;
  --data-table-accent: #e57d20;
  --data-table-accent-hover: #cf7119;
  --data-table-accent-border: rgba(229, 125, 32, 0.42);
  --data-table-accent-soft: rgba(229, 125, 32, 0.08);
  --data-table-text: #111;
  --data-table-sheet-border: #bdbdbd;
  --data-table-sheet-header: #ececec;
  --data-table-sheet-letters: #f5f5f5;
  --data-table-sheet-zebra: #fafafa;
}

@media (min-width: 768px) {
  .data-table-block {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
  }
}

@media (min-width: 992px) {
  .data-table-block {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }
}

.data-table-block--bg-white { background-color: #fff; }
.data-table-block--bg-warm { background-color: rgba(229, 125, 32, 0.08); }
.data-table-block--bg-cream { background-color: #faf8f5; }
.data-table-block--bg-gray { background-color: #f4f4f5; }
.data-table-block--bg-mint { background-color: #f0faf6; }
.data-table-block--bg-sky { background-color: #eef6fc; }
.data-table-block--bg-lavender { background-color: #f5f3ff; }
.data-table-block--bg-blush { background-color: #fdf2f4; }

.data-table-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.data-table-block__title {
  margin: 0 0 0.75rem;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  line-height: 1.2;
}

.data-table-block__subtitle {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}

.data-table-block__alert {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  color: #7a2e0f;
  background: rgba(229, 125, 32, 0.12);
  border: 1px solid var(--data-table-accent-border);
  border-radius: 0.5rem;
}

.data-table-block__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}

.data-table-block__htmx-form {
  display: none;
}

.data-table-block__search-wrap {
  position: relative;
  flex: 1 1 14rem;
  min-width: 0;
  max-width: 28rem;
  display: flex;
  align-items: center;
}

.data-table-block__search-label {
  position: absolute;
  left: 1rem;
  display: flex;
  color: var(--data-table-accent);
  pointer-events: none;
}

.data-table-block__search-input {
  width: 100%;
  padding: 0.85rem 2.75rem;
  font-size: 1rem;
  color: var(--data-table-text);
  background: #fff;
  border: 1px solid var(--data-table-sheet-border);
  border-radius: 999px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.data-table-block__search-input:focus {
  outline: none;
  border-color: var(--data-table-accent);
  box-shadow: 0 0 0 3px rgba(229, 125, 32, 0.2);
}

.data-table-block__search-clear:focus {
  outline: none;
}

.data-table-block__search-clear:focus-visible {
  outline: 2px solid var(--data-table-accent);
  outline-offset: 2px;
}

.data-table-block__search-wrap--loading .data-table-block__search-input {
  padding-right: 3.25rem;
}

.data-table-block__search-spinner {
  position: absolute;
  right: 2.75rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(229, 125, 32, 0.25);
  border-top-color: var(--data-table-accent);
  border-radius: 50%;
  animation: data-table-spin 0.65s linear infinite;
}

@keyframes data-table-spin {
  to { transform: rotate(360deg); }
}

.data-table-block__search-clear {
  position: absolute;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--data-table-accent);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.data-table-block__search-clear:hover {
  color: var(--data-table-accent-hover);
  background: var(--data-table-accent-soft);
}

.data-table-block__download {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--data-table-accent);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--data-table-accent-border);
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.data-table-block__download:hover {
  color: var(--data-table-accent-hover);
  background: var(--data-table-accent-soft);
  border-color: var(--data-table-accent);
  text-decoration: none;
}

.data-table-block__results--loading {
  opacity: 0.72;
  pointer-events: none;
}

.data-table-block__status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--data-table-text);
  background: #fff;
  border: 1px solid var(--data-table-sheet-border);
  border-bottom: 0;
  border-radius: 0.5rem 0.5rem 0 0;
}

.data-table-block__status-hint {
  color: #444;
  font-size: 0.8125rem;
}

.data-table-block__status-page {
  color: var(--data-table-accent-hover);
  font-weight: 700;
}

.data-table-block__sheet {
  border: 1px solid var(--data-table-sheet-border);
  border-top: 0;
  border-radius: 0 0 0.5rem 0.5rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.06);
}

.data-table-block__table-wrap {
  overflow: auto;
  max-height: 32rem;
  -webkit-overflow-scrolling: touch;
}

.data-table-block__table {
  width: 100%;
  min-width: 36rem;
  margin: 0;
  border-collapse: collapse;
  font-size: 0.9375rem;
  color: var(--data-table-text);
}

.data-table-block__letters-row th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-align: center;
  color: #444;
  background: var(--data-table-sheet-letters);
  border: 1px solid var(--data-table-sheet-border);
}

.data-table-block__header-row th {
  position: sticky;
  top: 1.55rem;
  z-index: 3;
  padding: 0;
  height: 1px;
  vertical-align: top;
  background: var(--data-table-sheet-header);
  border: 1px solid var(--data-table-sheet-border);
}

.data-table-block__sort-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.75rem;
  height: 100%;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--data-table-text);
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.data-table-block__sort-btn:hover,
.data-table-block__sort-btn:focus-visible {
  background: rgba(255, 255, 255, 0.65);
  outline: none;
}

.data-table-block__sort-btn:focus-visible {
  box-shadow: inset 0 0 0 2px var(--data-table-accent);
}

.data-table-block__sort-btn--active {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 -2px 0 var(--data-table-accent);
}

.data-table-block__sort-label {
  line-height: 1.3;
}

.data-table-block__sort-icon::before {
  content: "↕";
  font-size: 0.75rem;
  color: #666;
}

.data-table-block__sort-btn--active.data-table-block__sort-btn--asc .data-table-block__sort-icon::before {
  content: "↑";
  color: var(--data-table-accent);
}

.data-table-block__sort-btn--active.data-table-block__sort-btn--desc .data-table-block__sort-icon::before {
  content: "↓";
  color: var(--data-table-accent);
}

.data-table-block__table tbody td {
  padding: 0.7rem 0.75rem;
  vertical-align: top;
  color: var(--data-table-text);
  font-weight: 500;
  line-height: 1.45;
  border: 1px solid var(--data-table-sheet-border);
  background: #fff;
}

.data-table-block__table tbody tr:nth-child(even) td {
  background: var(--data-table-sheet-zebra);
}

.data-table-block__row {
  cursor: pointer;
  transition: background-color 0.12s ease;
}

.data-table-block__row:hover td,
.data-table-block__row:focus-visible td {
  background: var(--data-table-accent-soft) !important;
}

.data-table-block__row:focus-visible {
  outline: none;
}

.data-table-block__row:focus-visible td:first-child {
  box-shadow: inset 3px 0 0 var(--data-table-accent);
}

.data-table-block__highlight {
  padding: 0.05em 0.15em;
  color: var(--data-table-text);
  background: rgba(229, 125, 32, 0.28);
  border-radius: 0.15em;
}

.data-table-block__empty {
  padding: 1.5rem;
  text-align: center;
}

.data-table-block__empty-text {
  margin: 0 0 1rem;
  color: rgba(17, 17, 17, 0.72);
}

.data-table-block__empty-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  color: var(--data-table-accent);
  background: #fff;
  border: 1px solid var(--data-table-accent-border);
  border-radius: 999px;
  cursor: pointer;
}

.data-table-block__empty-clear:hover {
  color: var(--data-table-accent-hover);
  background: var(--data-table-accent-soft);
}

.data-table-block__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.data-table-block__page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  color: var(--data-table-accent);
  background: #fff;
  border: 1px solid var(--data-table-accent-border);
  border-radius: 0.5rem;
  cursor: pointer;
}

.data-table-block__page-btn:hover:not(:disabled) {
  color: var(--data-table-accent-hover);
  background: var(--data-table-accent-soft);
}

.data-table-block__page-btn--active {
  color: #fff;
  background: var(--data-table-accent);
  border-color: var(--data-table-accent);
}

.data-table-block__page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Row detail modal */
.data-table-block__modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.data-table-block__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
}

.data-table-block__modal-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 56rem);
  max-height: min(90vh, 48rem);
  overflow: hidden;
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.22);
}

.data-table-block__modal-hero {
  position: relative;
  padding: 1.75rem 2rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(229, 125, 32, 0.14) 0%,
    rgba(229, 125, 32, 0.04) 55%,
    #fff 100%
  );
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.data-table-block__modal-hero-content {
  max-width: calc(100% - 2.5rem);
}

.data-table-block__modal-badge {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--data-table-accent-hover);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--data-table-accent-border);
  border-radius: 999px;
}

.data-table-block__modal-title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--data-table-text);
  word-break: break-word;
}

.data-table-block__modal-subtitle {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}

.data-table-block__modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  font-size: 1.35rem;
  line-height: 1;
  color: #444;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--data-table-sheet-border);
  border-radius: 999px;
  cursor: pointer;
}

.data-table-block__modal-close:hover {
  color: var(--data-table-accent-hover);
  background: #fff;
  border-color: var(--data-table-accent-border);
}

.data-table-block__modal-close:focus {
  outline: none;
}

.data-table-block__modal-close:focus-visible {
  outline: 2px solid var(--data-table-accent);
  outline-offset: 2px;
  border-color: var(--data-table-accent);
}

.data-table-block__modal-body {
  overflow: auto;
  padding: 1.25rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.data-table-block__modal-group {
  margin: 0;
}

.data-table-block__modal-section-title {
  margin: 0 0 0.65rem;
  padding-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  border-bottom: 2px solid var(--data-table-accent-soft);
}

.data-table-block__profile-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  border: 1px solid var(--data-table-sheet-border);
  border-radius: 0.65rem;
  overflow: hidden;
  background: #fff;
}

.data-table-block__profile-fact {
  display: grid;
  grid-template-columns: minmax(9rem, 34%) 1fr;
  gap: 0.75rem 1.25rem;
  align-items: start;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--data-table-sheet-border);
  background: #fff;
}

.data-table-block__profile-fact:last-child {
  border-bottom: 0;
}

.data-table-block__profile-fact:nth-child(even) {
  background: #fafafa;
}

.data-table-block__profile-label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.45;
  color: #444;
}

.data-table-block__profile-value {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--data-table-text);
  white-space: pre-wrap;
  word-break: break-word;
}

.data-table-block__modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 0.85rem 2rem 1.5rem;
  border-top: 1px solid var(--data-table-sheet-border);
  background: #fcfcfc;
}

.data-table-block__modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1.35rem;
  font-weight: 600;
  color: #fff;
  background: var(--data-table-accent);
  border: 1px solid var(--data-table-accent);
  border-radius: 999px;
  cursor: pointer;
}

.data-table-block__modal-btn:hover {
  background: var(--data-table-accent-hover);
  border-color: var(--data-table-accent-hover);
}

.data-table-block__modal-btn:focus {
  outline: none;
}

.data-table-block__modal-btn:focus-visible {
  outline: 2px solid var(--data-table-accent);
  outline-offset: 2px;
}

body.data-table-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .data-table-block__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .data-table-block__search-wrap {
    max-width: none;
  }

  .data-table-block__download {
    justify-content: center;
  }

  .data-table-block__table thead th,
  .data-table-block__table tbody td {
    padding: 0.6rem 0.65rem;
    font-size: 0.875rem;
  }

  .data-table-block__header-row th {
    top: 1.35rem;
  }

  .data-table-block__status {
    flex-direction: column;
    align-items: flex-start;
  }

  .data-table-block__modal {
    align-items: flex-end;
    padding: 0;
  }

  .data-table-block__modal-dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 1rem 1rem 0 0;
  }

  .data-table-block__modal-hero,
  .data-table-block__modal-body,
  .data-table-block__modal-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .data-table-block__profile-facts {
    grid-template-columns: 1fr;
  }

  .data-table-block__profile-fact {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .data-table-block__sort-btn {
    min-height: 3rem;
    padding: 0.75rem 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .data-table-block__search-spinner {
    animation: none;
  }
}

/* Rich text content block */
.richtext-block {
  --richtext-accent: #e57d20;
  --richtext-accent-hover: #cf7119;
  --richtext-text: #111;
  --richtext-muted: #404040;
  --richtext-border: rgba(17, 17, 17, 0.1);
  --richtext-radius: 1rem;
  --richtext-scale: 1;
  --richtext-body-base: 1.125rem;
  --richtext-body-line-height: 1.72;
  --richtext-body-tracking: -0.012em;
  --richtext-heading-tracking: -0.028em;
  --richtext-heading-weight: 600;
  --richtext-title-weight: 600;
  --richtext-body-font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --richtext-heading-font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --richtext-section-padding: clamp(2.25rem, 5.5vw, 3.5rem);
  margin-top: 0;
  margin-bottom: 0;
  padding-block: var(--richtext-section-padding);
  padding-inline: 0;
  box-sizing: border-box;
}

.richtext-block.stream-block-mt {
  margin-top: 2.5rem !important;
}

.richtext-block.stream-block-mb {
  margin-bottom: 2.5rem !important;
}

@media (min-width: 768px) {
  .richtext-block.stream-block-mt {
    margin-top: 4rem !important;
  }

  .richtext-block.stream-block-mb {
    margin-bottom: 4rem !important;
  }
}

@media (min-width: 992px) {
  .richtext-block.stream-block-mt {
    margin-top: 7.14286rem !important;
  }

  .richtext-block.stream-block-mb {
    margin-bottom: 7.14286rem !important;
  }
}

.richtext-block--size-medium {
  --richtext-scale: 1.1;
}

.richtext-block--size-large {
  --richtext-scale: 1.22;
}

.richtext-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.richtext-block__container--comfortable {
  max-width: min(100%, 42rem);
}

.richtext-block__container--wide {
  max-width: min(100%, 56rem);
}

@media (min-width: 768px) {
  .richtext-block__container--comfortable {
    max-width: min(100%, 48rem);
  }

  .richtext-block__container--wide {
    max-width: min(100%, 64rem);
  }
}

@media (min-width: 1200px) {
  .richtext-block__container--comfortable {
    max-width: min(100%, 52rem);
  }

  .richtext-block__container--wide {
    max-width: min(100%, 72rem);
  }
}

.richtext-block:not(.richtext-block--section-white) {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.richtext-block--section-white {
  background-color: transparent;
}

.richtext-block--section-warm {
  background-color: rgba(229, 125, 32, 0.08);
}

.richtext-block--section-cream {
  background-color: #faf8f5;
}

.richtext-block--section-gray {
  background-color: #f4f4f5;
}

.richtext-block--section-mint {
  background-color: #f0faf6;
}

.richtext-block--section-sky {
  background-color: #eef6fc;
}

.richtext-block--section-lavender {
  background-color: #f5f3ff;
}

.richtext-block--section-blush {
  background-color: #fdf2f4;
}

.richtext-block--section-gradient-warm {
  background: linear-gradient(180deg, rgba(229, 125, 32, 0.1) 0%, rgba(250, 248, 245, 0.65) 45%, #fff 100%);
}

.richtext-block--section-gradient-sky {
  background: linear-gradient(180deg, #eef6fc 0%, #f4faff 55%, #fff 100%);
}

.richtext-block--section-gradient-cream {
  background: linear-gradient(180deg, #faf8f5 0%, #fff9f3 50%, #fff 100%);
}

.richtext-block--section-gradient-lavender {
  background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 48%, #faf8f5 100%);
}

.richtext-block--section-gradient-mint {
  background: linear-gradient(180deg, #f0faf6 0%, #f7fcfa 52%, #fff 100%);
}

.richtext-block--section-gradient-blush {
  background: linear-gradient(180deg, #fdf2f4 0%, #fef8f6 50%, #fff 100%);
}

.richtext-block--section-gradient-peach {
  background: linear-gradient(180deg, rgba(255, 244, 229, 0.85) 0%, rgba(255, 250, 245, 0.55) 48%, #fff 100%);
}

.richtext-block--section-gradient-dusk {
  background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 55%, #fff 100%);
}

.richtext-block--content-matches-section .richtext-block__surface.richtext-block__card {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

/* Content area backgrounds (card fill or prose column) */
.richtext-block__surface.richtext-block--content-white {
  background-color: #fff;
}

.richtext-block__surface.richtext-block--content-warm {
  background-color: rgba(229, 125, 32, 0.08);
}

.richtext-block__surface.richtext-block--content-cream {
  background-color: #faf8f5;
}

.richtext-block__surface.richtext-block--content-gray {
  background-color: #f4f4f5;
}

.richtext-block__surface.richtext-block--content-mint {
  background-color: #f0faf6;
}

.richtext-block__surface.richtext-block--content-sky {
  background-color: #eef6fc;
}

.richtext-block__surface.richtext-block--content-lavender {
  background-color: #f5f3ff;
}

.richtext-block__surface.richtext-block--content-blush {
  background-color: #fdf2f4;
}

.richtext-block__surface.richtext-block--content-gradient-warm {
  background: linear-gradient(180deg, rgba(229, 125, 32, 0.1) 0%, rgba(250, 248, 245, 0.65) 45%, #fff 100%);
}

.richtext-block__surface.richtext-block--content-gradient-sky {
  background: linear-gradient(180deg, #eef6fc 0%, #f4faff 55%, #fff 100%);
}

.richtext-block__surface.richtext-block--content-gradient-cream {
  background: linear-gradient(180deg, #faf8f5 0%, #fff9f3 50%, #fff 100%);
}

.richtext-block__surface.richtext-block--content-gradient-lavender {
  background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 48%, #faf8f5 100%);
}

.richtext-block__surface.richtext-block--content-gradient-mint {
  background: linear-gradient(180deg, #f0faf6 0%, #f7fcfa 52%, #fff 100%);
}

.richtext-block__surface.richtext-block--content-gradient-blush {
  background: linear-gradient(180deg, #fdf2f4 0%, #fef8f6 50%, #fff 100%);
}

.richtext-block__surface.richtext-block--content-gradient-peach {
  background: linear-gradient(180deg, rgba(255, 244, 229, 0.85) 0%, rgba(255, 250, 245, 0.55) 48%, #fff 100%);
}

.richtext-block__surface.richtext-block--content-gradient-dusk {
  background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 55%, #fff 100%);
}

.richtext-block--prose .richtext-block__surface.richtext-block--content-white {
  background-color: transparent;
}

.richtext-block--prose .richtext-block__surface:not(.richtext-block--content-white) {
  padding: clamp(1.4rem, 3.5vw, 2.25rem);
  border-radius: var(--richtext-radius);
}

/* Typography presets */
.richtext-block--font-outfit {
  --richtext-body-font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --richtext-heading-font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --richtext-heading-tracking: -0.028em;
  --richtext-body-tracking: -0.012em;
  --richtext-body-base: 1.125rem;
  --richtext-body-line-height: 1.72;
  --richtext-heading-weight: 600;
  --richtext-title-weight: 600;
  --richtext-text: #111;
}

.richtext-block--font-inter {
  --richtext-body-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --richtext-heading-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --richtext-heading-tracking: -0.024em;
  --richtext-body-tracking: -0.011em;
  --richtext-body-base: 1.0625rem;
  --richtext-body-line-height: 1.74;
  --richtext-heading-weight: 600;
  --richtext-title-weight: 600;
  --richtext-text: #111;
}

.richtext-block--font-source-sans {
  --richtext-body-font: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --richtext-heading-font: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --richtext-heading-tracking: -0.02em;
  --richtext-body-tracking: -0.006em;
  --richtext-body-base: 1.125rem;
  --richtext-body-line-height: 1.76;
  --richtext-heading-weight: 600;
  --richtext-title-weight: 600;
  --richtext-text: #121212;
}

.richtext-block--font-dm-sans {
  --richtext-body-font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --richtext-heading-font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --richtext-heading-tracking: -0.022em;
  --richtext-body-tracking: -0.008em;
  --richtext-body-base: 1.125rem;
  --richtext-body-line-height: 1.75;
  --richtext-heading-weight: 600;
  --richtext-title-weight: 600;
  --richtext-text: #121212;
}

.richtext-block--font-editorial {
  --richtext-body-font: "Alegreya", Georgia, "Times New Roman", serif;
  --richtext-heading-font: "Vollkorn", Georgia, "Times New Roman", serif;
  --richtext-heading-tracking: -0.015em;
  --richtext-body-tracking: 0.006em;
  --richtext-body-base: 1.1875rem;
  --richtext-body-line-height: 1.86;
  --richtext-heading-weight: 700;
  --richtext-title-weight: 700;
}

.richtext-block--font-literary {
  --richtext-body-font: "Lora", Georgia, "Times New Roman", serif;
  --richtext-heading-font: "Playfair Display", Georgia, "Times New Roman", serif;
  --richtext-heading-tracking: -0.02em;
  --richtext-body-base: 1.1875rem;
  --richtext-body-line-height: 1.88;
  --richtext-heading-weight: 700;
  --richtext-title-weight: 700;
  --richtext-text: #161616;
}

.richtext-block--font-long-form {
  --richtext-body-font: "Literata", Georgia, "Times New Roman", serif;
  --richtext-heading-font: "Literata", Georgia, "Times New Roman", serif;
  --richtext-heading-tracking: -0.012em;
  --richtext-body-base: 1.2rem;
  --richtext-body-line-height: 1.92;
  --richtext-heading-weight: 700;
  --richtext-title-weight: 700;
  --richtext-text: #151515;
}

.richtext-block--font-modern-magazine {
  --richtext-body-font: "Source Serif 4", Georgia, "Times New Roman", serif;
  --richtext-heading-font: "Fraunces", Georgia, "Times New Roman", serif;
  --richtext-heading-tracking: -0.018em;
  --richtext-body-base: 1.1875rem;
  --richtext-body-line-height: 1.88;
  --richtext-heading-weight: 700;
  --richtext-title-weight: 700;
  --richtext-text: #121212;
}

.richtext-block--font-merriweather {
  --richtext-body-font: "Merriweather", Georgia, "Times New Roman", serif;
  --richtext-heading-font: "Merriweather", Georgia, "Times New Roman", serif;
  --richtext-heading-tracking: -0.01em;
  --richtext-body-base: 1.125rem;
  --richtext-body-line-height: 1.9;
  --richtext-heading-weight: 700;
  --richtext-title-weight: 700;
  --richtext-text: #1a1a1a;
}

.richtext-block--font-newspaper-classic {
  --richtext-body-font: "Newsreader", Georgia, "Times New Roman", serif;
  --richtext-heading-font: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --richtext-heading-tracking: -0.02em;
  --richtext-body-base: 1.1875rem;
  --richtext-body-line-height: 1.84;
  --richtext-heading-weight: 700;
  --richtext-title-weight: 700;
  --richtext-text: #1a1a1a;
}

.richtext-block--font-newspaper-vintage {
  --richtext-body-font: "Old Standard TT", Georgia, "Times New Roman", serif;
  --richtext-heading-font: "Old Standard TT", Georgia, "Times New Roman", serif;
  --richtext-heading-tracking: 0.01em;
  --richtext-body-base: 1.125rem;
  --richtext-body-line-height: 1.82;
  --richtext-heading-weight: 700;
  --richtext-title-weight: 700;
  --richtext-text: #1c1c1c;
}

.richtext-block__header {
  margin: 0;
}

.richtext-block__header--center {
  text-align: center;
}

.richtext-block__title {
  margin: 0;
  font-family: var(--richtext-heading-font, "Outfit", system-ui, sans-serif);
  font-size: clamp(
    calc(2rem * var(--richtext-scale, 1)),
    calc(3.75vw * var(--richtext-scale, 1)),
    calc(2.875rem * var(--richtext-scale, 1))
  );
  font-weight: var(--richtext-title-weight, 600);
  line-height: 1.12;
  letter-spacing: var(--richtext-heading-tracking, -0.028em);
  color: var(--richtext-text, #111);
  text-wrap: balance;
}

.richtext-block__surface {
  min-width: 0;
}

.richtext-block__card {
  padding: clamp(1.85rem, 5vw, 3rem);
  border: 1px solid var(--richtext-border);
  border-radius: var(--richtext-radius);
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.06);
}

.richtext-block__card.g-brd {
  border-color: var(--richtext-border);
}

.richtext-block__card.g-brd-1.g-brd-main,
.richtext-block__card.g-brd-2.g-brd-main,
.richtext-block__card.g-brd-3.g-brd-main,
.richtext-block__card.g-brd-4.g-brd-main {
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.richtext-block__card.g-rounded-10 {
  border-radius: 0.625rem;
}

.richtext-block__card.g-rounded-15 {
  border-radius: 0.9375rem;
}

.richtext-block__card.g-rounded-20 {
  border-radius: 1.25rem;
}

.richtext-block__content {
  color: var(--richtext-text, #111);
  font-family: var(--richtext-body-font, "Outfit", system-ui, sans-serif);
  font-size: calc(var(--richtext-body-base, 1.125rem) * var(--richtext-scale, 1));
  line-height: var(--richtext-body-line-height, 1.72);
  font-weight: 400;
  letter-spacing: var(--richtext-body-tracking, -0.012em);
  text-wrap: pretty;
}

.richtext-block__content > :first-child {
  margin-top: 0;
}

.richtext-block__content > :last-child {
  margin-bottom: 0;
}

.richtext-block__content p {
  margin: 0 0 calc(1.3rem * var(--richtext-scale, 1));
  color: var(--richtext-text);
  font-size: calc(var(--richtext-body-base, 1.125rem) * var(--richtext-scale, 1));
  line-height: var(--richtext-body-line-height, 1.72);
}

.richtext-block__content p:last-child {
  margin-bottom: 0;
}

.richtext-block__content h1,
.richtext-block__content h2,
.richtext-block__content h3,
.richtext-block__content h4,
.richtext-block__content h5,
.richtext-block__content h6 {
  margin: calc(2.15rem * var(--richtext-scale, 1)) 0 calc(0.85rem * var(--richtext-scale, 1));
  font-family: var(--richtext-heading-font, "Outfit", system-ui, sans-serif);
  font-weight: var(--richtext-heading-weight, 600);
  line-height: 1.22;
  color: var(--richtext-text, #111);
  letter-spacing: var(--richtext-heading-tracking, -0.028em);
  text-wrap: balance;
}

.richtext-block__content h1:first-child,
.richtext-block__content h2:first-child,
.richtext-block__content h3:first-child,
.richtext-block__content h4:first-child,
.richtext-block__content h5:first-child,
.richtext-block__content h6:first-child {
  margin-top: 0;
}

.richtext-block__content h1 {
  font-size: clamp(
    calc(1.875rem * var(--richtext-scale, 1)),
    calc(3.4vw * var(--richtext-scale, 1)),
    calc(2.375rem * var(--richtext-scale, 1))
  );
}

.richtext-block__content h2 {
  font-size: clamp(
    calc(1.625rem * var(--richtext-scale, 1)),
    calc(3vw * var(--richtext-scale, 1)),
    calc(2.0625rem * var(--richtext-scale, 1))
  );
}

.richtext-block__content h3 {
  font-size: clamp(
    calc(1.4375rem * var(--richtext-scale, 1)),
    calc(2.65vw * var(--richtext-scale, 1)),
    calc(1.75rem * var(--richtext-scale, 1))
  );
}

.richtext-block__content h4 {
  font-size: clamp(
    calc(1.2rem * var(--richtext-scale, 1)),
    calc(2.2vw * var(--richtext-scale, 1)),
    calc(1.375rem * var(--richtext-scale, 1))
  );
}

.richtext-block__content h5 {
  font-size: clamp(
    calc(1.0625rem * var(--richtext-scale, 1)),
    calc(2vw * var(--richtext-scale, 1)),
    calc(1.1875rem * var(--richtext-scale, 1))
  );
  font-weight: 600;
}

.richtext-block__content h6 {
  font-size: calc(0.9375rem * var(--richtext-scale, 1));
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.richtext-block__content blockquote {
  margin: calc(1.65rem * var(--richtext-scale, 1)) 0;
  padding: calc(1.1rem * var(--richtext-scale, 1)) calc(1.2rem * var(--richtext-scale, 1))
    calc(1.1rem * var(--richtext-scale, 1)) calc(1.35rem * var(--richtext-scale, 1));
  border-left: 4px solid var(--richtext-accent);
  border-radius: 0 0.65rem 0.65rem 0;
  background: rgba(229, 125, 32, 0.07);
  color: var(--richtext-muted);
  font-size: calc(var(--richtext-body-base, 1.125rem) * var(--richtext-scale, 1));
  line-height: var(--richtext-body-line-height, 1.72);
  font-style: italic;
}

.richtext-block__content blockquote > :last-child {
  margin-bottom: 0;
}

.richtext-block__content hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.richtext-block__content code {
  padding: 0.12em 0.38em;
  border-radius: 0.3rem;
  background: rgba(17, 17, 17, 0.06);
  color: #1f2937;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.88em;
  font-style: normal;
}

.richtext-block__content pre {
  margin: 1.35rem 0;
  padding: 1rem 1.1rem;
  overflow-x: auto;
  border-radius: 0.65rem;
  border: 1px solid var(--richtext-border);
  background: #f8fafc;
}

.richtext-block__content pre code {
  padding: 0;
  background: transparent;
}

.richtext-block__content s,
.richtext-block__content del {
  text-decoration: line-through;
  color: var(--richtext-muted);
}

.richtext-block__content sub,
.richtext-block__content sup {
  font-size: 0.72em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.richtext-block__content sup {
  top: -0.45em;
}

.richtext-block__content sub {
  bottom: -0.15em;
}

.richtext-block__content strong,
.richtext-block__content b {
  font-weight: 700;
  color: var(--richtext-text);
}

.richtext-block__content em,
.richtext-block__content i {
  font-style: italic;
}

/* Editorial links: inherit surrounding typography; underline signals clickability */
.richtext-block__content a {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  text-decoration-color: color-mix(in srgb, currentColor 42%, transparent);
  transition: text-decoration-color 0.15s ease, text-decoration-thickness 0.15s ease;
}

.richtext-block__content :is(h1, h2, h3, h4, h5, h6) a,
.richtext-block__content :is(h1, h2, h3, h4, h5, h6) a :is(em, i, strong, b, span) {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.richtext-block__content blockquote a {
  color: inherit;
}

.richtext-block__content a[href$=".pdf"],
.richtext-block__content a[href$=".doc"],
.richtext-block__content a[href$=".docx"],
.richtext-block__content a[href*="/documents/"] {
  text-decoration-style: dashed;
}

.richtext-block__content a:hover,
.richtext-block__content a:focus-visible {
  color: inherit;
  text-decoration-thickness: 2px;
  text-decoration-color: color-mix(in srgb, currentColor 72%, transparent);
}

.richtext-block__content a:focus {
  outline: none;
}

.richtext-block__content a:focus-visible {
  outline: 2px solid color-mix(in srgb, currentColor 55%, transparent);
  outline-offset: 3px;
  border-radius: 0.12rem;
}

.richtext-block__content ul,
.richtext-block__content ol {
  margin: 0 0 calc(1.3rem * var(--richtext-scale, 1));
  padding-left: calc(1.5rem * var(--richtext-scale, 1));
  color: var(--richtext-text);
}

.richtext-block__content ul ul,
.richtext-block__content ul ol,
.richtext-block__content ol ul,
.richtext-block__content ol ol {
  margin-top: 0.45rem;
  margin-bottom: 0.45rem;
}

.richtext-block__content li {
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
  font-size: calc(var(--richtext-body-base, 1.125rem) * var(--richtext-scale, 1));
  line-height: var(--richtext-body-line-height, 1.86);
}

.richtext-block__content li:last-child {
  margin-bottom: 0;
}

.richtext-block__content li::marker {
  color: color-mix(in srgb, var(--richtext-text) 55%, transparent);
  font-weight: 600;
}

.richtext-block__content figure {
  margin: 1.65rem 0;
}

.richtext-block__content .responsive-object,
.richtext-block__content iframe,
.richtext-block__content embed {
  display: block;
  max-width: 100%;
  margin: 1.5rem auto;
  border: 0;
  border-radius: 0.65rem;
  overflow: hidden;
}

.richtext-block__content .responsive-object {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.richtext-block__content .responsive-object iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.richtext-block__content img,
.richtext-block__content figure img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0.65rem;
  border: 1px solid var(--richtext-border);
  box-shadow: 0 4px 16px rgba(17, 17, 17, 0.08);
}

.richtext-block__content figure img {
  width: 100%;
}

.richtext-block__content figcaption {
  margin-top: 0.55rem;
  font-size: calc(0.875rem * var(--richtext-scale, 1));
  line-height: 1.5;
  color: var(--richtext-muted);
  text-align: center;
}

/* Wagtail inline image formats */
.richtext-block__content .richtext-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 0.65rem;
  border: 1px solid var(--richtext-border);
  box-shadow: 0 4px 16px rgba(17, 17, 17, 0.08);
}

.richtext-block__content .richtext-image.full-width,
.richtext-block__content img.full-width {
  width: 100%;
}

.richtext-block__content .richtext-image.left,
.richtext-block__content img.left {
  float: left;
  max-width: min(100%, 20rem);
  margin: 0.35rem 1.25rem 1rem 0;
}

.richtext-block__content .richtext-image.right,
.richtext-block__content img.right {
  float: right;
  max-width: min(100%, 20rem);
  margin: 0.35rem 0 1rem 1.25rem;
}

.richtext-block__content::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 767px) {
  .richtext-block__card {
    padding: 1.25rem 1.15rem;
  }

  .richtext-block__content {
    font-size: calc(
      max(1.0625rem, calc(var(--richtext-body-base, 1.125rem) - 0.0625rem)) *
        var(--richtext-scale, 1)
    );
    line-height: var(--richtext-body-line-height, 1.72);
  }

  .richtext-block__content .richtext-image.left,
  .richtext-block__content .richtext-image.right,
  .richtext-block__content img.left,
  .richtext-block__content img.right {
    float: none;
    max-width: 100%;
    margin: 1.25rem auto;
  }
}

/* Rich text: prose layout (no inner card chrome) */
.richtext-block--prose {
  --richtext-body-base: 1.1875rem;
  --richtext-body-line-height: 1.78;
}

.richtext-block--prose.richtext-block--section-white {
  background: transparent;
}

.richtext-block--prose.richtext-block--section-white .richtext-block__header {
  padding-top: 0;
}

.richtext-block--prose .richtext-block__container {
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

.richtext-block--prose .richtext-block__content {
  font-size: calc(var(--richtext-body-base, 1.1875rem) * var(--richtext-scale, 1));
  line-height: var(--richtext-body-line-height, 1.78);
}

.richtext-block--prose .richtext-block__content h1 {
  font-size: clamp(
    calc(2rem * var(--richtext-scale, 1)),
    calc(3.75vw * var(--richtext-scale, 1)),
    calc(2.625rem * var(--richtext-scale, 1))
  );
  margin-top: 0;
}

.richtext-block--prose .richtext-block__content h2 {
  margin-top: calc(2.65rem * var(--richtext-scale, 1));
  padding-top: calc(0.35rem * var(--richtext-scale, 1));
  font-size: clamp(
    calc(1.75rem * var(--richtext-scale, 1)),
    calc(3.2vw * var(--richtext-scale, 1)),
    calc(2.1875rem * var(--richtext-scale, 1))
  );
}

.richtext-block--prose .richtext-block__content h2:first-child {
  margin-top: 0;
}

.richtext-block--prose .richtext-block__content p + h2,
.richtext-block--prose .richtext-block__content ul + h2,
.richtext-block--prose .richtext-block__content ol + h2,
.richtext-block--prose .richtext-block__content figure + h2 {
  margin-top: calc(2.85rem * var(--richtext-scale, 1));
}

/* Team block */
.team-block {
  --team-accent: #e57d20;
  --team-accent-hover: #cf7119;
  --team-text: #111827;
  --team-muted: rgba(17, 24, 39, 0.62);
  --team-radius: 1rem;
  --team-photo-ratio: 6 / 7;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.team-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3.5vw, 2.25rem);
}

.team-block__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.team-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--team-text);
  text-wrap: balance;
}

.team-block__accent {
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--team-accent);
}

.team-block__subtitle {
  margin: 0;
  color: var(--team-muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}

.team-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  margin: 0;
  padding: 0;
}

@media (min-width: 480px) {
  .team-block__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.1rem, 2.5vw, 1.5rem);
  }
}

@media (min-width: 768px) {
  .team-block__grid {
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
  }
}

@media (min-width: 992px) {
  .team-block__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .team-block__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.team-block__item {
  min-width: 0;
}

.team-block__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--team-radius);
  background: #fff;
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

.team-block__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0 rgba(229, 125, 32, 0);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
}

.team-block__card:hover,
.team-block__card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(229, 125, 32, 0.28);
  box-shadow:
    0 10px 28px rgba(17, 24, 39, 0.1),
    0 18px 42px rgba(229, 125, 32, 0.08);
}

.team-block__card:hover::before,
.team-block__card:focus-within::before {
  box-shadow: inset 0 0 0 2px rgba(229, 125, 32, 0.14);
}

.team-block__card:active {
  transform: translateY(-2px);
  transition-duration: 0.12s;
}

.team-block__media {
  position: relative;
  aspect-ratio: var(--team-photo-ratio);
  overflow: hidden;
  background: linear-gradient(145deg, #edf2f7 0%, #e2e8f0 100%);
}

.team-block__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0) 55%,
    rgba(17, 24, 39, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.team-block__card:hover .team-block__media::after,
.team-block__card:focus-within .team-block__media::after {
  opacity: 1;
}

.team-block__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-block__card:hover .team-block__image,
.team-block__card:focus-within .team-block__image {
  transform: scale(1.05);
}

.team-block__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.1rem;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  text-align: center;
}

.team-block__name {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--team-text);
}

.team-block__role {
  margin: 0;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.9375rem, 1.8vw, 1rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--team-accent);
  transition: color 0.2s ease;
}

.team-block__card:hover .team-block__role,
.team-block__card:focus-within .team-block__role {
  color: var(--team-accent-hover);
}

.team-block__email {
  margin-top: 0.15rem;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.9375rem, 1.8vw, 1rem);
  line-height: 1.5;
  color: rgba(17, 24, 39, 0.82);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.15s ease;
}

.team-block__email:hover,
.team-block__email:focus-visible {
  color: var(--team-accent-hover);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.team-block__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.5rem 0 0;
  padding: 0.35rem 0 0;
  border-top: 1px solid rgba(17, 24, 39, 0.05);
  width: 100%;
}

.team-block__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  color: var(--team-muted);
  background: #fff;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease,
    transform 0.15s ease;
}

.team-block__social-link:hover,
.team-block__social-link:focus-visible {
  color: var(--team-accent);
  border-color: rgba(229, 125, 32, 0.35);
  background: rgba(229, 125, 32, 0.08);
  transform: translateY(-2px) scale(1.05);
}

.team-block__social-link:focus-visible {
  outline: 2px solid var(--team-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .team-block__item {
    animation: team-block-card-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .team-block__item:nth-child(2) {
    animation-delay: 0.07s;
  }

  .team-block__item:nth-child(3) {
    animation-delay: 0.14s;
  }

  .team-block__item:nth-child(4) {
    animation-delay: 0.21s;
  }

  .team-block__item:nth-child(n + 5) {
    animation-delay: 0.28s;
  }
}

@keyframes team-block-card-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-block__card,
  .team-block__image,
  .team-block__social-link,
  .team-block__role {
    transition: none;
  }

  .team-block__item {
    animation: none;
  }

  .team-block__card:hover,
  .team-block__card:focus-within {
    transform: none;
  }

  .team-block__card:hover .team-block__image,
  .team-block__card:focus-within .team-block__image {
    transform: none;
  }

  .team-block__card:hover .team-block__media::after,
  .team-block__card:focus-within .team-block__media::after {
    opacity: 0;
  }
}

/* News block */
.news-block {
  --news-accent: #e57d20;
  --news-text: #111827;
  --news-muted: rgba(17, 24, 39, 0.68);
  --news-radius: 1rem;
  --news-gap: clamp(1rem, 2vw, 1.5rem);
  --news-edge: clamp(0.75rem, 2vw, 1.5rem);
  --news-arrow-space: clamp(2.75rem, 4.5vw, 3.5rem);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  box-sizing: border-box;
  background: transparent;
}

.news-block__intro {
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.news-block__intro:not(.news-block--bg-white) {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(1.25rem, 3vw, 2rem) var(--news-edge);
  box-sizing: border-box;
}

.news-block__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.news-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
}

.news-block__accent {
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--news-accent);
}

.news-block__subtitle {
  margin: 0;
  color: var(--news-muted);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}

.news-block__carousel-wrap {
  position: relative;
  width: min(calc(100vw - (var(--news-edge) * 2)), 94rem);
  margin-inline: auto;
  padding-inline: var(--news-arrow-space);
  background: transparent;
}

.news-block__carousel {
  position: relative;
  width: 100%;
  background: none !important;
}

.news-block__carousel .slick-list,
.news-block__carousel .slick-track {
  background: transparent;
}

.news-block__carousel .slick-list {
  margin: 0 calc(var(--news-gap) / -2);
  overflow: hidden;
}

.news-block__carousel .slick-slide {
  box-sizing: border-box;
  height: auto;
}

.news-block__carousel .slick-slide > div {
  display: block;
  width: 100%;
}

.news-block__carousel .js-slide {
  display: block;
  margin: 0 calc(var(--news-gap) / 2);
  background: transparent;
  isolation: isolate;
}

.news-block__card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--news-radius);
  overflow: hidden;
  background: #111827;
  border: none;
  box-shadow: none;
  transition: box-shadow 0.4s ease;
}

.news-block__card--linked {
  cursor: pointer;
}

.news-block__card--linked:hover,
.news-block__card--linked:focus-within {
  box-shadow: 0 12px 28px -16px rgba(17, 24, 39, 0.35);
}

.news-block__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-block__card--linked:hover .news-block__media,
.news-block__card--linked:focus-within .news-block__media {
  transform: scale(1.05);
}

.news-block__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 2.2vw, 1.35rem) clamp(1rem, 2.4vw, 1.25rem);
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0) 0%,
    rgba(17, 24, 39, 0.5) 45%,
    rgba(17, 24, 39, 0.9) 100%
  );
  pointer-events: none;
  transition: background 0.4s ease;
}

.news-block__card--linked:hover .news-block__caption,
.news-block__card--linked:focus-within .news-block__caption {
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0) 0%,
    rgba(17, 24, 39, 0.58) 38%,
    rgba(17, 24, 39, 0.95) 100%
  );
}

.news-block__card-title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  font-weight: 600;
  line-height: 1.38;
  color: #fff;
  text-wrap: balance;
}

.news-block__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  min-height: 1.25rem;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    color 0.2s ease;
}

.news-block__card--linked:hover .news-block__cta,
.news-block__card--linked:focus-within .news-block__cta {
  visibility: visible;
  opacity: 1;
  color: #fff;
}

.news-block__link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}

.news-block__link:focus-visible {
  outline: 2px solid var(--news-accent);
  outline-offset: 3px;
}

.news-block__arrow {
  position: absolute !important;
  top: 50% !important;
  z-index: 5;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 2.75rem !important;
  height: 2.75rem !important;
  margin: 0 !important;
  border: 1px solid rgba(17, 24, 39, 0.12) !important;
  border-radius: 999px !important;
  color: var(--news-text) !important;
  background: #fff !important;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.12);
  opacity: 1 !important;
  cursor: pointer;
  transform: translateY(-50%) !important;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.news-block__carousel-wrap .news-block__arrow--prev,
.news-block__carousel > .news-block__arrow--prev {
  left: calc(-1 * var(--news-arrow-space) + 0.5rem) !important;
  right: auto !important;
}

.news-block__carousel-wrap .news-block__arrow--next,
.news-block__carousel > .news-block__arrow--next {
  left: auto !important;
  right: calc(-1 * var(--news-arrow-space) + 0.5rem) !important;
}

.news-block__arrow::before {
  font-family: "FontAwesome";
  font-size: 1.125rem;
  line-height: 1;
}

.news-block__arrow--prev::before {
  content: "\f104";
}

.news-block__arrow--next::before {
  content: "\f105";
}

.news-block__arrow:hover,
.news-block__arrow:focus {
  color: #fff !important;
  border-color: var(--news-accent) !important;
  background: var(--news-accent) !important;
  box-shadow: 0 6px 18px rgba(229, 125, 32, 0.28);
  transform: translateY(-50%) !important;
}

@media (min-width: 768px) {
  .news-block__card {
    min-height: 0;
  }
}

@media (min-width: 1200px) {
  .news-block__card {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .news-block__carousel-wrap {
    padding-inline: 2.25rem;
  }

  .news-block__arrow {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }

  .news-block__cta {
    visibility: visible;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-block__card,
  .news-block__media,
  .news-block__caption,
  .news-block__cta,
  .news-block__arrow {
    transition: none;
  }

  .news-block__card--linked:hover .news-block__media,
  .news-block__card--linked:focus-within .news-block__media {
    transform: none;
  }
}

/* Gallery block */
.gallery-block {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.gallery-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.gallery-block__header {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.gallery-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

.gallery-block__subtitle {
  margin: 0.65rem 0 0;
  color: rgba(17, 24, 39, 0.72);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.6;
}

.gallery-block__grid {
  display: grid;
  gap: 0;
  width: 100%;
}

.gallery-block--size-large .gallery-block__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-block--size-medium .gallery-block__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-block--size-small .gallery-block__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 52rem;
  margin-inline: auto;
}

.gallery-block--size-extra_small .gallery-block__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 36rem;
  margin-inline: auto;
}

@media (min-width: 576px) {
  .gallery-block--size-large .gallery-block__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-block--size-medium .gallery-block__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .gallery-block--size-small .gallery-block__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-block--size-extra_small .gallery-block__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: 40rem;
  }
}

@media (min-width: 992px) {
  .gallery-block--size-extra_small .gallery-block__grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    max-width: 44rem;
  }
}

.gallery-block__item {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f4f4f5;
}

.gallery-block--size-extra_small .gallery-block__item {
  aspect-ratio: 1 / 1;
}

.gallery-block__link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
}

.gallery-block__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-block__link:hover .gallery-block__image,
.gallery-block__link:focus-visible .gallery-block__image {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-block__image {
    transition: none;
  }

  .gallery-block__link:hover .gallery-block__image,
  .gallery-block__link:focus-visible .gallery-block__image {
    transform: none;
  }
}

/* Event block */
section.event-block {
  --event-accent: #e57d20;
  --event-accent-hover: #cf7119;
  --event-accent-soft: rgba(229, 125, 32, 0.1);
  --event-text: #111827;
  --event-muted: rgba(17, 24, 39, 0.62);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.event-block--bg-white {
  background-color: transparent;
}

.event-block--bg-warm {
  background-color: rgba(229, 125, 32, 0.08);
}

.event-block--bg-cream {
  background-color: #faf8f5;
}

.event-block--bg-gray {
  background-color: #f4f4f5;
}

.event-block--bg-mint {
  background-color: #f0faf6;
}

.event-block--bg-sky {
  background-color: #eef6fc;
}

.event-block--bg-lavender {
  background-color: #f5f3ff;
}

.event-block--bg-blush {
  background-color: #fdf2f4;
}

.event-block--bg-gradient-warm {
  background: linear-gradient(
    180deg,
    rgba(229, 125, 32, 0.1) 0%,
    rgba(250, 248, 245, 0.65) 45%,
    #fff 100%
  );
}

.event-block--bg-gradient-sky {
  background: linear-gradient(180deg, #eef6fc 0%, #f4faff 55%, #fff 100%);
}

.event-block--bg-gradient-cream {
  background: linear-gradient(180deg, #faf8f5 0%, #fff9f3 50%, #fff 100%);
}

.event-block--bg-gradient-lavender {
  background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 48%, #faf8f5 100%);
}

.video-block {
  --video-accent: #e57d20;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.video-block--bg-white {
  background-color: transparent;
}

.video-block--bg-warm {
  background-color: rgba(229, 125, 32, 0.08);
}

.video-block--bg-cream {
  background-color: #faf8f5;
}

.video-block--bg-gray {
  background-color: #f4f4f5;
}

.video-block--bg-mint {
  background-color: #f0faf6;
}

.video-block--bg-sky {
  background-color: #eef6fc;
}

.video-block--bg-lavender {
  background-color: #f5f3ff;
}

.video-block--bg-blush {
  background-color: #fdf2f4;
}

.video-block--bg-gradient-warm {
  background: linear-gradient(
    180deg,
    rgba(229, 125, 32, 0.1) 0%,
    rgba(250, 248, 245, 0.65) 45%,
    #fff 100%
  );
}

.video-block--bg-gradient-sky {
  background: linear-gradient(180deg, #eef6fc 0%, #f4faff 55%, #fff 100%);
}

.video-block--bg-gradient-cream {
  background: linear-gradient(180deg, #faf8f5 0%, #fff9f3 50%, #fff 100%);
}

.video-block--bg-gradient-lavender {
  background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 48%, #faf8f5 100%);
}

.video-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.video-block__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 42rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.video-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

.video-block__accent {
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--video-accent);
}

.video-block__player {
  width: 100%;
  margin-inline: auto;
}

.video-block__player--size-normal {
  max-width: clamp(18rem, 92vw, 44rem);
}

.video-block__player--size-big {
  max-width: clamp(20rem, 94vw, 52rem);
}

@media (min-width: 768px) {
  .video-block__player--size-big {
    max-width: clamp(28rem, 88vw, 56rem);
  }
}

.video-block__frame {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #111827;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.06),
    0 12px 32px rgba(17, 24, 39, 0.12);
}

.video-block__frame--border-none {
  border: none;
}

.video-block__frame--border-white {
  border: 2px solid #fff;
}

.video-block__frame--border-orange {
  border: 2px solid #e57d20;
}

.video-block__frame--border-black {
  border: 2px solid #111827;
}

.video-block__frame--border-gray {
  border: 1px solid #e5e7eb;
}

.video-block__frame iframe {
  border: 0;
}

/* Video list block */
.video-list-block {
  --video-list-accent: #e57d20;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.video-list-block .video-list-block__container.container {
  max-width: min(76rem, 100%);
}

.video-list-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.video-list-block__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 42rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.video-list-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

.video-list-block__accent {
  display: block;
  width: 3.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--video-list-accent);
}

.video-list-block__grid {
  display: grid;
  gap: clamp(1.125rem, 2.5vw, 1.75rem);
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .video-list-block--cols-2 .video-list-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-list-block--cols-3 .video-list-block__grid,
  .video-list-block--cols-4 .video-list-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .video-list-block--cols-2 .video-list-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-list-block--cols-3 .video-list-block__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-list-block--cols-4 .video-list-block__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .video-list-block--cols-2.video-list-block--size-big .video-list-block__grid {
    grid-template-columns: 1fr;
  }

  .video-list-block--cols-3.video-list-block--size-big .video-list-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-list-block--cols-4.video-list-block--size-big .video-list-block__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-list-block__frame {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #111827;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.06),
    0 12px 32px rgba(17, 24, 39, 0.12);
}

.video-list-block__facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
}

.video-list-block__facade:focus-visible {
  outline: 2px solid var(--video-list-accent);
  outline-offset: 2px;
}

.video-list-block__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-list-block__play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  transition: transform 0.15s ease;
}

.video-list-block__play-badge svg {
  width: clamp(2rem, 18%, 3.5rem);
  height: auto;
  display: block;
}

.video-list-block--size-big .video-list-block__play-badge svg {
  width: clamp(2.25rem, 16%, 4rem);
}

.video-list-block__facade:hover .video-list-block__play-badge,
.video-list-block__facade:focus-visible .video-list-block__play-badge {
  transform: translate(-50%, -50%) scale(1.06);
}

.video-list-block__modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
  background: rgba(17, 24, 39, 0.78);
  backdrop-filter: blur(4px);
}

.video-list-block__modal-dialog {
  position: relative;
  width: min(56rem, 100%);
}

.video-list-block__modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.video-list-block__modal-close:hover,
.video-list-block__modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.video-list-block__modal-frame {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #111827;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.28),
    0 24px 64px rgba(0, 0, 0, 0.32);
}

.video-list-block__modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.video-list-block-modal-open {
  overflow: hidden;
}

/* Promo video block — Netflix-style full-bleed hero */
.promo-video-block {
  --promo-video-accent: #e57d20;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: #000;
  width: 100vw;
  max-width: 100vw;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Flush stack when CMS margins are off; stream-block-mt/mb remain the only spacing controls. */
.promo-video-block:not(.stream-block-mb) + .richtext-block:not(.stream-block-mt) {
  margin-top: 0;
}

.richtext-block:not(.stream-block-mb) + .promo-video-block:not(.stream-block-mt) {
  margin-top: 0;
}

.richtext-block:not(.stream-block-mb):has(+ .promo-video-block:not(.stream-block-mt)) {
  margin-bottom: 0;
}

.promo-video-block:not(.stream-block-mt) {
  margin-top: 0 !important;
}

.u-header + .promo-video-block:not(.stream-block-mt) {
  margin-top: 0;
}

.promo-video-block--height-compact,
.promo-video-block--height-normal {
  min-height: clamp(24rem, 52vw, 42rem);
}

.promo-video-block--height-big,
.promo-video-block--height-tall {
  min-height: clamp(30rem, 62vw, 52rem);
}

.promo-video-block--height-fullscreen {
  min-height: 100svh;
}

.promo-video-block__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.promo-video-block__iframe,
.promo-video-block__poster,
.promo-video-block__player-host {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: max(100%, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.promo-video-block__poster {
  object-fit: cover;
}

.promo-video-block__player-host iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: max(100%, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.promo-video-block__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.promo-video-block--overlay-none .promo-video-block__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 28%,
    transparent 55%
  );
}

.promo-video-block--overlay-light .promo-video-block__overlay {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 38%, transparent 68%),
    linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, transparent 50%);
}

.promo-video-block--overlay-medium .promo-video-block__overlay {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 32%, transparent 62%),
    linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 42%, transparent 62%);
}

.promo-video-block--overlay-dark .promo-video-block__overlay {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.62) 36%, rgba(0, 0, 0, 0.18) 68%),
    linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 48%, transparent 70%);
}

.promo-video-block__mute {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1.5rem, 14%, 5rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(42, 42, 42, 0.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.promo-video-block__mute:hover,
.promo-video-block__mute:focus-visible {
  background: rgba(42, 42, 42, 0.78);
  border-color: rgba(255, 255, 255, 0.55);
}

.promo-video-block__mute-icon {
  width: 1.125rem;
  height: 1.125rem;
}

.promo-video-block__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100vw, 96rem);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

.promo-video-block--align-center {
  align-items: center;
  justify-content: center;
}

.promo-video-block--align-center .promo-video-block__shell {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.promo-video-block--align-center .promo-video-block__content {
  align-items: center;
  text-align: center;
  max-width: min(42rem, 92vw);
  padding-block: clamp(2rem, 6vh, 3.5rem);
}

.promo-video-block--align-center .promo-video-block__subtitle {
  max-width: 38rem;
}

.promo-video-block--align-center .promo-video-block__actions {
  justify-content: center;
}

.promo-video-block--align-center.promo-video-block--overlay-none .promo-video-block__overlay,
.promo-video-block--align-center.promo-video-block--overlay-light .promo-video-block__overlay,
.promo-video-block--align-center.promo-video-block--overlay-medium .promo-video-block__overlay,
.promo-video-block--align-center.promo-video-block--overlay-dark .promo-video-block__overlay {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 38%, transparent 68%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 62%);
}

.promo-video-block__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 1rem);
  max-width: min(36rem, 90vw);
  padding-block: clamp(2rem, 8vh, 4.5rem) clamp(2.5rem, 12vh, 5.5rem);
  text-align: left;
  color: #fff;
}

.promo-video-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.875rem, 4.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.promo-video-block__subtitle {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34rem;
  text-wrap: balance;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.promo-video-block__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  margin-top: clamp(0.25rem, 1.5vw, 0.75rem);
}

.promo-video-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.625rem;
  padding: 0.55rem 1.35rem;
  border-radius: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    opacity 0.15s ease;
}

.promo-video-block__btn--primary {
  border: 1px solid #fff;
  color: #111;
  background: #fff;
}

.promo-video-block__btn--primary:hover,
.promo-video-block__btn--primary:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.82);
  color: var(--promo-video-accent);
}

.promo-video-block__btn--secondary {
  border: 1px solid rgba(109, 109, 110, 0.7);
  color: #fff;
  background: rgba(109, 109, 110, 0.55);
}

.promo-video-block__btn--secondary:hover,
.promo-video-block__btn--secondary:focus-visible {
  background: rgba(109, 109, 110, 0.35);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--promo-video-accent);
}

.promo-video-block--buttons-rounded .promo-video-block__btn {
  border-radius: 999px;
}

.promo-video-block__btn--outline {
  border: 1px solid rgba(109, 109, 110, 0.7);
  color: #fff;
  background: rgba(109, 109, 110, 0.55);
}

.promo-video-block__btn--solid {
  border: 1px solid #fff;
  color: #111;
  background: #fff;
}

.event-block__container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.event-block__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 52rem;
  text-align: left;
}

.event-block__header--center {
  align-items: center;
  margin-inline: auto;
  text-align: center;
}

.event-block__header--left {
  align-items: flex-start;
  margin-inline: 0;
  text-align: left;
}

.event-block__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

.event-block__accent {
  display: block;
  width: 2.75rem;
  height: 0.2rem;
  border-radius: 999px;
  background: var(--event-accent);
}

.event-block__header--center .event-block__accent {
  margin-inline: auto;
}

.event-block__subtitle {
  margin: 0;
  max-width: 36rem;
  color: var(--event-muted);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.event-block__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0;
}

.event-block__card {
  list-style: none;
}

.event-block__card-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 1px 4px rgba(17, 24, 39, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.event-block__card-inner:has(.event-block__media) {
  grid-template-columns: 5.5rem auto minmax(0, 1fr) auto;
}

.event-block__card-inner:hover {
  border-color: rgba(229, 125, 32, 0.22);
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.05);
}

.event-block__media {
  display: block;
  width: 5.5rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 0.65rem;
  text-decoration: none;
}

.event-block__media-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-block__date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  background: var(--event-accent-soft);
  color: var(--event-text);
  text-align: center;
  line-height: 1.1;
}

.event-block__date-day {
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-block__date-month {
  margin-top: 0.15rem;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-block__date-year {
  margin-top: 0.1rem;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--event-muted);
}

.event-block__content {
  min-width: 0;
}

.event-block__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.35rem;
}

.event-block__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-block__chip--live {
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

.event-block__chip--today {
  background: rgba(229, 125, 32, 0.14);
  color: #b45309;
}

.event-block__chip--upcoming {
  background: rgba(30, 51, 84, 0.08);
  color: rgba(30, 51, 84, 0.82);
}

.event-block__time {
  color: var(--event-muted);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.event-block__card-title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
}

.event-block__card-title a {
  color: var(--event-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.event-block__card-title a:hover,
.event-block__card-title a:focus-visible {
  color: var(--event-accent);
}

.event-block__card-text {
  margin: 0.35rem 0 0;
  color: rgba(17, 24, 39, 0.74);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.event-block__location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.45rem 0 0;
  color: var(--event-accent);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
}

.event-block__location-icon {
  flex-shrink: 0;
}

.event-block__action {
  display: flex;
  justify-content: flex-end;
}

.event-block__cta,
.event-block__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.event-block__cta {
  background: var(--event-accent);
  color: #fff;
}

.event-block__cta:hover,
.event-block__cta:focus-visible {
  background: var(--event-accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.event-block__footer {
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  text-align: left;
}

.event-block__container:has(.event-block__header--left) .event-block__list,
.event-block__container:has(.event-block__header--left) .event-block__footer {
  margin-inline: 0;
}

.event-block__footer--center {
  text-align: center;
}

.event-block__footer--left {
  text-align: left;
}

.event-block__view-all {
  border: 1px solid rgba(229, 125, 32, 0.4);
  background: #fff;
  color: var(--event-text);
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.04);
}

.event-block__view-all:hover,
.event-block__view-all:focus-visible {
  border-color: var(--event-accent);
  color: var(--event-accent);
  transform: translateY(-1px);
}

/* Event detail page */
.event-page {
  --event-accent: #e57d20;
  --event-accent-hover: #cf7119;
  --event-accent-soft: rgba(229, 125, 32, 0.12);
  --event-text: #111827;
  --event-muted: rgba(17, 24, 39, 0.68);
  --event-page-bg:
    radial-gradient(circle at 12% 0%, rgba(227, 238, 249, 0.45) 0%, transparent 48%),
    radial-gradient(circle at 90% 0%, rgba(235, 230, 245, 0.4) 0%, transparent 45%),
    radial-gradient(circle at 88% 100%, rgba(252, 238, 230, 0.35) 0%, transparent 42%),
    radial-gradient(circle at 10% 100%, rgba(229, 245, 236, 0.35) 0%, transparent 40%),
    linear-gradient(180deg, #f9fafb 0%, #f6f8fb 50%, #faf8f5 100%);
  background: var(--event-page-bg);
}

/* Shared outline CTA — sticky bar + intro */
.event-page-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.875rem;
  padding: 0.75rem 1.625rem;
  border: 2px solid var(--event-accent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.015em;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(229, 125, 32, 0.12);
  transition:
    transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.28s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.event-page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(229, 125, 32, 0.12) 45%,
    transparent 90%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.event-page-cta:hover {
  transform: translateY(-2px);
  border-color: var(--event-accent-hover);
  background: #fff;
  color: #111827;
  box-shadow:
    0 4px 8px rgba(229, 125, 32, 0.14),
    0 12px 28px rgba(229, 125, 32, 0.18);
}

.event-page-cta:hover::before {
  transform: translateX(120%);
}

.event-page-cta:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(229, 125, 32, 0.16);
  transition-duration: 0.1s;
}

.event-page-cta:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .event-page-cta,
  .event-page-cta::before {
    transition: none;
  }

  .event-page-cta:hover {
    transform: none;
  }

  .event-page-cta:active {
    transform: none;
  }
}

.event-page-hero {
  position: relative;
  margin-top: 0;
  min-height: clamp(16rem, 38vw, 22rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.event-page-hero--plain {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.08) 0%, transparent 40%),
    linear-gradient(135deg, #f0943a 0%, #e57d20 48%, #c96a18 100%);
}

.event-page-hero--image {
  background-color: #1e3354;
  background-image: var(--event-hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.event-page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.15) 0%, rgba(17, 24, 39, 0.55) 55%, rgba(17, 24, 39, 0.82) 100%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.35) 0%, transparent 55%);
}

.event-page-hero--plain .event-page-hero__overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(17, 24, 39, 0.12) 100%);
}

.event-page-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  width: 100%;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 4.75rem);
}

.event-page-breadcrumb--hero {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.event-page-breadcrumb--hero .event-page-breadcrumb__list {
  justify-content: flex-start;
}

.event-page-breadcrumb--hero .event-page-breadcrumb__item {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
}

.event-page-breadcrumb--hero .event-page-breadcrumb__item:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.45);
}

.event-page-breadcrumb--hero .event-page-breadcrumb__link {
  color: rgba(255, 255, 255, 0.95);
}

.event-page-breadcrumb--hero .event-page-breadcrumb__link:hover {
  color: #fff;
}

.event-page-breadcrumb--hero .event-page-breadcrumb__item--current {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  max-width: min(28rem, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-page-hero__content {
  max-width: 52rem;
}

.event-page-hero__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-page-hero__badge--live {
  background: rgba(34, 197, 94, 0.22);
  border-color: rgba(134, 239, 172, 0.55);
}

.event-page-hero__badge--ended {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
}

.event-page-hero__title {
  margin: 0;
  color: #fff;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.event-page-meta {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-bottom: 0;
}

.event-page-meta .container {
  display: flex;
  justify-content: center;
}

.event-page-meta__card {
  width: 100%;
  max-width: min(56rem, 100%);
  margin-top: clamp(-2.25rem, -4vw, -2.75rem);
  padding: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.04),
    0 8px 24px rgba(17, 24, 39, 0.07),
    0 20px 48px rgba(17, 24, 39, 0.06);
  border: 1px solid rgba(17, 24, 39, 0.07);
}

.event-page-meta__card::before {
  content: "";
  display: block;
  height: 0.25rem;
  background: linear-gradient(90deg, #c96a18 0%, #e57d20 45%, #f0943a 100%);
}

.event-page-meta__card--ended::before {
  background: linear-gradient(90deg, #6b7280 0%, #9ca3af 50%, #d1d5db 100%);
}

.event-page-meta__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}

.event-page-meta__status--ended {
  background: linear-gradient(180deg, #f3f4f6 0%, #eceff3 100%);
  color: rgba(17, 24, 39, 0.72);
}

.event-page-meta__status-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: rgba(17, 24, 39, 0.45);
}

.event-page-meta__status-text {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-page-meta__card--ended .event-page-meta__icon {
  background: linear-gradient(145deg, rgba(107, 114, 128, 0.14) 0%, rgba(107, 114, 128, 0.07) 100%);
  color: #6b7280;
  box-shadow: inset 0 0 0 1px rgba(107, 114, 128, 0.12);
}

.event-page-meta__card--ended .event-page-meta__value {
  color: rgba(17, 24, 39, 0.78);
}

.event-page-meta__body {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
}

.event-page-meta__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.event-page-meta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0 clamp(0.85rem, 2vw, 1.35rem);
  text-align: center;
}

.event-page-meta__item:not(:last-child) {
  border-right: 1px solid rgba(17, 24, 39, 0.08);
}

.event-page-meta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(229, 125, 32, 0.16) 0%, rgba(229, 125, 32, 0.08) 100%);
  color: var(--event-accent);
  box-shadow: inset 0 0 0 1px rgba(229, 125, 32, 0.14);
}

.event-page-meta__text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  width: 100%;
}

.event-page-meta__label {
  color: var(--event-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-page-meta__value {
  color: var(--event-text);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 500;
  line-height: 1.45;
  text-wrap: balance;
}

.event-page-meta__footer {
  padding: clamp(0.9rem, 2vw, 1.1rem) clamp(1.25rem, 3vw, 1.75rem);
  background: linear-gradient(180deg, #faf8f6 0%, #f5f3f0 100%);
  border-top: 1px solid rgba(17, 24, 39, 0.07);
}

.event-page-meta__footer-label {
  margin: 0 0 0.65rem;
  color: rgba(17, 24, 39, 0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.event-page-meta__share {
  width: 100%;
}

.event-page-meta__share--with-calendar {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.event-page-meta__share--with-calendar .event-page-meta__footer-label {
  display: none;
}

.event-page-meta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.event-page-meta__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1.05rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 0.65rem;
  background: #fff;
  color: rgba(17, 24, 39, 0.84);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.event-page-meta__action--primary {
  border-color: rgba(229, 125, 32, 0.35);
  background: var(--event-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(229, 125, 32, 0.22);
}

.event-page-meta__action--primary:hover {
  border-color: var(--event-accent-hover);
  background: var(--event-accent-hover);
  color: #fff;
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.28);
  transform: translateY(-1px);
}

.event-page-meta__action:hover {
  border-color: rgba(229, 125, 32, 0.4);
  color: var(--event-accent);
  background: #fff;
  box-shadow: 0 4px 12px rgba(229, 125, 32, 0.12);
  transform: translateY(-1px);
}

.event-page-meta__action:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 2px;
}

.event-page-intro {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.event-page-meta + .event-page-intro {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.event-page-intro__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
}

.event-page-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.event-page-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  color: rgba(17, 24, 39, 0.55);
}

.event-page-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(17, 24, 39, 0.35);
}

.event-page-breadcrumb__link {
  color: var(--event-accent);
  text-decoration: none;
  font-weight: 600;
}

.event-page-breadcrumb__link:hover {
  color: var(--event-accent-hover);
  text-decoration: underline;
}

.event-page-breadcrumb__item--current {
  color: rgba(17, 24, 39, 0.78);
  font-weight: 500;
}

.event-page-intro__banner {
  width: 100%;
  max-width: min(42rem, 100%);
  margin: 0 auto;
  padding: 0.9rem 1.1rem 1rem;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-left: 3px solid var(--event-accent);
  border-radius: 0.65rem;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
}

.event-page-intro__banner--center {
  text-align: center;
}

.event-page-intro__banner--left {
  text-align: left;
}

.event-page-intro__eyebrow {
  margin: 0 0 0.45rem;
  color: var(--event-accent);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.event-page-intro__lead {
  margin: 0;
  padding: 0;
  border: 0;
  color: #1f2937;
}

.event-page-intro__lead p {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-optical-sizing: auto;
  font-variant-ligatures: common-ligatures;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
}

.event-page-intro__lead p + p {
  margin-top: 0.65rem;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: normal;
  color: rgba(31, 41, 55, 0.82);
}

.event-page-intro__actions {
  width: 100%;
  max-width: min(42rem, 100%);
  margin: 0 auto;
  padding-left: 0;
  text-align: center;
}

.event-page-body {
  padding-top: clamp(1rem, 3vw, 1.75rem);
  padding-bottom: 0;
}

.event-page-intro + .event-page-body {
  padding-top: clamp(0.5rem, 2vw, 1rem);
}

.event-page-related {
  padding: clamp(2rem, 5vw, 3rem) 0 0;
}

.event-page-related__header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.event-page-related__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--event-text);
}

.event-page-related__footer {
  margin-top: 1.5rem;
  text-align: center;
}

.event-page:has(.event-sticky-cta) {
  padding-bottom: 5rem;
}

.event-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  padding: 0.85rem 0 calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 -8px 32px rgba(17, 24, 39, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

.event-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.event-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.event-sticky-cta__label {
  margin: 0;
  overflow: hidden;
  color: #111827;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.0625rem, 2.2vw, 1.1875rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-sticky-cta__button {
  flex-shrink: 0;
  min-width: 8.5rem;
}

.event-sticky-cta .event-page-cta {
  min-height: 3rem;
  padding: 0.8rem 1.75rem;
  font-size: clamp(1.0625rem, 2.2vw, 1.125rem);
}

@media (max-width: 575px) {
  .event-page-intro__cta {
    width: 100%;
  }

  .event-sticky-cta__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .event-sticky-cta__label {
    white-space: normal;
    text-align: center;
  }

  .event-sticky-cta__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-sticky-cta {
    transition: none;
  }
}

.event-index {
  --event-index-navy: #1e3354;
  --event-index-muted: rgba(30, 51, 84, 0.72);
  --event-index-accent: #e57d20;
  --event-index-accent-hover: #cf7119;
  margin-top: 0;
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(227, 238, 249, 0.95) 0%, transparent 42%),
    radial-gradient(circle at 92% 20%, rgba(235, 230, 245, 0.75) 0%, transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(252, 238, 230, 0.55) 0%, transparent 45%),
    linear-gradient(180deg, #edf2f7 0%, #f3f6fa 55%, #eef2f6 100%);
  min-height: calc(100vh - var(--site-header-height, 5rem));
}

.event-index__container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  max-width: min(52rem, 100%);
  margin: 0 auto;
  transition: max-width 0.2s ease;
}

.event-index__header {
  max-width: 100%;
}

.event-index__title {
  margin: 0;
  color: var(--event-index-navy);
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.event-index__intro {
  margin: 0.85rem 0 0;
  max-width: 42rem;
  color: var(--event-index-muted);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: clamp(1.0625rem, 2.2vw, 1.1875rem);
  font-weight: 400;
  line-height: 1.65;
  text-wrap: pretty;
}

.event-index--grid .event-index__container {
  max-width: min(72rem, 100%);
}

.event-index__toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 2px 12px rgba(30, 51, 84, 0.05);
}

.event-index__toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.event-index__toolbar-row--primary {
  justify-content: space-between;
}

.event-index__toolbar-row--secondary {
  justify-content: space-between;
  gap: 0.65rem 1rem;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(30, 51, 84, 0.08);
}

.event-index__search {
  flex: 1 1 14rem;
  min-width: 0;
  margin: 0;
}

.event-index__search-input {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.95rem;
  border: 1.5px solid rgba(30, 51, 84, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--event-index-navy);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.3;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.event-index__search-input::placeholder {
  color: rgba(30, 51, 84, 0.45);
}

.event-index__search-input:focus {
  outline: none;
  border-color: rgba(229, 125, 32, 0.55);
  box-shadow: 0 0 0 3px rgba(229, 125, 32, 0.12);
}

.event-index__view-toggle {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(30, 51, 84, 0.06);
  isolation: isolate;
}

.event-index__view-toggle::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  width: calc((100% - 0.5rem - 0.35rem) / 2);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(30, 51, 84, 0.12);
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(0.34, 1.15, 0.64, 1);
  z-index: 0;
  pointer-events: none;
}

.event-index__view-toggle[data-active-view="grid"]::before {
  transform: translateX(calc(100% + 0.35rem));
}

.event-index__view-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 2.85rem;
  min-height: 2.25rem;
  padding: 0.4rem 0.8rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(30, 51, 84, 0.62);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 0.24s ease,
    transform 0.18s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.event-index__view-btn svg {
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

.event-index__view-btn:active:not(:disabled) {
  transform: scale(0.96);
}

.event-index__view-btn.is-active {
  color: var(--event-index-navy);
}

.event-index__view-line,
.event-index__view-cell {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
    opacity 0.24s ease;
}

.event-index__view-line {
  transform-origin: left center;
}

.event-index__view-btn:not(.is-active) .event-index__view-line {
  opacity: 0.72;
  transform: scaleX(0.82);
}

.event-index__view-btn.is-active .event-index__view-line {
  opacity: 1;
  transform: scaleX(1);
}

.event-index__view-btn.is-active .event-index__view-line--1 {
  transition-delay: 0.02s;
}

.event-index__view-btn.is-active .event-index__view-line--2 {
  transition-delay: 0.06s;
}

.event-index__view-btn.is-active .event-index__view-line--3 {
  transition-delay: 0.1s;
}

.event-index__view-btn:not(.is-active) .event-index__view-cell {
  opacity: 0.72;
  transform: scale(0.84);
}

.event-index__view-btn.is-active .event-index__view-cell {
  opacity: 1;
  transform: scale(1);
}

.event-index__view-btn.is-active .event-index__view-cell--1 {
  transition-delay: 0.02s;
}

.event-index__view-btn.is-active .event-index__view-cell--2 {
  transition-delay: 0.05s;
}

.event-index__view-btn.is-active .event-index__view-cell--3 {
  transition-delay: 0.08s;
}

.event-index__view-btn.is-active .event-index__view-cell--4 {
  transition-delay: 0.11s;
}

.event-index__view-btn:focus {
  outline: none;
}

.event-index__view-btn:focus:not(:focus-visible) {
  outline: none;
}

.event-index__view-btn:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 2px;
}

.event-index__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 1 1 auto;
}

.event-index__filter {
  margin: 0;
  cursor: pointer;
}

.event-index__filter input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.event-index__filter-label {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.85rem;
  border: 1.5px solid rgba(30, 51, 84, 0.14);
  border-radius: 999px;
  background: #fff;
  color: rgba(30, 51, 84, 0.72);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.event-index__filter input:checked + .event-index__filter-label {
  border-color: rgba(229, 125, 32, 0.55);
  background: rgba(229, 125, 32, 0.08);
  color: var(--event-index-navy);
}

.event-index__filter input:focus-visible + .event-index__filter-label {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 2px;
}

.event-index__apply-btn {
  flex-shrink: 0;
  min-height: 2.25rem;
  padding: 0.4rem 1rem;
  border: 1.5px solid rgba(30, 51, 84, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--event-index-navy);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.event-index__apply-btn:hover {
  border-color: rgba(30, 51, 84, 0.32);
  background: rgba(30, 51, 84, 0.03);
}

.event-index__results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-index__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  color: rgba(30, 51, 84, 0.68);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.event-index__status--empty {
  justify-content: flex-start;
}

.event-index__pagination-wrap {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}

.event-index__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.event-index__page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0 0.55rem;
  border: 1.5px solid rgba(30, 51, 84, 0.14);
  border-radius: 0.55rem;
  background: #fff;
  color: var(--event-index-navy);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.event-index__page-btn:hover {
  border-color: rgba(229, 125, 32, 0.45);
  background: rgba(229, 125, 32, 0.06);
  color: var(--event-index-navy);
  text-decoration: none;
}

.event-index__page-btn.is-active {
  border-color: var(--event-index-accent);
  background: var(--event-index-accent);
  color: #fff;
}

.event-index__page-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.event-index__empty-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem 1.1rem;
  border: 1px dashed rgba(30, 51, 84, 0.16);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.65);
}

.event-index__clear-link {
  color: var(--event-index-accent);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.event-index__clear-link:hover {
  color: var(--event-index-accent-hover);
  text-decoration: underline;
}

.event-index__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr));
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  width: 100%;
}

.event-index__grid-card {
  list-style: none;
}

.event-index__grid-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(30, 51, 84, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.event-index__grid-card-inner:hover {
  box-shadow: 0 8px 24px rgba(30, 51, 84, 0.09);
  transform: translateY(-2px);
}

.event-index__grid-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  text-decoration: none;
}

.event-index__grid-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    145deg,
    rgba(17, 24, 39, 0.28) 0%,
    rgba(17, 24, 39, 0.06) 42%,
    transparent 62%
  );
  pointer-events: none;
}

.event-index__grid-media .event-index__chip {
  z-index: 1;
}

.event-index__grid-media--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(145deg, #edf2f7 0%, #e3eef9 100%);
  color: var(--event-index-navy);
  text-decoration: none;
}

.event-index__grid-placeholder-date {
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-index__grid-placeholder-time {
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}

.event-index__grid-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-index__grid-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1rem 1.1rem;
}

.event-index__grid-date {
  margin: 0;
  color: rgba(30, 51, 84, 0.58);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.event-index__grid-title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.event-index__grid-title a {
  color: var(--event-index-navy);
  text-decoration: none;
}

.event-index__grid-title a:hover {
  color: var(--event-index-accent);
}

.event-index__grid-location {
  margin: 0;
  color: rgba(30, 51, 84, 0.62);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.event-index__grid-text {
  margin: 0;
  color: var(--event-index-muted);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
}

.event-index__grid-actions {
  margin-top: auto;
  padding-top: 0.35rem;
}

.event-index__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  width: 100%;
}

.event-index__card {
  list-style: none;
}

.event-index__card-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(30, 51, 84, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.event-index__card-inner--has-media {
  grid-template-columns: auto minmax(0, 1fr) clamp(9rem, 22vw, 12rem);
}

.event-index__card:nth-child(4n + 1) .event-index__card-inner {
  background: linear-gradient(145deg, #fff 0%, #f6faff 100%);
  border-color: rgba(210, 227, 248, 0.65);
}

.event-index__card:nth-child(4n + 2) .event-index__card-inner {
  background: linear-gradient(145deg, #fff 0%, #f9f7fd 100%);
  border-color: rgba(221, 214, 240, 0.65);
}

.event-index__card:nth-child(4n + 3) .event-index__card-inner {
  background: linear-gradient(145deg, #fff 0%, #fff8f4 100%);
  border-color: rgba(248, 221, 206, 0.65);
}

.event-index__card:nth-child(4n + 4) .event-index__card-inner {
  background: linear-gradient(145deg, #fff 0%, #f4faf6 100%);
  border-color: rgba(206, 232, 218, 0.65);
}

.event-index__card-inner:hover {
  box-shadow: 0 8px 24px rgba(30, 51, 84, 0.09);
  transform: translateY(-2px);
}

.event-index__body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.event-index__main {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.875rem;
  min-width: 0;
  min-height: 100%;
}

.event-index__card-lead {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.event-index__card-header {
  margin: 0;
}

.event-index__media {
  grid-column: 3;
  display: flex;
  align-self: stretch;
}

.event-index__media-link {
  position: relative;
  display: block;
  flex: 1;
  width: 100%;
  min-height: 7.5rem;
  border-radius: 0.65rem;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(30, 51, 84, 0.1);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.event-index__media-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    145deg,
    rgba(17, 24, 39, 0.28) 0%,
    rgba(17, 24, 39, 0.06) 42%,
    transparent 62%
  );
  pointer-events: none;
}

.event-index__card-inner:hover .event-index__media-link {
  box-shadow: 0 6px 18px rgba(30, 51, 84, 0.14);
}

.event-index__media-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 7.5rem;
  object-fit: cover;
}

.event-index__date {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 5.25rem;
  min-height: 5.25rem;
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  text-align: center;
  align-self: center;
}

.event-index__chip {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 1px 4px rgba(17, 24, 39, 0.1);
}

.event-index__chip--live {
  background: rgba(22, 163, 74, 0.68);
  color: #fff;
}

.event-index__chip--today {
  background: rgba(30, 51, 84, 0.58);
  color: #fff;
}

.event-index__chip--upcoming {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.event-index__card:nth-child(4n + 1) .event-index__date {
  background: #e3eef9;
}

.event-index__card:nth-child(4n + 2) .event-index__date {
  background: #ebe6f5;
}

.event-index__card:nth-child(4n + 3) .event-index__date {
  background: #fceee6;
}

.event-index__card:nth-child(4n + 4) .event-index__date {
  background: #e5f3eb;
}

.event-index__date-label {
  color: var(--event-index-navy);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.event-index__date-time {
  color: rgba(30, 51, 84, 0.68);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.event-index__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  color: rgba(30, 51, 84, 0.82);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
}

.event-index__byline-item {
  min-width: 0;
}

.event-index__byline-sep {
  color: rgba(30, 51, 84, 0.32);
  font-weight: 400;
  user-select: none;
}

.event-index__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  padding: 0;
  list-style: none;
}

.event-index__meta-item {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: baseline;
}

.event-index__meta-label {
  color: rgba(30, 51, 84, 0.5);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-index__meta-value {
  color: var(--event-index-navy);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
}

.event-index__card-title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.375rem, 2.8vw, 1.6875rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.008em;
  text-wrap: balance;
}

.event-index__card-title a {
  color: var(--event-index-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.event-index__card-title a:hover {
  color: #e57d20;
}

.event-index__card-text {
  margin: 0;
  color: rgba(30, 51, 84, 0.78);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: clamp(1.03125rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.68;
  max-width: 42rem;
  text-wrap: pretty;
}

.event-index__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(30, 51, 84, 0.08);
}

.event-index__link,
.event-index__calendar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1.125rem;
  border-radius: 999px;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.event-index__link {
  border: 1.5px solid rgba(30, 51, 84, 0.22);
  background: rgba(255, 255, 255, 0.65);
  color: var(--event-index-navy);
}

.event-index__link:hover {
  border-color: rgba(30, 51, 84, 0.4);
  background: #fff;
  color: var(--event-index-navy);
  box-shadow: 0 4px 12px rgba(30, 51, 84, 0.08);
  transform: translateY(-1px);
}

.event-index__calendar {
  border: 1.5px solid rgba(229, 125, 32, 0.5);
  background: rgba(255, 255, 255, 0.65);
  color: #111827;
}

.event-index__calendar:hover {
  border-color: var(--event-index-accent);
  background: rgba(229, 125, 32, 0.08);
  color: #111827;
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.14);
  transform: translateY(-1px);
}

.event-index__calendar:focus-visible,
.event-index__link:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.4);
  outline-offset: 2px;
}

.event-index__empty {
  margin: 0;
  color: var(--event-index-muted);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .event-index__container {
    max-width: 100%;
  }

  .event-index__toolbar-row--primary {
    flex-direction: column;
    align-items: stretch;
  }

  .event-index__view-toggle {
    align-self: flex-start;
  }

  .event-index__toolbar-row--secondary {
    flex-direction: column;
    align-items: stretch;
  }

  .event-index__apply-btn {
    width: 100%;
  }

  .event-index__status {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-index__grid {
    grid-template-columns: 1fr;
  }

  .event-index__view-label {
    display: none;
  }

  .event-index__card-inner,
  .event-index__card-inner--has-media {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .event-index__date {
    grid-column: 1;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.75rem;
    width: auto;
    min-height: 0;
    padding: 0.65rem 0.85rem;
    align-self: flex-start;
  }

  .event-index__main {
    grid-column: 1;
    gap: 0.65rem;
  }

  .event-index__media {
    grid-column: 1;
  }

  .event-index__media-link {
    min-height: 11rem;
    max-height: 14rem;
  }

  .event-index__media-image {
    min-height: 11rem;
    max-height: 14rem;
  }

  .event-index__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .event-index__actions .event-index__link,
  .event-index__actions .event-index__calendar {
    width: 100%;
  }

  .event-index__meta-item {
    grid-template-columns: 3.75rem minmax(0, 1fr);
  }
}

@media (max-width: 575px) {
  .event-index__date {
    width: 4.75rem;
    min-height: 3.75rem;
  }

  .event-index__calendar {
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-index__container,
  .event-index__view-toggle::before,
  .event-index__view-btn,
  .event-index__view-line,
  .event-index__view-cell {
    transition: none !important;
  }

  .event-index__card-inner,
  .event-index__calendar,
  .event-index__link {
    transition: none;
  }

  .event-index__card-inner:hover,
  .event-index__calendar:hover,
  .event-index__link:hover {
    transform: none;
  }

  .event-index__view-btn:active:not(:disabled) {
    transform: none;
  }
}

/* Legacy event hero (index page) */
.event-hero {
  margin-top: 0;
}

.event-hero--plain {
  background: linear-gradient(135deg, rgba(229, 125, 32, 0.95), rgba(207, 113, 25, 0.95));
}

.event-hero--image {
  background-position: center;
  background-size: cover;
}

.event-hero__overlay {
  background: rgba(17, 24, 39, 0.45);
}

.event-hero__content {
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
}

.event-hero__title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
}

.event-hero__intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .event-page-meta__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .event-page-meta__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0;
    text-align: left;
  }

  .event-page-meta__item:not(:last-child) {
    border-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  .event-page-meta__icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .event-page-meta__value {
    text-wrap: pretty;
  }
}

@media (max-width: 575px) {
  .event-page-meta__card {
    margin-top: -2rem;
  }

  .event-page-meta__footer {
    padding-inline: 1rem;
  }

  .event-page-meta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .event-page-meta__action {
    width: 100%;
  }

  .event-page-breadcrumb--hero .event-page-breadcrumb__item--current {
    white-space: normal;
  }

  .event-page-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .event-page-intro__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .event-block__card-inner,
  .event-block__card-inner:has(.event-block__media) {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .event-block__media {
    display: none;
  }

  .event-block__action {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .event-block__card-inner,
  .event-block__card-inner:has(.event-block__media) {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .event-block__date-badge {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
    width: fit-content;
    min-width: 0;
    padding: 0.45rem 0.7rem;
  }

  .event-block__date-day {
    font-size: 1.25rem;
  }

  .event-block__date-month,
  .event-block__date-year {
    margin-top: 0;
    align-self: center;
  }

  .event-block__action {
    justify-content: stretch;
  }

  .event-block__cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-block__card-inner,
  .event-block__cta,
  .event-block__view-all {
    transition: none;
  }

  .event-block__card-inner:hover,
  .event-block__cta:hover,
  .event-block__view-all:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Blog — hero, index listing, article pages
   -------------------------------------------------------------------------- */

.blog-page {
  --blog-accent: #e57d20;
  --blog-accent-hover: #cf7119;
  --blog-text: #111827;
  --blog-muted: rgba(17, 24, 39, 0.62);
  --blog-page-bg:
    radial-gradient(circle at 12% 0%, rgba(227, 238, 249, 0.45) 0%, transparent 48%),
    radial-gradient(circle at 90% 0%, rgba(235, 230, 245, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 88% 100%, rgba(252, 238, 230, 0.3) 0%, transparent 42%),
    linear-gradient(180deg, #f9fafb 0%, #f6f8fb 55%, #faf8f5 100%);
  background: var(--blog-page-bg);
}

.blog-page--index {
  background: #fff;
}

.blog-page--article {
  background: #fff;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
  padding: clamp(1.25rem, 2.5vw, 1.65rem) 0 0.9rem;
  margin: 0;
  background: transparent;
  border: none;
}

.blog-article-meta__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--blog-text);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease,
    gap 0.15s ease;
}

.blog-article-meta__back:hover,
.blog-article-meta__back:focus-visible {
  border-color: rgba(229, 125, 32, 0.35);
  background: rgba(229, 125, 32, 0.06);
  color: var(--blog-accent);
  gap: 0.45rem;
}

.blog-article-meta__back-icon {
  flex-shrink: 0;
  color: var(--blog-muted);
  transition: transform 0.15s ease, color 0.15s ease;
}

.blog-article-meta__back:hover .blog-article-meta__back-icon,
.blog-article-meta__back:focus-visible .blog-article-meta__back-icon {
  transform: translateX(-2px);
  color: var(--blog-accent);
}

.blog-article-meta__date {
  color: var(--blog-muted);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-breadcrumb {
  margin-bottom: 0.5rem;
}

.blog-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--blog-text);
}

.blog-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  color: var(--blog-text);
}

.blog-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-inline: 0.35rem;
  color: rgba(17, 24, 39, 0.45);
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
}

.blog-breadcrumb__link {
  color: var(--blog-text);
  font-size: inherit;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-breadcrumb__link:hover,
.blog-breadcrumb__link:focus-visible {
  color: var(--blog-text);
  text-decoration: underline;
}

.blog-breadcrumb__item--current {
  color: var(--blog-text);
  font-size: inherit;
  font-weight: 600;
  max-width: min(28rem, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-breadcrumb--hero {
  width: 100%;
  margin-bottom: 0.5rem;
}

.blog-breadcrumb--hero .blog-breadcrumb__list {
  justify-content: center;
}

.blog-breadcrumb--hero .blog-breadcrumb__item {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.blog-breadcrumb--hero .blog-breadcrumb__item:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.35);
}

.blog-breadcrumb--hero .blog-breadcrumb__link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.blog-breadcrumb--hero .blog-breadcrumb__link:hover,
.blog-breadcrumb--hero .blog-breadcrumb__link:focus-visible {
  color: #fff;
}

.blog-breadcrumb--hero .blog-breadcrumb__item--current {
  color: #fff;
  font-weight: 600;
}

.blog-hero {
  position: relative;
  margin-top: 0;
  min-height: clamp(9rem, 22vw, 12.5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.blog-hero--image {
  min-height: clamp(18rem, 40vw, 24rem);
  align-items: flex-end;
  background-color: #1e3354;
  background-image: var(--blog-hero-image);
  background-position: center 35%;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-hero--soft {
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.blog-hero--bg-sky {
  background:
    radial-gradient(circle at 12% 0%, rgba(227, 238, 249, 0.85) 0%, transparent 48%),
    radial-gradient(circle at 92% 100%, rgba(235, 230, 245, 0.65) 0%, transparent 42%),
    linear-gradient(180deg, #edf2f7 0%, #f3f6fa 55%, #eef2f6 100%);
}

.blog-hero--bg-warm {
  background:
    radial-gradient(circle at 88% 0%, rgba(252, 238, 230, 0.85) 0%, transparent 45%),
    radial-gradient(circle at 8% 100%, rgba(255, 244, 229, 0.7) 0%, transparent 40%),
    linear-gradient(180deg, #fdf6ef 0%, #faf0e4 55%, #f8ebe0 100%);
}

.blog-hero--bg-cream {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.9) 0%, transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(245, 240, 232, 0.75) 0%, transparent 40%),
    linear-gradient(180deg, #faf8f5 0%, #f5f1eb 55%, #f0ebe4 100%);
}

.blog-hero--bg-lavender {
  background:
    radial-gradient(circle at 10% 0%, rgba(235, 230, 245, 0.9) 0%, transparent 46%),
    radial-gradient(circle at 90% 100%, rgba(224, 218, 240, 0.65) 0%, transparent 42%),
    linear-gradient(180deg, #f0ecf7 0%, #ebe6f3 55%, #e6e0ef 100%);
}

.blog-hero--bg-mint {
  background:
    radial-gradient(circle at 12% 100%, rgba(229, 245, 236, 0.85) 0%, transparent 44%),
    radial-gradient(circle at 88% 0%, rgba(240, 250, 246, 0.75) 0%, transparent 40%),
    linear-gradient(180deg, #f0faf6 0%, #e8f5f0 55%, #e2f0ea 100%);
}

.blog-hero--bg-rose {
  background:
    radial-gradient(circle at 90% 15%, rgba(252, 231, 235, 0.85) 0%, transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(245, 228, 232, 0.7) 0%, transparent 40%),
    linear-gradient(180deg, #fdf2f4 0%, #faecef 55%, #f7e6ea 100%);
}

.blog-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.blog-hero--image .blog-hero__overlay {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.28) 0%, rgba(17, 24, 39, 0.18) 38%, rgba(17, 24, 39, 0.52) 68%, rgba(17, 24, 39, 0.88) 100%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.22) 0%, transparent 55%);
}

.blog-hero--soft .blog-hero__overlay {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.35) 0%, transparent 55%);
}

.blog-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(1.5rem, 3.5vw, 2.25rem);
}

.blog-hero--image .blog-hero__container {
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(2.75rem, 5.5vw, 4rem);
}

.blog-hero--soft .blog-breadcrumb {
  width: 100%;
  max-width: 44rem;
  margin-bottom: 0.5rem;
}

.blog-hero--soft .blog-breadcrumb__list {
  justify-content: flex-start;
}

.blog-hero__content {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.blog-hero__title {
  margin: 0;
  color: #fff;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3.2vw, 2.125rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.005em;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}

.blog-hero--soft .blog-hero__title {
  color: var(--blog-text);
  text-shadow: none;
}

.blog-hero__deck {
  margin: 1rem 0 0;
  max-width: 36rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
}

.blog-hero--soft .blog-hero__deck {
  color: rgba(17, 24, 39, 0.76);
}

.blog-hero__meta {
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-hero--soft .blog-hero__meta {
  color: var(--blog-muted);
}

.blog-index {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: #fff;
}

.blog-hero + .blog-index {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

.blog-index__layout,
.blog-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
}

.blog-index__main,
.blog-page__main,
.blog-page__stream-item {
  min-width: 0;
}

.blog-page--article .blog-page__stream-item {
  display: flow-root;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-page__layout:has(+ .blog-page__body > .promo-video-block:first-child:not(.stream-block-mt)) .blog-article-meta {
  padding-bottom: 0;
}

.blog-page__body > .promo-video-block:not(.stream-block-mt) {
  margin-top: 0 !important;
}

.blog-page__body > .promo-video-block:not(.stream-block-mb) {
  margin-bottom: 0;
}

.blog-page__body > .promo-video-block:not(.stream-block-mb) + .blog-page__stream-item > .richtext-block:not(.stream-block-mt) {
  margin-top: 0;
}

/* Collapse margin on the block above a flush promo (only when it has no CMS margin bottom) */
.blog-page__body > .blog-page__stream-item:has(+ .promo-video-block:not(.stream-block-mt)):not(:has(> .stream-block-mb)) {
  display: contents;
  margin-bottom: 0 !important;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-sidebar__section {
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 1rem;
  background: #fff;
  box-shadow: none;
}

.blog-sidebar__heading {
  margin: 0 0 0.35rem;
  color: var(--blog-text);
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
}

.blog-sidebar__hint {
  margin: 0 0 0.85rem;
  color: var(--blog-muted);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.blog-tags--sidebar .blog-tags__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.blog-tags--sidebar .blog-tags__chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.blog-tags--sidebar .blog-tags__chip-label {
  min-width: 0;
}

.blog-tags--sidebar .blog-tags__chip-check {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.blog-tags--sidebar .blog-tags__chip.is-active {
  border-color: var(--blog-accent);
  background: var(--blog-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(229, 125, 32, 0.22);
}

.blog-tags--sidebar .blog-tags__chip.is-active:hover,
.blog-tags--sidebar .blog-tags__chip.is-active:focus-visible {
  border-color: var(--blog-accent-hover);
  background: var(--blog-accent-hover);
  color: #fff;
}

.blog-sidebar-featured,
.blog-sidebar-promo {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.blog-sidebar-featured__media,
.blog-sidebar-promo__media {
  display: block;
  overflow: hidden;
  border-radius: 0.65rem;
  aspect-ratio: 16 / 9;
  background: rgba(17, 24, 39, 0.06);
}

.blog-sidebar-featured__image,
.blog-sidebar-promo__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-sidebar-featured__date {
  color: var(--blog-muted);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-sidebar-featured__title,
.blog-sidebar-promo__title {
  margin: 0.25rem 0 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
}

.blog-sidebar-featured__title a {
  color: var(--blog-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-sidebar-featured__title a:hover,
.blog-sidebar-featured__title a:focus-visible {
  color: var(--blog-accent);
}

.blog-sidebar-featured__text,
.blog-sidebar-promo__text {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.blog-sidebar-featured__link,
.blog-sidebar-promo__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.15rem;
  color: var(--blog-accent);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-sidebar-featured__link:hover,
.blog-sidebar-featured__link:focus-visible,
.blog-sidebar-promo__cta:hover,
.blog-sidebar-promo__cta:focus-visible {
  color: var(--blog-accent-hover);
  text-decoration: underline;
}

.blog-sidebar-promo__eyebrow {
  margin: 0;
  color: var(--blog-accent);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-sidebar-promo__title {
  color: var(--blog-text);
}

.blog-index__container {
  max-width: 52rem;
}

.blog-index__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.blog-index__item + .blog-index__item {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.blog-index__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 1rem;
  background: #fff;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.blog-index__card-hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.blog-index__card-hit:focus-visible {
  outline: 2px solid var(--blog-accent);
  outline-offset: 2px;
}

.blog-index__card:hover {
  border-color: rgba(229, 125, 32, 0.28);
  background: rgba(255, 252, 248, 0.85);
}

.blog-index__media,
.blog-index__title a,
.blog-index__read-more,
.blog-index__tag {
  position: relative;
  z-index: 2;
}

.blog-index__media {
  display: block;
  overflow: hidden;
  border-radius: 0.65rem;
  aspect-ratio: 16 / 10;
  background: rgba(17, 24, 39, 0.06);
}

.blog-index__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.85) 0%, transparent 42%),
    linear-gradient(145deg, #eef6fc 0%, #f5f1eb 100%);
  text-decoration: none;
}

.blog-index__placeholder-date {
  color: rgba(17, 24, 39, 0.55);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-index__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-index__media:hover .blog-index__image,
.blog-index__media:focus-visible .blog-index__image {
  transform: scale(1.03);
}

.blog-index__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
}

.blog-index__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  width: 100%;
}

.blog-index__date {
  color: var(--blog-muted);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-index__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-index__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: rgba(17, 24, 39, 0.68);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    background-color 0.15s ease;
}

.blog-index__tag:hover,
.blog-index__tag:focus-visible {
  border-color: rgba(229, 125, 32, 0.35);
  background: rgba(229, 125, 32, 0.08);
  color: var(--blog-accent);
}

.blog-index__title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.blog-index__title a {
  color: var(--blog-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-index__title a:hover,
.blog-index__title a:focus-visible {
  color: var(--blog-accent);
}

.blog-index__excerpt {
  margin: 0;
  color: rgba(17, 24, 39, 0.74);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.blog-index__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
  color: var(--blog-accent);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, gap 0.2s ease;
}

.blog-index__read-more-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.blog-index__read-more:hover,
.blog-index__read-more:focus-visible {
  color: var(--blog-accent-hover);
}

.blog-index__read-more:hover .blog-index__read-more-icon,
.blog-index__read-more:focus-visible .blog-index__read-more-icon {
  transform: translateX(2px);
}

.blog-index__empty {
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  text-align: center;
  border: 1px dashed rgba(17, 24, 39, 0.12);
  border-radius: 1rem;
  background: #fafafa;
}

.blog-index__empty-title {
  margin: 0 0 0.5rem;
  color: var(--blog-text);
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600;
}

.blog-index__empty-text {
  margin: 0;
  color: var(--blog-muted);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: 1.0625rem;
  line-height: 1.55;
}

.blog-hero__content .blog-tags {
  margin-top: 0.65rem;
}

.blog-hero__content .blog-tags__list {
  justify-content: center;
}

.blog-hero--soft .blog-tags__chip {
  border-color: rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.blog-hero--image .blog-tags__chip,
.blog-hero:not(.blog-hero--soft) .blog-tags__chip {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
}

.blog-hero--image .blog-tags__chip:hover,
.blog-hero--image .blog-tags__chip:focus-visible,
.blog-hero:not(.blog-hero--soft) .blog-tags__chip:hover,
.blog-hero:not(.blog-hero--soft) .blog-tags__chip:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.blog-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-tags--filter .blog-tags__list {
  gap: 0.4rem;
}

.blog-tags__chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: #fff;
  color: rgba(17, 24, 39, 0.78);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.blog-tags__chip:hover,
.blog-tags__chip:focus-visible {
  border-color: rgba(229, 125, 32, 0.45);
  background: rgba(229, 125, 32, 0.06);
  color: var(--blog-accent);
}

.blog-tags__chip.is-active {
  border-color: rgba(229, 125, 32, 0.55);
  background: rgba(229, 125, 32, 0.1);
  color: var(--blog-accent);
  box-shadow: 0 1px 3px rgba(229, 125, 32, 0.12);
}

.blog-tags--compact {
  margin-top: 0.15rem;
}

.blog-tags--compact .blog-tags__chip {
  min-height: 1.65rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.6875rem;
}

.blog-tags--filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.blog-tags__label {
  flex-shrink: 0;
  color: var(--blog-muted);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-index__toolbar-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 1rem;
  background: rgba(249, 250, 251, 0.75);
}

.blog-index__toolbar {
  flex: 1 1 14rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-index__toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.blog-index__search-wrap {
  position: relative;
  width: 100%;
  max-width: 28rem;
}

.blog-index__search {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
}

.blog-index__search-icon {
  position: absolute;
  top: 50%;
  left: 0.95rem;
  z-index: 1;
  display: inline-flex;
  color: rgba(17, 24, 39, 0.42);
  pointer-events: none;
  transform: translateY(-50%);
}

.blog-index__search-input {
  display: block;
  width: 100%;
  height: 2.75rem;
  padding: 0 2.65rem 0 2.65rem;
  border: 1.5px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: #fafafa;
  color: var(--blog-text);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.blog-index__search-input::-webkit-search-cancel-button,
.blog-index__search-input::-webkit-search-decoration {
  display: none;
}

.blog-index__search-input::placeholder {
  color: rgba(17, 24, 39, 0.42);
}

.blog-index__search-input:hover {
  border-color: rgba(229, 125, 32, 0.35);
  background: #fff;
}

.blog-index__search-input:focus {
  outline: none;
  border-color: rgba(229, 125, 32, 0.55);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(229, 125, 32, 0.12);
}

.blog-index__search-clear {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: rgba(17, 24, 39, 0.55);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.blog-index__search-clear:hover {
  background: rgba(229, 125, 32, 0.12);
  color: var(--blog-accent);
}

.blog-index__search-clear:focus {
  outline: none;
}

.blog-index__search-clear:focus-visible {
  outline: 2px solid rgba(229, 125, 32, 0.45);
  outline-offset: 1px;
}

.blog-index__search-clear[hidden] {
  display: none;
}

.blog-index__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  flex-shrink: 0;
  margin: 0;
  color: rgba(17, 24, 39, 0.58);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-index__status-count {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.05);
  color: rgba(17, 24, 39, 0.62);
}

.blog-index__status-tag {
  color: var(--blog-accent);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
}

.blog-index__results {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blog-index__pagination-wrap {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}

.blog-index__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.blog-index__page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0.35rem 0.65rem;
  border: 1.5px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--blog-text);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.blog-index__page-btn:hover {
  border-color: rgba(229, 125, 32, 0.45);
  color: var(--blog-accent);
}

.blog-index__page-btn.is-active {
  border-color: var(--blog-accent);
  background: var(--blog-accent);
  color: #fff;
}

.blog-index__page-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.blog-index__clear-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--blog-accent);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-index__clear-link:hover {
  color: var(--blog-accent-hover);
  text-decoration: underline;
}

.blog-index__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.blog-page__blocks {
  padding-bottom: 0;
}

.blog-page--article .blog-page__content {
  background: #fff;
}

.blog-page--article .blog-page__layout {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}

.blog-page--article .blog-page__body {
  margin: 0;
}

.blog-page--article .blog-page__body > .blog-page__stream-item:first-child {
  margin-top: 0;
}

.blog-page--index .blog-page__blocks {
  background: #fff;
}

.blog-page--article .blog-page__blocks {
  padding-top: clamp(0.5rem, 2vw, 1rem);
}

@media (min-width: 992px) {
  .blog-index__layout {
    grid-template-columns: minmax(0, 17.5rem) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .blog-page--article .blog-page__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-sidebar {
    position: sticky;
    top: 1.5rem;
  }
}

/* Blog detail: horizontal related articles rail */
.blog-related {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--blog-page-bg);
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.blog-page--article .blog-related {
  margin-top: 0;
  background: var(--blog-page-bg);
}

.blog-related__inner {
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.blog-related__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  max-width: var(--container-max-width, 75rem);
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
  padding-inline: clamp(0.5rem, 2vw, 1rem);
}

.blog-related__title {
  margin: 0;
  color: var(--blog-text, #111827);
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
}

.blog-related__view-all {
  color: var(--blog-accent, #c2410c);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-related__view-all:hover,
.blog-related__view-all:focus-visible {
  text-decoration: underline;
}

.blog-related__track {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: clamp(1rem, 4vw, 2rem);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.blog-related__track:focus-visible {
  outline: 2px solid var(--blog-accent, #c2410c);
  outline-offset: 4px;
}

.blog-related__list {
  display: flex;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  width: max-content;
  min-width: 100%;
  padding: 0.25rem clamp(1rem, 4vw, 2rem) 0.5rem;
  margin: 0;
}

.blog-related__item {
  flex: 0 0 auto;
  width: min(100%, 18rem);
  scroll-snap-align: start;
}

.blog-related__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.blog-related__card:hover {
  border-color: rgba(229, 125, 32, 0.22);
}

.blog-related__media {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
}

.blog-related__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.blog-related__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-related__placeholder-date {
  color: var(--blog-muted, #6b7280);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-related__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.95rem 1rem 1.1rem;
}

.blog-related__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.blog-related__date {
  color: var(--blog-muted, #6b7280);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: 0.8125rem;
}

.blog-related__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
}

.blog-related__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.15rem 0.55rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blog-text, #111827);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  line-height: 1.2;
  text-decoration: none;
}

.blog-related__tag:hover,
.blog-related__tag:focus-visible {
  border-color: var(--blog-accent, #c2410c);
  color: var(--blog-accent, #c2410c);
}

.blog-related__card-title {
  margin: 0;
  font-family: "Vollkorn", Georgia, "Times New Roman", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
}

.blog-related__card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-related__card-title a:hover,
.blog-related__card-title a:focus-visible {
  color: var(--blog-accent, #c2410c);
}

.blog-related__excerpt {
  margin: 0;
  color: var(--blog-muted, #6b7280);
  font-family: "Alegreya", Georgia, "Times New Roman", serif;
  font-size: 0.9375rem;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .blog-index__card {
    grid-template-columns: minmax(0, 13.5rem) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: stretch;
    padding: 1rem 1.1rem;
  }

  .blog-index__card:not(:has(.blog-index__media)) {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-index__media {
    aspect-ratio: 4 / 3;
    align-self: stretch;
    min-height: 8.5rem;
  }

  .blog-index__body {
    justify-content: center;
    gap: 0.55rem;
    padding-block: 0.15rem;
  }
}

@media (min-width: 992px) {
  .blog-index__card {
    grid-template-columns: minmax(0, 15.5rem) minmax(0, 1fr);
    gap: 1.5rem;
    padding: 1.1rem 1.25rem;
  }
}

@media (max-width: 575px) {
  .blog-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-index__image,
  .blog-index__read-more-icon,
  .blog-article-meta__back-icon {
    transition: none;
  }

  .blog-index__media:hover .blog-index__image,
  .blog-index__media:focus-visible .blog-index__image,
  .blog-index__read-more:hover .blog-index__read-more-icon,
  .blog-index__read-more:focus-visible .blog-index__read-more-icon,
  .blog-article-meta__back:hover .blog-article-meta__back-icon,
  .blog-article-meta__back:focus-visible .blog-article-meta__back-icon {
    transform: none;
  }
}

/* Shared subtle section backgrounds (canonical) */
.summary-block--bg-white,
.card-block--bg-white,
.card-group-block--bg-white,
.max-card-block--bg-white,
.modern-block--bg-white,
.accordion-block--bg-white,
.event-block--bg-white,
.video-block--bg-white,
.video-list-block--bg-white,
.team-block--bg-white,
.news-block--bg-white {
  background-color: transparent;
}
.list-block--bg-white,
.data-table-block--bg-white {
  background-color: #fff;
}
.summary-block--bg-warm,
.card-block--bg-warm,
.card-group-block--bg-warm,
.max-card-block--bg-warm,
.modern-block--bg-warm,
.accordion-block--bg-warm,
.event-block--bg-warm,
.video-block--bg-warm,
.video-list-block--bg-warm,
.list-block--bg-warm,
.data-table-block--bg-warm,
.team-block--bg-warm,
.news-block--bg-warm {
  background-color: rgba(229, 125, 32, 0.08);
}
.summary-block--bg-cream,
.card-block--bg-cream,
.card-group-block--bg-cream,
.max-card-block--bg-cream,
.modern-block--bg-cream,
.accordion-block--bg-cream,
.event-block--bg-cream,
.video-block--bg-cream,
.video-list-block--bg-cream,
.list-block--bg-cream,
.data-table-block--bg-cream,
.team-block--bg-cream,
.news-block--bg-cream {
  background-color: #faf8f5;
}
.summary-block--bg-gray,
.card-block--bg-gray,
.card-group-block--bg-gray,
.max-card-block--bg-gray,
.modern-block--bg-gray,
.accordion-block--bg-gray,
.event-block--bg-gray,
.video-block--bg-gray,
.video-list-block--bg-gray,
.list-block--bg-gray,
.data-table-block--bg-gray,
.team-block--bg-gray,
.news-block--bg-gray {
  background-color: #f4f4f5;
}
.summary-block--bg-mint,
.card-block--bg-mint,
.card-group-block--bg-mint,
.max-card-block--bg-mint,
.modern-block--bg-mint,
.accordion-block--bg-mint,
.event-block--bg-mint,
.video-block--bg-mint,
.video-list-block--bg-mint,
.list-block--bg-mint,
.data-table-block--bg-mint,
.team-block--bg-mint,
.news-block--bg-mint {
  background-color: #f0faf6;
}
.summary-block--bg-sky,
.card-block--bg-sky,
.card-group-block--bg-sky,
.max-card-block--bg-sky,
.modern-block--bg-sky,
.accordion-block--bg-sky,
.event-block--bg-sky,
.video-block--bg-sky,
.video-list-block--bg-sky,
.list-block--bg-sky,
.data-table-block--bg-sky,
.team-block--bg-sky,
.news-block--bg-sky {
  background-color: #eef6fc;
}
.summary-block--bg-lavender,
.card-block--bg-lavender,
.card-group-block--bg-lavender,
.max-card-block--bg-lavender,
.modern-block--bg-lavender,
.accordion-block--bg-lavender,
.event-block--bg-lavender,
.video-block--bg-lavender,
.video-list-block--bg-lavender,
.list-block--bg-lavender,
.data-table-block--bg-lavender,
.team-block--bg-lavender,
.news-block--bg-lavender {
  background-color: #f5f3ff;
}
.summary-block--bg-blush,
.card-block--bg-blush,
.card-group-block--bg-blush,
.max-card-block--bg-blush,
.modern-block--bg-blush,
.accordion-block--bg-blush,
.event-block--bg-blush,
.video-block--bg-blush,
.video-list-block--bg-blush,
.list-block--bg-blush,
.data-table-block--bg-blush,
.team-block--bg-blush,
.news-block--bg-blush {
  background-color: #fdf2f4;
}
.summary-block--bg-gradient-warm,
.card-block--bg-gradient-warm,
.card-group-block--bg-gradient-warm,
.max-card-block--bg-gradient-warm,
.modern-block--bg-gradient-warm,
.accordion-block--bg-gradient-warm,
.event-block--bg-gradient-warm,
.video-block--bg-gradient-warm,
.video-list-block--bg-gradient-warm,
.list-block--bg-gradient-warm,
.data-table-block--bg-gradient-warm,
.team-block--bg-gradient-warm,
.news-block--bg-gradient-warm {
  background: linear-gradient(180deg, rgba(229, 125, 32, 0.1) 0%, rgba(250, 248, 245, 0.65) 45%, #fff 100%);
}
.summary-block--bg-gradient-sky,
.card-block--bg-gradient-sky,
.card-group-block--bg-gradient-sky,
.max-card-block--bg-gradient-sky,
.modern-block--bg-gradient-sky,
.accordion-block--bg-gradient-sky,
.event-block--bg-gradient-sky,
.video-block--bg-gradient-sky,
.video-list-block--bg-gradient-sky,
.list-block--bg-gradient-sky,
.data-table-block--bg-gradient-sky,
.team-block--bg-gradient-sky,
.news-block--bg-gradient-sky {
  background: linear-gradient(180deg, #eef6fc 0%, #f4faff 55%, #fff 100%);
}
.summary-block--bg-gradient-cream,
.card-block--bg-gradient-cream,
.card-group-block--bg-gradient-cream,
.max-card-block--bg-gradient-cream,
.modern-block--bg-gradient-cream,
.accordion-block--bg-gradient-cream,
.event-block--bg-gradient-cream,
.video-block--bg-gradient-cream,
.video-list-block--bg-gradient-cream,
.list-block--bg-gradient-cream,
.data-table-block--bg-gradient-cream,
.team-block--bg-gradient-cream,
.news-block--bg-gradient-cream {
  background: linear-gradient(180deg, #faf8f5 0%, #fff9f3 50%, #fff 100%);
}
.summary-block--bg-gradient-lavender,
.card-block--bg-gradient-lavender,
.card-group-block--bg-gradient-lavender,
.max-card-block--bg-gradient-lavender,
.modern-block--bg-gradient-lavender,
.accordion-block--bg-gradient-lavender,
.event-block--bg-gradient-lavender,
.video-block--bg-gradient-lavender,
.video-list-block--bg-gradient-lavender,
.list-block--bg-gradient-lavender,
.data-table-block--bg-gradient-lavender,
.team-block--bg-gradient-lavender,
.news-block--bg-gradient-lavender {
  background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 48%, #faf8f5 100%);
}
.summary-block--bg-gradient-mint,
.card-block--bg-gradient-mint,
.card-group-block--bg-gradient-mint,
.max-card-block--bg-gradient-mint,
.modern-block--bg-gradient-mint,
.accordion-block--bg-gradient-mint,
.event-block--bg-gradient-mint,
.video-block--bg-gradient-mint,
.video-list-block--bg-gradient-mint,
.list-block--bg-gradient-mint,
.data-table-block--bg-gradient-mint,
.team-block--bg-gradient-mint,
.news-block--bg-gradient-mint {
  background: linear-gradient(180deg, #f0faf6 0%, #f7fcfa 52%, #fff 100%);
}
.summary-block--bg-gradient-blush,
.card-block--bg-gradient-blush,
.card-group-block--bg-gradient-blush,
.max-card-block--bg-gradient-blush,
.modern-block--bg-gradient-blush,
.accordion-block--bg-gradient-blush,
.event-block--bg-gradient-blush,
.video-block--bg-gradient-blush,
.video-list-block--bg-gradient-blush,
.list-block--bg-gradient-blush,
.data-table-block--bg-gradient-blush,
.team-block--bg-gradient-blush,
.news-block--bg-gradient-blush {
  background: linear-gradient(180deg, #fdf2f4 0%, #fef8f6 50%, #fff 100%);
}
.summary-block--bg-gradient-peach,
.card-block--bg-gradient-peach,
.card-group-block--bg-gradient-peach,
.max-card-block--bg-gradient-peach,
.modern-block--bg-gradient-peach,
.accordion-block--bg-gradient-peach,
.event-block--bg-gradient-peach,
.video-block--bg-gradient-peach,
.video-list-block--bg-gradient-peach,
.list-block--bg-gradient-peach,
.data-table-block--bg-gradient-peach,
.team-block--bg-gradient-peach,
.news-block--bg-gradient-peach {
  background: linear-gradient(180deg, rgba(255, 244, 229, 0.85) 0%, rgba(255, 250, 245, 0.55) 48%, #fff 100%);
}
.summary-block--bg-gradient-dusk,
.card-block--bg-gradient-dusk,
.card-group-block--bg-gradient-dusk,
.max-card-block--bg-gradient-dusk,
.modern-block--bg-gradient-dusk,
.accordion-block--bg-gradient-dusk,
.event-block--bg-gradient-dusk,
.video-block--bg-gradient-dusk,
.video-list-block--bg-gradient-dusk,
.list-block--bg-gradient-dusk,
.data-table-block--bg-gradient-dusk,
.team-block--bg-gradient-dusk,
.news-block--bg-gradient-dusk {
  background: linear-gradient(135deg, #f4f4f5 0%, #f0f4f8 42%, #faf8f5 100%);
}
