@charset "UTF-8";
/*
  Usage example for @mixin media($width, $type: min);

    @include media('tablet-wide') { //Tablet-Wide & Up
    @include media('tablet-wide', max) { //Tablet-Wide & Down
 */
/*
  Usage example for @mixin prefix($prop, $value) {
  @include prefix(transform, scale3d(2.5, 2, 1.5));
 */
/*
  Usage example for cover-background {
  @include cover-background;
 */
/*
  Usage example for truncate-text {
  @include truncate-text;
 */
/*
  Usage example for @mixin media($width, $type: min);

    @include media('tablet-wide') { //Tablet-Wide & Up
    @include media('tablet-wide', max) { //Tablet-Wide & Down
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.3;
  font-size: 105%;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.35;
}

h1, .h1 {
  font-size: clamp(30px, 2.6vw, 40px);
}

h2, .h2 {
  font-size: clamp(26px, 2.4vw, 36px);
}

h3, .h3 {
  font-size: clamp(20px, 2vw, 24px);
}

h4, .h4 {
  font-size: clamp(18px, 1.75vw, 26px);
}

h5, .h5 {
  font-size: clamp(14px, 1.5vw, 24px);
}

h6, .h6 {
  font-size: clamp(10px, 1.25vw, 20px);
}

img {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: #FFFFFF;
  color: #213256;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.flex {
  display: flex;
}
.flex.column {
  flex-direction: column;
}
.flex.justify-space-between {
  justify-content: space-between;
}
.flex.justify-center {
  justify-content: center;
}
.flex.align-center {
  align-items: center;
}

/*** include global styles ***/
.archive-page {
  padding-bottom: clamp(48px, 6vw, 96px);
}
.archive-page__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}
.archive-page__header {
  padding: clamp(32px, 4vw, 72px) 0 clamp(24px, 3vw, 40px);
}
.archive-page__title {
  margin: 8px 0 0;
  color: #213256;
  font-weight: 400;
  font-size: clamp(28px, 2.2916666667vw, 44px);
  line-height: 1.2727272727;
}
.archive-page__description, .archive-page__count {
  margin: 12px 0 0;
  color: #9A9D9C;
  font-size: 16px;
}
.archive-page__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: clamp(20px, 2.5vw, 32px);
}
.archive-page__filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 16px;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  color: #9A9D9C;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.archive-page__filter:hover {
  border-color: #395691;
  color: #395691;
}
.archive-page__filter--active {
  background: #213256;
  border-color: #213256;
  color: #FFFFFF;
}
.archive-page__filter--active:hover {
  color: #FFFFFF;
}
.archive-page__filter--empty {
  opacity: 0.45;
}
.archive-page__filter-count {
  display: inline-block;
  min-width: 20px;
  padding: 1px 6px;
  background: #f3f5f9;
  border-radius: 10px;
  color: #64748b;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
  text-align: center;
}
.archive-page__filter--active .archive-page__filter-count {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.archive-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
@media only screen and (max-width: 991px) {
  .archive-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 479px) {
  .archive-page__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.archive-page__results {
  transition: opacity 0.15s ease;
}
.archive-page__results--busy {
  opacity: 0.45;
  pointer-events: none;
}
.archive-page__empty {
  max-width: 52ch;
  color: #9A9D9C;
  font-size: 16px;
}
.archive-page__empty-title {
  margin: 0 0 12px;
  color: #213256;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
}
.archive-page__empty-tips {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}
.archive-page__empty-tips li + li {
  margin-top: 4px;
}
.archive-page__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 56px);
}
.archive-page__more[hidden] {
  display: none;
}

.c-article-card__title mark {
  background: rgba(227, 63, 69, 0.12);
  border-radius: 2px;
  color: inherit;
}

.c-article-card__excerpt mark {
  padding: 0 2px;
  background: rgba(227, 63, 69, 0.14);
  border-radius: 2px;
  color: inherit;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .archive-page__results {
    transition: none;
  }
}
.entry-page {
  padding-bottom: clamp(48px, 6vw, 96px);
}
.entry-page__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}
.entry-page__header {
  padding: clamp(32px, 4vw, 72px) 0 clamp(20px, 2.5vw, 32px);
}
.entry-page__title {
  margin: 8px 0 clamp(20px, 2.5vw, 32px);
  color: #213256;
  font-weight: 400;
  font-size: clamp(28px, 2.2916666667vw, 44px);
  line-height: 1.2727272727;
}
.entry-page__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 788px);
  gap: clamp(24px, 3vw, 48px);
}
@media only screen and (max-width: 991px) {
  .entry-page__body {
    grid-template-columns: minmax(0, 1fr);
  }
}
.entry-page__image {
  grid-column: 1/-1;
  margin-bottom: clamp(24px, 3vw, 40px);
  line-height: 0;
}
.entry-page__img {
  width: 100%;
  height: auto;
}
.entry-page__content {
  grid-column: 2;
  color: #343D3A;
  font-size: 16px;
  line-height: 1.75;
}
@media only screen and (max-width: 991px) {
  .entry-page__content {
    grid-column: 1;
  }
}
.entry-page__content p {
  margin: 0 0 1.5em;
}

.entry-details {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(20px, 3vw, 48px);
}
.entry-details__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px);
  margin: 0;
}
.entry-details__label {
  margin: 0 0 4px;
  color: #9A9D9C;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.entry-details__value {
  margin: 0;
  color: #213256;
  font-size: 16px;
}

.site-footer {
  background: #f5f7fb;
  color: #2d3e5f;
  font-size: 14px;
}
.site-footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 24px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 120px repeat(3, 1fr);
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  max-width: 80px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li {
  margin-bottom: 8px;
}
.footer-column a {
  color: #5a6c8c;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-column a:hover {
  color: #1f2f4d;
}

.footer-social {
  margin-top: 40px;
}
.footer-social span {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e6ebf3;
  color: #2d3e5f;
  transition: all 0.2s ease;
}
.social-icons a:hover {
  background: #2d3e5f;
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid #e1e6ef;
  padding: 20px 0;
  font-size: 12px;
  color: #6b7c99;
}
.footer-bottom .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 800px) {
  .footer-bottom .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-meta p {
  margin: 2px 0;
}

.footer-logos {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-logos img {
  height: 30px;
  width: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  z-index: 10000;
  transition: background-color 0.2s ease;
}
.site-header.homepage-nav {
  background: transparent;
}
.site-header.homepage-nav .nav-item__link {
  color: #213256;
}
.site-header.is-scrolled, .site-header.nav-open {
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(33, 50, 86, 0.08);
}
.site-header.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 40px;
  max-width: 1512px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .nav-container {
    height: 70px;
    padding: 0 24px;
  }
}

.nav-logo {
  flex-shrink: 0;
  z-index: 2;
}
.nav-logo a {
  display: block;
  line-height: 0;
}
.nav-logo img {
  height: 60px;
  width: auto;
}
@media only screen and (max-width: 991px) {
  .nav-logo img {
    height: 44px;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .nav-actions {
    gap: 16px;
  }
}

.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  color: #213256;
  cursor: pointer;
  transition: color 0.2s ease;
  border-radius: 4px;
}
.nav-search-btn:hover {
  color: #E33F45;
}
.nav-search-btn:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}
.nav-search-btn[aria-expanded=true] {
  color: #E33F45;
}

.nav-login-link {
  font-size: 16px;
  font-weight: 400;
  color: #213256;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-login-link:hover {
  color: #395691;
}
@media only screen and (max-width: 991px) {
  .nav-login-link {
    display: none;
  }
}

.nav-join-link {
  font-size: 16px;
  font-weight: 400;
  color: #E33F45;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.nav-join-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.nav-join-link:hover {
  color: #d63030;
}
.nav-join-link:hover svg {
  transform: translateX(3px);
}
@media only screen and (max-width: 991px) {
  .nav-join-link {
    display: none;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}
@media only screen and (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }
}
.nav-toggle:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #213256;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mega-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 991px) {
  .mega-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    overflow-y: auto;
    transform: none;
    z-index: 9999;
  }
  .mega-nav.is-active {
    display: flex;
  }
}

.nav-item {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .nav-item {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid #f1f5f9;
  }
}
.nav-item__link {
  font-size: 16px;
  font-weight: 400;
  color: #213256;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  padding: 4px 0;
}
.nav-item__link:hover {
  color: #E33F45;
}
.nav-item__link:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 4px;
  border-radius: 2px;
}
.nav-item__link[aria-expanded=true], .nav-item.is-open .nav-item__link {
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .nav-item__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 18px;
  }
  .has-mega-menu .nav-item__link::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #213256;
    border-bottom: 2px solid #213256;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .has-mega-menu .nav-item__link[aria-expanded=true]::after {
    transform: rotate(-135deg);
  }
}
.nav-item.has-mega-menu.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0s;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #FFFFFF;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;
  z-index: 10001;
  backdrop-filter: blur(10px);
}
@media only screen and (max-width: 991px) {
  .mega-menu {
    position: static;
    width: 100%;
    margin-left: 0;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    backdrop-filter: none;
    box-shadow: none;
    display: none;
    padding-bottom: 16px;
  }
  .nav-item.is-open .mega-menu {
    display: block;
  }
}
.mega-menu__inner {
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 338px;
}
@media only screen and (max-width: 991px) {
  .mega-menu__inner {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 0;
  }
}
.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
  padding: 48px 0;
}
@media only screen and (max-width: 991px) {
  .mega-menu__columns {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 8px 0 0;
  }
}
.mega-menu__column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mega-menu__title {
  font-size: 16px;
  font-weight: 700;
  color: #213256;
  margin: 0 0 6px;
  font-feature-settings: "case" 1;
}
.mega-menu__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mega-menu__link {
  font-size: 16px;
  line-height: 24px;
  color: #213256;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 400;
}
.mega-menu__link:hover {
  color: #E33F45;
}
.mega-menu__link:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
  border-radius: 2px;
}

.mega-panel {
  background: linear-gradient(145deg, #213256 0%, rgb(21.6857142857, 32.8571428571, 56.5142857143) 100%);
  color: #FFFFFF;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .mega-panel {
    display: none;
  }
}
.mega-panel__text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 32px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}
.mega-panel__text::before {
  content: "“";
}
.mega-panel__text::after {
  content: "”";
}
.mega-panel__author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.mega-panel__image {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.mega-panel__meta {
  display: flex;
  flex-direction: column;
}
.mega-panel__name {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.mega-panel__role {
  font-size: 14px;
  line-height: 24px;
  opacity: 0.8;
}

.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 10002;
  padding: clamp(24px, 3vw, 40px) 0;
  animation: searchSlideDown 0.25s ease;
}
.search-overlay[hidden] {
  display: none;
}
.search-overlay__container {
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 991px) {
  .search-overlay__container {
    padding: 0 24px;
  }
}
.search-overlay__form {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid #213256;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.search-overlay__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: clamp(18px, 1.5vw, 24px);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #213256;
  background: none;
}
.search-overlay__input::-moz-placeholder {
  color: #9A9D9C;
}
.search-overlay__input::placeholder {
  color: #9A9D9C;
}
.search-overlay__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  color: #213256;
  cursor: pointer;
  transition: color 0.2s ease;
  border-radius: 4px;
}
.search-overlay__submit:hover {
  color: #E33F45;
}
.search-overlay__submit:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}
.search-overlay__filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.search-overlay__filter-label {
  font-size: 14px;
  color: #9A9D9C;
  font-weight: 500;
}
.search-overlay__filter {
  font-size: 14px;
  font-weight: 400;
  color: #9A9D9C;
  background: none;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 6px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.search-overlay__filter:hover {
  border-color: #395691;
  color: #395691;
}
.search-overlay__filter:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}
.search-overlay__filter--active {
  background: #213256;
  color: #FFFFFF;
  border-color: #213256;
}
.search-overlay__filter--active:hover {
  background: #395691;
  border-color: #395691;
  color: #FFFFFF;
}

@keyframes searchSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mega-nav__mobile-footer {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mega-nav.is-active {
    display: flex;
  }
  .mega-nav.is-active::after {
    content: "";
    display: block;
    flex-shrink: 0;
    height: 80px;
  }
  .mega-nav__mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
  }
  .mega-nav__mobile-footer a {
    font-size: 16px;
    color: #213256;
    text-decoration: none;
    padding: 12px 0;
  }
  .mega-nav__mobile-footer a.nav-join-link--mobile {
    color: #E33F45;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mega-nav__mobile-footer a.nav-join-link--mobile svg {
    width: 16px;
    height: 16px;
  }
}
.admin-bar .site-header {
  top: 32px;
}
@media only screen and (max-width: 991px) {
  .admin-bar .mega-nav {
    top: 102px;
  }
}
@media only screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
  .admin-bar .mega-nav {
    top: 116px;
  }
}
@media only screen and (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
  .admin-bar .mega-nav {
    top: 70px;
  }
}

body {
  padding-top: 92px;
}
@media only screen and (max-width: 991px) {
  body {
    padding-top: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu,
  .search-overlay,
  .nav-toggle__bar {
    transition: none !important;
    animation: none !important;
  }
}
.member-check,
.member-gate,
.member-login {
  padding: clamp(40px, 5vw, 90px) 0 clamp(48px, 6vw, 96px);
}
.member-check__container,
.member-gate__container,
.member-login__container {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}
.member-check__title,
.member-gate__title,
.member-login__title {
  margin: 0 0 16px;
  color: #213256;
  font-weight: 400;
  font-size: clamp(28px, 2.0833333333vw, 40px);
  line-height: 1.3;
}

.member-check__intro {
  margin: 0 0 clamp(24px, 3vw, 40px);
  color: #343D3A;
  font-size: 16px;
  line-height: 1.7;
}
.member-check__form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
  padding: clamp(20px, 2.5vw, 32px);
  border: 1px solid #f1f5f9;
  border-radius: 8px;
}
.member-check__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 200px;
}
.member-check__field label {
  color: #213256;
  font-size: 14px;
  font-weight: 500;
}
.member-check__field input {
  padding: 10px 12px;
  border: 1px solid #dce3f0;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #213256;
}
.member-check__field input:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 1px;
}
.member-check__result {
  margin-top: clamp(24px, 3vw, 40px);
  padding: clamp(20px, 2.5vw, 32px);
  border-left: 4px solid #dce3f0;
  background: #f9fafb;
}
.member-check__result--current {
  border-left-color: #2e7d59;
}
.member-check__result--lapsed {
  border-left-color: #ED8758;
}
.member-check__result--not_found, .member-check__result--limited {
  border-left-color: #E33F45;
}
.member-check__status {
  margin: 0 0 12px;
  color: #213256;
  font-size: 20px;
  font-weight: 500;
}
.member-check__record {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 16px;
}
.member-check__record dt {
  margin-bottom: 4px;
  color: #9A9D9C;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.member-check__record dd {
  margin: 0;
  color: #213256;
  font-size: 16px;
}
.member-check__share {
  margin: 0;
  color: #9A9D9C;
  font-size: 14px;
  word-break: break-all;
}
.member-check__share a {
  color: #E33F45;
}

.member-gate__excerpt {
  margin: 0 0 clamp(24px, 3vw, 40px);
  color: #343D3A;
  font-size: 18px;
  line-height: 1.7;
}
.member-gate__panel {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  background: #f9fafb;
}
.member-gate__heading {
  margin: 0 0 12px;
  color: #213256;
  font-weight: 500;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.3333333333;
}
.member-gate__text {
  margin: 0 0 24px;
  color: #343D3A;
  font-size: 16px;
  line-height: 1.7;
}
.member-gate__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.member-login__intro, .member-login__help {
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  color: #343D3A;
  font-size: 16px;
  line-height: 1.7;
}
.member-login__intro a, .member-login__help a {
  color: #E33F45;
}
.member-login__notice {
  margin: 0 0 24px;
  padding: 14px 18px;
  border-left: 4px solid #E33F45;
  background: #f9fafb;
  color: #213256;
  font-size: 15px;
}
.member-login__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: 420px;
  padding: clamp(20px, 2.5vw, 32px);
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.member-login__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.member-login__field label {
  color: #213256;
  font-size: 14px;
  font-weight: 500;
}
.member-login__field input {
  padding: 10px 12px;
  border: 1px solid #dce3f0;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #213256;
}
.member-login__field input:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 1px;
}

.journey {
  padding: clamp(40px, 5vw, 90px) 0 clamp(48px, 6vw, 96px);
}
.journey__container {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}
.journey__title {
  margin: 0 0 16px;
  color: #213256;
  font-weight: 400;
  font-size: clamp(28px, 2.0833333333vw, 40px);
  line-height: 1.3;
}
.journey__intro {
  margin: 0 0 clamp(24px, 3vw, 40px);
  color: #343D3A;
  font-size: 17px;
  line-height: 1.7;
}
.journey__panel {
  margin-bottom: clamp(24px, 3vw, 40px);
  padding: clamp(20px, 2.5vw, 32px);
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  background: #f9fafb;
}
.journey__panel--done {
  border-left: 4px solid #2e7d59;
}
.journey__panel p {
  margin: 0 0 20px;
  color: #343D3A;
  font-size: 16px;
  line-height: 1.7;
}
.journey__panel-title {
  margin: 0 0 16px;
  color: #213256;
  font-weight: 500;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.3333333333;
}
.journey__requirements {
  margin: 0 0 24px;
  padding-left: 20px;
  color: #343D3A;
  font-size: 16px;
  line-height: 1.9;
}
.journey__choices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.journey__notice {
  margin: 0 0 24px;
  padding: 14px 18px;
  border-left: 4px solid #E33F45;
  background: #f9fafb;
  color: #213256;
  font-size: 15px;
}
.journey__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 440px;
  padding: clamp(20px, 2.5vw, 32px);
  border: 1px solid #f1f5f9;
  border-radius: 8px;
}
.journey__form-intro {
  margin: 0;
  color: #343D3A;
  font-size: 15px;
  line-height: 1.6;
}
.journey__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.journey__field label {
  color: #213256;
  font-size: 14px;
  font-weight: 500;
}
.journey__field input {
  padding: 10px 12px;
  border: 1px solid #dce3f0;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #213256;
}
.journey__field input:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 1px;
}
.journey__decoy {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.journey__consent {
  margin: 0;
  color: #9A9D9C;
  font-size: 13px;
  line-height: 1.6;
}

section.mt-default {
  margin-top: clamp(10px, 1.042vw, 20px);
}
section.mb-default {
  margin-bottom: clamp(10px, 1.042vw, 20px);
}
section.pt-default {
  padding-top: clamp(10px, 1.042vw, 20px);
}
section.pb-default {
  padding-bottom: clamp(10px, 1.042vw, 20px);
}
section.mt-none {
  margin-top: 0vw;
}
section.mb-none {
  margin-bottom: 0vw;
}
section.pt-none {
  padding-top: 0vw;
}
section.pb-none {
  padding-bottom: 0vw;
}
section.mt-small {
  margin-top: clamp(10px, 1.042vw, 20px);
}
section.mb-small {
  margin-bottom: clamp(10px, 1.042vw, 20px);
}
section.pt-small {
  padding-top: clamp(10px, 1.042vw, 20px);
}
section.pb-small {
  padding-bottom: clamp(10px, 1.042vw, 20px);
}
section.mt-medium {
  margin-top: clamp(25px, 2.604vw, 50px);
}
section.mb-medium {
  margin-bottom: clamp(25px, 2.604vw, 50px);
}
section.pt-medium {
  padding-top: clamp(25px, 2.604vw, 50px);
}
section.pb-medium {
  padding-bottom: clamp(25px, 2.604vw, 50px);
}
section.mt-large {
  margin-top: clamp(40px, 4.166vw, 80px);
}
section.mb-large {
  margin-bottom: clamp(40px, 4.166vw, 80px);
}
section.pt-large {
  padding-top: clamp(40px, 4.166vw, 80px);
}
section.pb-large {
  padding-bottom: clamp(40px, 4.166vw, 80px);
}

.components .content-wrapper:first-child section {
  padding-top: 0;
}
.components .content-wrapper:last-of-type section {
  padding-bottom: 0;
}

main.body-container {
  width: 100%;
}
main.body-container .components {
  width: 100%;
  max-width: calc(1480px - 6vw);
  flex: 0 0 auto;
}

.wrapper {
  max-width: calc(1440px + 6vw);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3vw;
  padding-right: 3vw;
}

/*** include components ***/
header.feature-article-hero {
  position: relative;
  background: linear-gradient(135deg, #213256 0%, rgb(25.9285714286, 39.2857142857, 67.5714285714) 100%);
  padding: clamp(120px, 10vw, 200px) 0 clamp(40px, 4vw, 80px);
  overflow: hidden;
}

.feature-article-hero__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  position: relative;
  z-index: 1;
}

.feature-article-hero__featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  margin-bottom: clamp(40px, 4vw, 80px);
}
@media only screen and (min-width: 992px) {
  .feature-article-hero__featured {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 4vw, 80px);
  }
}

.feature-article-hero__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.5vw, 24px);
}

.feature-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-article-hero__date {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.feature-article-hero__title {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.feature-article-hero__title a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.feature-article-hero__title a:hover, .feature-article-hero__title a:focus-visible {
  color: #E33F45;
}

.feature-article-hero__excerpt {
  margin: 0;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 524px;
}

.feature-article-hero__image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 507/328;
}
@media only screen and (max-width: 991px) {
  .feature-article-hero__image {
    aspect-ratio: 16/9;
  }
}

.feature-article-hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-article-hero__related {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media only screen and (min-width: 768px) {
  .feature-article-hero__related {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-article-hero__related-card {
  display: flex;
  gap: 16px;
  padding: 24px 24px 24px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .feature-article-hero__related-card {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px;
  }
  .feature-article-hero__related-card:first-child {
    padding-left: 0;
  }
  .feature-article-hero__related-card:last-child {
    border-right: none;
  }
}
.feature-article-hero__related-card:hover .feature-article-hero__related-title {
  color: #E33F45;
}
.feature-article-hero__related-card:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
  border-radius: 4px;
}

.feature-article-hero__related-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
}

.feature-article-hero__related-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-article-hero__related-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-article-hero__related-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
  transition: color 0.2s ease;
}

.feature-article-hero__related-date {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: auto;
}

@media (max-width: 767px) {
  header.feature-article-hero {
    padding-top: 100px;
  }
  .feature-article-hero__image {
    order: -1;
  }
  .feature-article-hero__related-image {
    width: 100px;
    height: 100px;
  }
}
header.homepage-hero {
  height: 100%;
  background: #FAF8FD;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  header.homepage-hero {
    max-height: 620px;
    min-height: clamp(460px, 32.292vw, 620px);
  }
}

.hero-container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: inherit;
  height: 100%;
  padding-top: clamp(90px, 8vw, 150px);
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 90px);
  }
}

.homepage-hero__content {
  align-self: center;
  max-width: 560px;
  padding-bottom: clamp(40px, 6vw, 100px);
}

.homepage-hero__title {
  margin: 0 0 clamp(18px, 1.5vw, 28px);
  color: #213256;
  font-size: clamp(32px, 3.33vw, 64px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.homepage-hero__title span {
  color: #E33F45;
}

.homepage-hero__description {
  max-width: 477px;
  margin: 0;
  color: #213256;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.55;
}

.homepage-hero__image-wrap {
  position: relative;
  align-self: end;
  justify-self: center;
  width: 100%;
  max-width: 560px;
  z-index: 2;
}
.homepage-hero__image-wrap::after {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border-radius: 50%;
  background: #5A75C0;
  filter: blur(200px);
  z-index: -1;
  pointer-events: none;
}

.homepage-hero__image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
}

@media (max-width: 767px) {
  header.homepage-hero {
    padding-top: 100px;
  }
  .hero-container {
    padding-top: 90px;
    padding-bottom: 0;
    align-items: start;
  }
  .homepage-hero__content {
    padding-bottom: 30px;
  }
  .homepage-hero__title {
    font-size: clamp(34px, 10vw, 48px);
  }
  .homepage-hero__description {
    max-width: 320px;
    font-size: 15px;
  }
  .homepage-hero__image-wrap {
    max-width: 390px;
    margin-top: auto;
    justify-self: end;
  }
}
header.inner-hero {
  position: relative;
  background: #FAF8FD;
  padding: clamp(120px, 10vw, 180px) 0 clamp(40px, 4vw, 80px);
  overflow: hidden;
}
header.inner-hero--has-bg {
  background: #213256;
}
header.inner-hero--has-bg .inner-hero__title {
  color: #FFFFFF;
}
header.inner-hero--has-bg .inner-hero__description {
  color: rgba(255, 255, 255, 0.8);
}
header.inner-hero--has-bg .inner-hero__breadcrumb-list,
header.inner-hero--has-bg .inner-hero__breadcrumb-list a {
  color: rgba(255, 255, 255, 0.7);
}
header.inner-hero--has-bg .inner-hero__breadcrumb-list a:hover {
  color: #FFFFFF;
}

.inner-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.inner-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.inner-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inner-hero__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.inner-hero__breadcrumbs {
  margin-bottom: clamp(16px, 1.5vw, 24px);
}

.inner-hero__breadcrumb-list {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #9A9D9C;
  margin: 0;
}
.inner-hero__breadcrumb-list a {
  color: #9A9D9C;
  text-decoration: none;
  transition: color 0.2s ease;
}
.inner-hero__breadcrumb-list a:hover, .inner-hero__breadcrumb-list a:focus-visible {
  color: #213256;
}
.inner-hero__breadcrumb-list .breadcrumb_last {
  color: #213256;
  font-weight: 500;
}

.inner-hero__title {
  margin: 0 0 clamp(12px, 1vw, 20px);
  color: #213256;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.inner-hero__title span {
  color: #E33F45;
}

.inner-hero__description {
  margin: 0;
  color: #343D3A;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 767px) {
  header.inner-hero {
    padding-top: 100px;
  }
  .inner-hero__title {
    font-size: clamp(28px, 8vw, 40px);
  }
}
header.page-hero-blue {
  position: relative;
  background: linear-gradient(135deg, #213256 0%, rgb(25.9285714286, 39.2857142857, 67.5714285714) 100%);
  padding: clamp(120px, 10vw, 200px) 0 clamp(60px, 5vw, 100px);
  overflow: hidden;
}

.page-hero-blue__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .page-hero-blue__container {
    grid-template-columns: 1fr auto;
    gap: clamp(40px, 4vw, 80px);
  }
}

.page-hero-blue__content {
  max-width: 693px;
}

.page-hero-blue__subtitle {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-blue__title {
  margin: 0 0 clamp(16px, 1.5vw, 24px);
  font-size: clamp(32px, 3.5vw, 64px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.page-hero-blue__title span {
  color: #E33F45;
}

.page-hero-blue__description {
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 524px;
}
.page-hero-blue__description p {
  margin: 0 0 1em;
}
.page-hero-blue__description p:last-child {
  margin-bottom: 0;
}

.page-hero-blue__image {
  display: none;
}
@media only screen and (min-width: 992px) {
  .page-hero-blue__image {
    display: block;
    position: relative;
    width: clamp(300px, 25vw, 508px);
    align-self: stretch;
  }
}

.page-hero-blue__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

@media only screen and (min-width: 1248px) {
  header.page-hero-blue--has-image .page-hero-blue__image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 90%;
    width: auto;
    max-width: 508px;
  }
  header.page-hero-blue--has-image .page-hero-blue__img {
    height: 100%;
    width: auto;
  }
}

@media (max-width: 767px) {
  header.page-hero-blue {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .page-hero-blue__image {
    display: block;
    margin-top: 32px;
    width: 100%;
    max-height: 310px;
    overflow: hidden;
    border-radius: 8px;
  }
}
header.page-hero-gradient {
  position: relative;
  background: #FAF8FD;
  padding: clamp(120px, 10vw, 200px) 0 clamp(60px, 5vw, 100px);
  overflow: hidden;
}

.page-hero-gradient__circles {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  pointer-events: none;
}

.page-hero-gradient__circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.page-hero-gradient__circle--small {
  width: clamp(200px, 20vw, 300px);
  height: clamp(200px, 20vw, 300px);
  background: #395691;
  top: 50%;
  left: 30%;
  transform: translateY(-30%);
}
.page-hero-gradient__circle--large {
  width: clamp(300px, 30vw, 484px);
  height: clamp(300px, 30vw, 484px);
  background: #5A75C0;
  top: 20%;
  right: -5%;
}

.page-hero-gradient__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 992px) {
  .page-hero-gradient__container {
    margin-left: clamp(80px, 8vw, 160px);
  }
}

.page-hero-gradient__subtitle {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #395691;
}

.page-hero-gradient__title {
  margin: 0 0 clamp(16px, 1.5vw, 24px);
  font-size: clamp(32px, 3.5vw, 64px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #213256;
}
.page-hero-gradient__title span {
  color: #E33F45;
}

.page-hero-gradient__description {
  margin: 0;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.6;
  color: #343D3A;
  max-width: 693px;
}

@media (max-width: 767px) {
  header.page-hero-gradient {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .page-hero-gradient__container {
    margin-left: auto;
  }
  .page-hero-gradient__circles {
    width: 80%;
    right: -20%;
  }
}
header.page-hero-image {
  position: relative;
  background: #213256;
  padding: clamp(120px, 10vw, 200px) 0 clamp(60px, 5vw, 100px);
  overflow: hidden;
  min-height: clamp(350px, 30vw, 518px);
  display: flex;
  align-items: center;
}

.page-hero-image__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-image__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33, 50, 86, 0.85) 0%, rgba(33, 50, 86, 0.4) 100%);
  z-index: 1;
}

.page-hero-image__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-hero-image__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  position: relative;
  z-index: 2;
  max-width: 693px;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .page-hero-image__container {
    margin-left: clamp(80px, 8vw, 160px);
  }
}

.page-hero-image__subtitle {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-image__title {
  margin: 0 0 clamp(16px, 1.5vw, 24px);
  font-size: clamp(32px, 3.5vw, 64px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.page-hero-image__title span {
  color: #E33F45;
}

.page-hero-image__description {
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 524px;
}
.page-hero-image__description p {
  margin: 0 0 1em;
}
.page-hero-image__description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  header.page-hero-image {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
  }
  .page-hero-image__container {
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero-image__bg::after {
    background: rgba(33, 50, 86, 0.75);
  }
}
header.page-hero-white {
  position: relative;
  background: linear-gradient(180deg, #FAF8FD 0%, #FFFFFF 100%);
  padding: clamp(120px, 10vw, 200px) 0 clamp(60px, 5vw, 100px);
  overflow: hidden;
}

.page-hero-white__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  position: relative;
  z-index: 1;
  max-width: 780px;
}
@media only screen and (min-width: 992px) {
  .page-hero-white__container {
    margin-left: clamp(80px, 8vw, 160px);
  }
}

.page-hero-white__subtitle {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #395691;
}

.page-hero-white__title {
  margin: 0 0 clamp(16px, 1.5vw, 24px);
  font-size: clamp(32px, 3.5vw, 64px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #213256;
}
.page-hero-white__title span {
  color: #E33F45;
}

.page-hero-white__description {
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.6;
  color: #343D3A;
  max-width: 524px;
}
.page-hero-white__description p {
  margin: 0 0 1em;
}
.page-hero-white__description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  header.page-hero-white {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .page-hero-white__container {
    margin-left: auto;
    margin-right: auto;
  }
}
header.profile-hero {
  position: relative;
  background: linear-gradient(135deg, #213256 0%, rgb(25.9285714286, 39.2857142857, 67.5714285714) 100%);
  padding: clamp(120px, 10vw, 160px) 0 clamp(40px, 3vw, 60px);
  overflow: hidden;
}

.profile-hero__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  position: relative;
  z-index: 1;
  max-width: 837px;
}
@media only screen and (min-width: 992px) {
  .profile-hero__container {
    margin-left: clamp(80px, 8vw, 160px);
  }
}

.profile-hero__name {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.5vw, 56px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.profile-hero__company {
  margin: 0;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
  header.profile-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .profile-hero__container {
    margin-left: auto;
    margin-right: auto;
  }
}
section.accordion-block {
  padding: clamp(60px, 6vw, 120px) 0;
}

.accordion-block__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media only screen and (max-width: 767px) {
  .accordion-block__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.accordion-block__content {
  max-width: 788px;
}

.accordion-block {
  padding: clamp(40px, 5.2vw, 100px) 0;
  background: #FFFFFF;
}
.accordion-block__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  .accordion-block__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
  }
}
.accordion-block .c-block-title {
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .accordion-block .c-block-title {
    margin-bottom: 0;
    position: sticky;
    top: 100px;
  }
}
.accordion-block .c-accordion {
  width: 100%;
}

header.article-header {
  padding: clamp(120px, 10vw, 180px) 0 0;
}

.article-header__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.article-header__top {
  max-width: 693px;
  margin-bottom: clamp(40px, 4vw, 80px);
  padding-bottom: clamp(16px, 1.5vw, 24px);
  border-bottom: 1px solid #f1f5f9;
}
@media only screen and (min-width: 992px) {
  .article-header__top {
    margin-left: auto;
  }
}

.article-header__title {
  margin: 0 0 clamp(16px, 1.5vw, 24px);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #213256;
}

.article-header__reading-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 24px;
  color: #9A9D9C;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (min-width: 992px) {
  .article-header__reading-time {
    margin-left: auto;
  }
}

.article-header__clock-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #9A9D9C;
}

.article-header__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 48px);
}
@media only screen and (min-width: 992px) {
  .article-header__bottom {
    grid-template-columns: auto 1fr;
    gap: clamp(32px, 4vw, 64px);
  }
}

.article-header__author {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #f9fafb;
  border-radius: 8px;
  align-self: start;
  max-width: 373px;
}

.article-header__author-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-header__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.article-header__author-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-header__author-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #213256;
}

.article-header__date {
  font-size: 14px;
  line-height: 24px;
  color: #9A9D9C;
}

.article-header__author-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.article-header__membership {
  font-size: 14px;
  line-height: 24px;
  color: #395691;
  font-weight: 500;
}

.article-header__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.article-header__image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 787/504;
}
@media only screen and (max-width: 991px) {
  .article-header__image {
    aspect-ratio: 16/9;
  }
}

.article-header__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  header.article-header {
    padding-top: 100px;
  }
  .article-header__bottom {
    grid-template-columns: 1fr;
  }
  .article-header__author {
    max-width: 100%;
  }
  .article-header__image {
    order: -1;
  }
}
.article-image-slider {
  padding: clamp(24px, 2vw, 40px) 0;
}

.article-image-slider__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.article-image-slider__body {
  max-width: 788px;
}
@media only screen and (min-width: 992px) {
  .article-image-slider__body {
    margin-left: auto;
  }
}

.article-image-slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.article-image-slider__track::-webkit-scrollbar {
  display: none;
}

.article-image-slider__slide {
  flex-shrink: 0;
  width: calc(50% - 12px);
  scroll-snap-align: start;
  border-radius: 6px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .article-image-slider__slide {
    width: 85%;
  }
}

.article-image-slider__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 382/245;
}

.article-image-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.article-image-slider__counter {
  font-size: 14px;
  line-height: 24px;
  color: #9A9D9C;
}

.article-image-slider__nav {
  display: flex;
  gap: 8px;
}

.article-image-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #f1f5f9;
  background: transparent;
  color: #213256;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.article-image-slider__arrow:hover {
  background: #f9fafb;
  border-color: #395691;
}
.article-image-slider__arrow:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}
.article-image-slider__arrow svg {
  width: 16px;
  height: 16px;
}

.article-large-image {
  padding: clamp(24px, 2vw, 40px) 0;
}

.article-large-image__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.article-large-image__figure {
  max-width: 788px;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .article-large-image__figure {
    margin-left: auto;
  }
}

.article-large-image__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.article-large-image__caption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #9A9D9C;
  font-style: italic;
}

.article-quote {
  padding: clamp(32px, 3vw, 56px) 0;
}

.article-quote__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.article-quote__block {
  max-width: 788px;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(16px, 1.5vw, 24px);
}
@media only screen and (min-width: 992px) {
  .article-quote__block {
    margin-left: auto;
  }
}

.article-quote__mark {
  font-family: "Roboto", sans-serif;
  font-size: clamp(56px, 5vw, 80px);
  line-height: 1;
  color: #E33F45;
  flex-shrink: 0;
  margin-top: -0.1em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.article-quote__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2vw, 40px);
}

.article-quote__text {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  color: #213256;
  font-style: normal;
}

.article-quote__attribution {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-quote__author {
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #213256;
}

.article-quote__role {
  font-size: 14px;
  line-height: 24px;
  color: #9A9D9C;
}

.article-table {
  padding: clamp(24px, 2vw, 40px) 0;
}

.article-table__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.article-table__body {
  max-width: 788px;
}
@media only screen and (min-width: 992px) {
  .article-table__body {
    margin-left: auto;
  }
}

.article-table__heading {
  margin: 0 0 clamp(24px, 2vw, 40px);
  font-size: clamp(24px, 1.8vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  color: #213256;
}

.article-table__rows {
  display: flex;
  flex-direction: column;
}

.article-table__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 1.2vw, 24px) 0;
  border-top: 1px solid #f1f5f9;
}
.article-table__row:last-child {
  border-bottom: 1px solid #f1f5f9;
}
@media only screen and (max-width: 767px) {
  .article-table__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.article-table__cell--label {
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-table__cell--content {
  font-size: 15px;
  line-height: 24px;
  color: #9A9D9C;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .article-table__cell--content {
    text-align: left;
  }
}

.article-table__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #213256;
}

.article-table__placeholder {
  display: inline-block;
  padding: 2px 8px;
  font-size: 13px;
  line-height: 22px;
  background: #f3f5f9;
  border-radius: 4px;
  color: #9A9D9C;
}

.article-text-button {
  padding: clamp(24px, 2vw, 40px) 0;
}

.article-text-button__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.article-text-button__body {
  max-width: 788px;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.5vw, 24px);
}
@media only screen and (min-width: 992px) {
  .article-text-button__body {
    margin-left: auto;
  }
}

.article-text-button__heading {
  margin: 0;
  font-size: clamp(20px, 1.4vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  color: #213256;
}

.article-text-button__content {
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.75;
  color: #343D3A;
}
.article-text-button__content p {
  margin: 0 0 1.5em;
}
.article-text-button__content p:last-child {
  margin-bottom: 0;
}

.article-text-button__cta {
  padding-top: 8px;
}

.article-text {
  padding: clamp(24px, 2vw, 40px) 0;
}

.article-text__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.article-text__body {
  max-width: 788px;
}
@media only screen and (min-width: 992px) {
  .article-text__body {
    margin-left: auto;
  }
}

.article-text__heading {
  margin: 0 0 clamp(16px, 1.5vw, 24px);
  font-size: clamp(20px, 1.4vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  color: #213256;
}

.article-text__lead {
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.6;
  font-weight: 400;
  color: #213256;
  margin: 0 0 clamp(24px, 2vw, 40px);
}

.article-text__content {
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.75;
  color: #343D3A;
}
.article-text__content p {
  margin: 0 0 1.5em;
}
.article-text__content p:last-child {
  margin-bottom: 0;
}
.article-text__content h2,
.article-text__content h3,
.article-text__content h4 {
  color: #213256;
  margin: 2em 0 0.75em;
  font-weight: 500;
  line-height: 1.3;
}
.article-text__content h2:first-child,
.article-text__content h3:first-child,
.article-text__content h4:first-child {
  margin-top: 0;
}
.article-text__content h2 {
  font-size: clamp(22px, 1.5vw, 28px);
}
.article-text__content h3 {
  font-size: clamp(18px, 1.2vw, 22px);
}
.article-text__content ul,
.article-text__content ol {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
}
.article-text__content li {
  margin-bottom: 0.5em;
}
.article-text__content a {
  color: #E33F45;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.article-text__content a:hover {
  color: #395691;
}
.article-text__content blockquote {
  margin: 1.5em 0;
  padding-left: 1.5em;
  border-left: 3px solid #E33F45;
  font-style: italic;
  color: #213256;
}

.article-video {
  padding: clamp(24px, 2vw, 40px) 0;
}

.article-video__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.article-video__figure {
  max-width: 788px;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .article-video__figure {
    margin-left: auto;
  }
}

.article-video__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
}
.article-video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-video__player {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.article-video__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.article-video__caption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #9A9D9C;
  font-style: italic;
}

.article-warning {
  padding: clamp(24px, 2vw, 40px) 0;
}

.article-warning__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.article-warning__notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 788px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 6px;
  border-left: 3px solid #ED8758;
}
@media only screen and (min-width: 992px) {
  .article-warning__notice {
    margin-left: auto;
  }
}

.article-warning__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #ED8758;
  margin-top: 2px;
}

.article-warning__message {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #343D3A;
}

.card-grid {
  padding: clamp(40px, 5.2vw, 100px) 0;
  background: #FAF8FD;
}
.card-grid__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}
.card-grid__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2vw, 32px);
}
@media only screen and (min-width: 768px) {
  .card-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .card-grid__grid.card-grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .card-grid__grid.card-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .card-grid__grid.card-grid--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1248px) {
  .card-grid__grid.card-grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card-grid__card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.card-grid__card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .card-grid__card:hover {
    transform: none;
  }
}
.card-grid__card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card-grid__card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.card-grid__card:hover .card-grid__card-img {
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .card-grid__card:hover .card-grid__card-img {
    transform: none;
  }
}
.card-grid__card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
  gap: 12px;
}
@media only screen and (min-width: 768px) {
  .card-grid__card-content {
    padding: 28px;
  }
}
.card-grid__card-title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  color: #213256;
  margin: 0;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1;
}
.card-grid__card-text {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #343D3A;
  margin: 0;
  flex-grow: 1;
}
@media only screen and (min-width: 768px) {
  .card-grid__card-text {
    font-size: 15px;
  }
}
.card-grid .btn--tertiary {
  margin-top: auto;
  align-self: flex-start;
}

.content-list {
  padding: clamp(48px, 5vw, 96px) 0;
}
.content-list__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 788px);
  align-items: start;
}
.content-list__container .c-vertical-label {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}
@media only screen and (max-width: 991px) {
  .content-list__container {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
  }
}
.content-list__content {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 48px);
  width: 100%;
}
.content-list__heading {
  margin: 0;
  color: #213256;
  font-size: clamp(22px, 1.5625vw, 30px);
  line-height: 1.3333333333;
  font-weight: 400;
}
.content-list__items {
  display: flex;
  flex-direction: column;
}
.content-list__item {
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid #f1f5f9;
}
.content-list__item + .content-list__item {
  padding-top: clamp(24px, 3vw, 40px);
}

.content-row {
  padding: clamp(28px, 3vw, 48px) 0;
}
.content-row__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}
.content-row__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: clamp(10px, 0.8vw, 14px);
  margin-bottom: clamp(20px, 2vw, 32px);
  border-bottom: 1px solid #e8edf5;
}
.content-row__heading {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E33F45;
}
.content-row__grid {
  display: grid;
  gap: clamp(20px, 2.2vw, 32px);
}
.content-row__items {
  display: grid;
  gap: clamp(20px, 2.2vw, 32px);
}
.content-row--three .content-row__items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.content-row--feature_left .content-row__grid, .content-row--feature_right .content-row__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.content-row--feature_left .content-row__items, .content-row--feature_right .content-row__items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.content-row--feature_right .content-row__feature {
  order: 2;
}
.content-row--feature_right .content-row__items {
  order: 1;
}
@media only screen and (max-width: 991px) {
  .content-row--three .content-row__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-row--feature_left .content-row__grid, .content-row--feature_right .content-row__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .content-row--feature_right .content-row__feature {
    order: 0;
  }
  .content-row--feature_right .content-row__items {
    order: 0;
  }
}
@media only screen and (max-width: 479px) {
  .content-row--three .content-row__items, .content-row--feature_left .content-row__items, .content-row--feature_right .content-row__items {
    grid-template-columns: minmax(0, 1fr);
  }
}

.c-article-card--feature .c-article-card__image {
  aspect-ratio: 4/3;
}
.c-article-card--feature .c-article-card__title {
  font-size: clamp(20px, 1.4583333333vw, 28px);
  line-height: 1;
}

.c-article-card--compact .c-article-card__image {
  aspect-ratio: 16/10;
}
.c-article-card--compact .c-article-card__content {
  padding: 14px 0 0;
}
.c-article-card--compact .c-article-card__title {
  margin-bottom: 0;
  font-size: clamp(15px, 0.8854166667vw, 17px);
  line-height: 1.1764705882;
}

.cta-banner {
  background: url("../images/gradients/cta.jpg") no-repeat center center;
  background-size: cover;
  padding: clamp(70px, 7vw, 120px) 0;
  text-align: center;
}
.cta-banner__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 1.2vw, 20px);
}
.cta-banner__title {
  font-size: clamp(32px, 3.5vw, 60px);
  font-weight: 400;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.02em;
}
.cta-banner__description {
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 520px;
}
.cta-banner .btn--tertiary-white {
  margin-top: 12px;
}

section.feature-article {
  background: linear-gradient(135deg, #213256 0%, rgb(25.9285714286, 39.2857142857, 67.5714285714) 100%);
  padding: clamp(60px, 6vw, 120px) 0;
  overflow: hidden;
}

.feature-article__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .feature-article__container {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 4vw, 80px);
  }
}

.feature-article__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.5vw, 24px);
}

.feature-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-article__date {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.feature-article__title {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.feature-article__title a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.feature-article__title a:hover, .feature-article__title a:focus-visible {
  color: #E33F45;
}

.feature-article__excerpt {
  margin: 0;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 524px;
}

.feature-article__image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 507/328;
}

.feature-article__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .feature-article__image {
    order: -1;
    aspect-ratio: 16/9;
  }
}
.featured-posts {
  padding: clamp(30px, 4.68vw, 90px) 0;
  background: #FFFFFF;
}
.featured-posts__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
}
.featured-posts .c-vertical-label {
  position: sticky;
  top: 20px;
  margin-right: 16px;
}
.featured-posts__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .featured-posts__content {
    max-width: 100%;
    margin-left: 0;
  }
}
.featured-posts__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.featured-posts__card {
  display: grid;
  grid-template-columns: 1fr clamp(200px, 22vw, 320px);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 3vw, 44px) 0;
  border-bottom: 1px solid #e8edf5;
}
.featured-posts__card:first-child {
  padding-top: 0;
}
.featured-posts__card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .featured-posts__card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.featured-posts__card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.featured-posts__card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.featured-posts__date {
  font-size: 13px;
  color: #9A9D9C;
}
.featured-posts__category {
  font-size: 12px;
  font-weight: 500;
  color: #213256;
  padding: 4px 12px;
  background: #f3f5f9;
  border-radius: 4px;
}
.featured-posts__card-title {
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 600;
  line-height: 1.35;
  margin: 4px 0 0;
}
.featured-posts__card-title a {
  color: #213256;
  text-decoration: none;
  transition: color 0.2s ease;
}
.featured-posts__card-title a:hover {
  color: #395691;
}
.featured-posts__card-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #9A9D9C;
  margin: 2px 0 0;
  max-width: 500px;
}
.featured-posts__card-image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .featured-posts__card-image {
    order: -1;
    aspect-ratio: 16/9;
  }
}
.featured-posts__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-posts .btn--tertiary {
  margin-top: clamp(28px, 3vw, 44px);
}

section.form-component {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.intro-text {
  padding: clamp(30px, 4.68vw, 90px) 0;
}
.intro-text__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 788px);
}
.intro-text__container .c-vertical-label {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}
@media only screen and (max-width: 991px) {
  .intro-text__container {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
  }
  .intro-text__container .c-vertical-label {
    grid-column: 2;
  }
}
.intro-text__content {
  grid-column: 2;
  grid-row: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2vw, 32px);
}
@media only screen and (max-width: 991px) {
  .intro-text__content {
    grid-column: 1;
    max-width: 100%;
  }
}
.intro-text__body {
  color: #213256;
  font-size: clamp(20px, 1.3541666667vw, 26px);
  line-height: 1.6153846154;
}
.intro-text__body p,
.intro-text__body h1, .intro-text__body h2, .intro-text__body h3, .intro-text__body h4 {
  margin: 0 0 0.8em;
  font-family: "Roboto", sans-serif;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  color: inherit;
}
.intro-text__body p:last-child,
.intro-text__body h1:last-child, .intro-text__body h2:last-child, .intro-text__body h3:last-child, .intro-text__body h4:last-child {
  margin-bottom: 0;
}

.membership-cards {
  padding: clamp(30px, 4.68vw, 90px) 0;
  background: #FFFFFF;
}
.membership-cards__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}
.membership-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 64px);
}
@media (max-width: 767px) {
  .membership-cards__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.membership-cards__card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 20px;
}
.membership-cards__card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #213256 0%, #E33F45 100%);
}
.membership-cards__title {
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  color: #213256;
  margin: 0 0 12px;
  line-height: 1.35;
}
.membership-cards__description {
  font-size: 14px;
  line-height: 1.7;
  color: #9A9D9C;
  margin: 0 0 16px;
}
.membership-cards__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #E33F45;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.membership-cards__link::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}
.membership-cards__link:hover {
  gap: 10px;
}

.membership-headline {
  padding: clamp(80px, 9vw, 160px) 0;
  background: #FFFFFF;
}
.membership-headline__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}
.membership-headline__title {
  font-size: clamp(32px, 3.33vw, 64px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0;
  background: url("../images/gradients/full.jpg") no-repeat center center;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

section.news-listing {
  padding: clamp(60px, 6vw, 120px) 0;
}

.news-listing__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 788px);
  align-items: start;
}
.news-listing__container .c-vertical-label {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}
@media only screen and (max-width: 991px) {
  .news-listing__container {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
  }
}

.news-listing__content {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3vw, 56px);
  width: 100%;
}

.news-listing__list {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 44px);
}

.news-listing__divider {
  border: none;
  border-top: 1px solid #f1f5f9;
  margin: 0;
}

.news-listing__cta {
  padding-top: 8px;
}

.post-listing {
  padding: clamp(32px, 4vw, 64px) 0;
}
.post-listing__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}
.post-listing__heading {
  margin: 0 0 clamp(12px, 1.2vw, 20px);
  color: #213256;
  font-weight: 400;
  font-size: clamp(22px, 1.6666666667vw, 32px);
  line-height: 1.3125;
}
.post-listing__results {
  margin-top: clamp(20px, 2.5vw, 32px);
  transition: opacity 0.15s ease;
}
.post-listing__results--busy {
  opacity: 0.45;
  pointer-events: none;
}
.post-listing__pagination {
  margin-top: clamp(32px, 4vw, 56px);
}

@media (prefers-reduced-motion: reduce) {
  .post-listing__results {
    transition: none;
  }
}
.related-articles {
  padding: clamp(40px, 4vw, 80px) 0;
  overflow: hidden;
}

.related-articles__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.related-articles__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: clamp(12px, 1vw, 16px);
  margin-bottom: clamp(24px, 2.5vw, 40px);
  border-bottom: 1px solid #e8edf5;
}

.related-articles__heading {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #213256;
}

.related-articles__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.related-articles__track::-webkit-scrollbar {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .related-articles__track {
    scroll-behavior: auto;
  }
}

.related-articles__slide {
  flex: 0 0 auto;
  width: clamp(260px, 26vw, 320px);
  scroll-snap-align: start;
}

.related-articles__nav {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: clamp(20px, 2vw, 32px);
}

.related-articles__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #dce3f0;
  background: transparent;
  color: #213256;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.related-articles__arrow:hover {
  background: #f3f5f9;
  border-color: #395691;
}
.related-articles__arrow:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}
.related-articles__arrow[disabled] {
  opacity: 0.35;
  cursor: default;
}
.related-articles__arrow[disabled]:hover {
  background: transparent;
  border-color: #dce3f0;
}
.related-articles__arrow svg {
  width: 16px;
  height: 16px;
}

@media only screen and (max-width: 767px) {
  .related-articles__slide {
    width: 260px;
  }
  .related-articles__nav {
    justify-content: flex-start;
  }
}
.stats-banner {
  padding: clamp(30px, 4.68vw, 90px) 0;
  background: #FFFFFF;
}
.stats-banner__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 767px) {
  .stats-banner__container {
    grid-template-columns: 1fr;
  }
}
.stats-banner__image-wrap {
  border-radius: 8px;
  overflow: hidden;
  background: #e8edf5;
  min-height: 280px;
}
.stats-banner__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stats-banner__content {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.2vw, 20px);
}
.stats-banner__title {
  font-size: clamp(22px, 1.7vw, 32px);
  font-weight: 400;
  color: #213256;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.stats-banner__description {
  font-size: 14px;
  line-height: 1.75;
  color: #343D3A;
}
.stats-banner__description p {
  margin: 0;
}
.stats-banner__link-wrap {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid #dce3f0;
}
.stats-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E33F45;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.stats-banner__link::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
}
.stats-banner__link:hover {
  gap: 12px;
}
@media (max-width: 767px) {
  .stats-banner .c-vertical-label {
    display: none;
  }
}

section.tab-accordion {
  padding: clamp(60px, 6vw, 120px) 0;
}

.tab-accordion__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
@media only screen and (max-width: 991px) {
  .tab-accordion__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.tab-accordion__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 200px;
}
@media only screen and (max-width: 991px) {
  .tab-accordion__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    min-width: 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .tab-accordion__nav::-webkit-scrollbar {
    display: none;
  }
}

.tab-accordion__tab {
  display: flex;
  align-items: center;
  padding: 24px;
  border: none;
  background: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #9A9D9C;
  text-align: left;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .tab-accordion__tab {
    padding: 10px 16px;
    border-left: none;
    border-bottom: 2px solid transparent;
    font-size: 14px;
  }
}
.tab-accordion__tab:hover {
  color: #213256;
  background: #f9fafb;
}
.tab-accordion__tab:focus-visible {
  outline: 2px solid #395691;
  outline-offset: -2px;
  border-radius: 2px;
}
.tab-accordion__tab--active {
  color: #213256;
  font-weight: 500;
  border-left-color: #E33F45;
  background: #f9fafb;
}
@media only screen and (max-width: 991px) {
  .tab-accordion__tab--active {
    border-left-color: transparent;
    border-bottom-color: #E33F45;
  }
}

.tab-accordion__panels {
  max-width: 788px;
}

.tab-accordion__panel {
  display: none;
}
.tab-accordion__panel--active {
  display: block;
}

.tab-accordion__cta {
  margin-top: clamp(24px, 2vw, 40px);
}

.table-block {
  padding: clamp(40px, 5.2vw, 100px) 0;
  background: #FFFFFF;
}
.table-block__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}
.table-block__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1px solid #e8edf5;
}
.table-block__wrapper:focus {
  outline: 2px solid #395691;
  outline-offset: 2px;
}
.table-block__table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .table-block__table {
    font-size: 15px;
  }
}
.table-block__caption {
  text-align: left;
  font-size: 13px;
  color: #9A9D9C;
  padding: 12px 20px;
  caption-side: top;
  border-bottom: 1px solid #e8edf5;
}
.table-block__head {
  background: #f3f5f9;
}
.table-block__row {
  border-bottom: 1px solid #e8edf5;
}
.table-block__row:last-child {
  border-bottom: none;
}
.table-block__row:nth-child(even) {
  background: #f9fafb;
}
.table-block__cell {
  padding: 14px 20px;
  text-align: left;
  color: #343D3A;
  vertical-align: top;
}
@media only screen and (min-width: 768px) {
  .table-block__cell {
    padding: 16px 24px;
  }
}
.table-block__cell--header {
  font-weight: 600;
  color: #213256;
  white-space: nowrap;
}

.text-with-image {
  padding: clamp(40px, 5.2vw, 100px) 0;
  background: #FFFFFF;
}
.text-with-image__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .text-with-image__container {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 992px) {
  .text-with-image--image-left .text-with-image__container {
    direction: rtl;
  }
  .text-with-image--image-left .text-with-image__container > * {
    direction: ltr;
  }
}
.text-with-image__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 1.5vw, 24px);
}
.text-with-image__content .c-block-title {
  margin-bottom: 0;
}
.text-with-image__body {
  font-family: "Roboto", sans-serif;
  font-size: clamp(15px, 0.9vw, 17px);
  line-height: 1.7;
  color: #343D3A;
}
.text-with-image__body p {
  margin: 0 0 16px;
}
.text-with-image__body p:last-child {
  margin-bottom: 0;
}
.text-with-image__body ul,
.text-with-image__body ol {
  margin: 0 0 16px;
  padding-left: 20px;
}
.text-with-image__body ul li,
.text-with-image__body ol li {
  margin-bottom: 8px;
}
.text-with-image__body h3,
.text-with-image__body h4 {
  color: #213256;
  margin: 0 0 12px;
}
.text-with-image__media {
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .text-with-image__media {
    order: -1;
  }
}
.text-with-image__img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
.text-with-image .btn--tertiary {
  margin-top: 8px;
}

section.trending-articles {
  background: linear-gradient(135deg, #213256 0%, rgb(25.9285714286, 39.2857142857, 67.5714285714) 100%);
  padding: clamp(48px, 5vw, 96px) 0;
  overflow: hidden;
}

.trending-articles__container {
  max-width: 1192px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(10px, 3vw, 30px);
  padding-right: clamp(10px, 3vw, 30px);
}

.trending-articles__header {
  margin-bottom: clamp(24px, 2.5vw, 40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: clamp(12px, 1vw, 16px);
}

.trending-articles__heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.trending-articles__heading {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.trending-articles__slider {
  position: relative;
  overflow: hidden;
}

.trending-articles__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.trending-articles__track::-webkit-scrollbar {
  display: none;
}

.trending-articles__slide {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 382px);
  scroll-snap-align: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.trending-articles__nav {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: clamp(20px, 2vw, 32px);
}

.trending-articles__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.trending-articles__arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.trending-articles__arrow:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
.trending-articles__arrow svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 767px) {
  .trending-articles__slide {
    width: 280px;
  }
  .trending-articles__nav {
    justify-content: flex-start;
  }
}
.c-accordion {
  width: 100%;
}

.c-accordion__item {
  border-bottom: 1px solid #f1f5f9;
}
.c-accordion__item:first-child {
  border-top: 1px solid #f1f5f9;
}

.c-accordion__header {
  margin: 0;
}

.c-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  color: #213256;
  transition: color 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .c-accordion__trigger {
    padding: 24px 0;
  }
}
.c-accordion__trigger:hover, .c-accordion__trigger:focus-visible {
  color: #E33F45;
}
.c-accordion__trigger:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
  border-radius: 2px;
}

.c-accordion__title {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1;
}

.c-accordion__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: color 0.2s ease;
}

.c-accordion__icon-v {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
[aria-expanded=true] .c-accordion__icon-v {
  transform: rotate(90deg);
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .c-accordion__icon-v {
    transition: none;
  }
}

.c-accordion__panel {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}
.c-accordion__panel[hidden] {
  display: block;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}
.c-accordion__panel:not([hidden]) {
  opacity: 1;
  visibility: visible;
}
@media (prefers-reduced-motion: reduce) {
  .c-accordion__panel {
    transition: none;
  }
}

.c-accordion__content {
  padding: 0 0 24px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #343D3A;
}
@media only screen and (min-width: 768px) {
  .c-accordion__content {
    font-size: 16px;
    padding-bottom: 32px;
  }
}
.c-accordion__content p {
  margin: 0 0 16px;
}
.c-accordion__content p:last-child {
  margin-bottom: 0;
}
.c-accordion__content a {
  color: #E33F45;
  text-decoration: underline;
}
.c-accordion__content a:hover, .c-accordion__content a:focus-visible {
  color: #213256;
}

.archive-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: clamp(20px, 2.5vw, 32px);
  padding-bottom: clamp(12px, 1.2vw, 18px);
  border-bottom: 1px solid #e8edf5;
}
.archive-filters__label {
  font-size: 14px;
  font-weight: 500;
  color: #9A9D9C;
}
.archive-filters__selects {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.archive-filters__field {
  display: inline-flex;
}
.archive-filters__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 150px;
  padding: 8px 34px 8px 14px;
  border: 1px solid #dce3f0;
  border-radius: 4px;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23343D3A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  color: #213256;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.archive-filters__select:hover {
  border-color: #395691;
}
.archive-filters__select:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 1px;
}
.archive-filters__search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 200px;
  margin-left: auto;
}
.archive-filters__search-icon {
  position: absolute;
  left: 12px;
  color: #9A9D9C;
  pointer-events: none;
}
.archive-filters__input {
  width: 100%;
  padding: 8px 14px 8px 34px;
  border: 1px solid #dce3f0;
  border-radius: 4px;
  background: #FFFFFF;
  color: #213256;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.archive-filters__input::-moz-placeholder {
  color: #9A9D9C;
}
.archive-filters__input::placeholder {
  color: #9A9D9C;
}
.archive-filters__input:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 1px;
}
.archive-filters__input::-webkit-search-decoration, .archive-filters__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
}
.archive-filters__submit {
  padding: 9px 18px;
  border: 1px solid #213256;
  border-radius: 4px;
  background: #213256;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.archive-filters__submit:hover {
  background: #395691;
  border-color: #395691;
}
.archive-filters__submit[hidden] {
  display: none;
}
.archive-filters__clear {
  color: #E33F45;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.archive-filters__clear:hover {
  color: #395691;
}
@media only screen and (max-width: 767px) {
  .archive-filters__search {
    margin-left: 0;
    flex-basis: 100%;
  }
}

.archive-page__blocks {
  transition: opacity 0.15s ease;
}
.archive-page__blocks--busy {
  opacity: 0.45;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .archive-page__blocks {
    transition: none;
  }
}
.c-article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.c-article-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .c-article-card:hover {
    transform: none;
  }
}
.c-article-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.c-article-card__image a {
  display: block;
  height: 100%;
}
.c-article-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.c-article-card:hover .c-article-card__img {
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .c-article-card:hover .c-article-card__img {
    transform: none;
  }
}
.c-article-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  .c-article-card__content {
    padding: 24px;
  }
}
.c-article-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.c-article-card__date {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9A9D9C;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.c-article-card__link {
  text-decoration: none;
  color: inherit;
}
.c-article-card__link:hover .c-article-card__title, .c-article-card__link:focus-visible .c-article-card__title {
  color: #E33F45;
}
.c-article-card__link:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
  border-radius: 2px;
}
.c-article-card__title {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: #213256;
  margin: 0 0 12px;
  transition: color 0.2s ease;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1;
}
.c-article-card__excerpt {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #9A9D9C;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .c-article-card__excerpt {
    font-size: 15px;
  }
}

.content-row .c-article-card,
.post-listing .c-article-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.content-row .c-article-card:hover,
.post-listing .c-article-card:hover {
  box-shadow: none;
  transform: none;
}
.content-row .c-article-card__image,
.post-listing .c-article-card__image {
  border-radius: 6px;
}
.content-row .c-article-card__content,
.post-listing .c-article-card__content {
  padding: 16px 0 0;
}

.c-block-title {
  margin-bottom: clamp(24px, 3vw, 48px);
}
.c-block-title--center {
  text-align: center;
}
.c-block-title__subtitle {
  display: block;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E33F45;
}
@media only screen and (min-width: 768px) {
  .c-block-title__subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.c-block-title__heading {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #213256;
  margin: 0;
  font-size: clamp(28px, 2.2916666667vw, 44px);
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
  border: none;
  background: none;
  padding: 0;
}
.btn:focus-visible {
  outline: none;
}
.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.btn__arrow svg {
  width: 100%;
  height: 100%;
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}
.btn--large {
  font-size: 20px;
  line-height: 24px;
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  .btn--large {
    font-size: 18px;
    gap: 24px;
  }
}
.btn--small {
  font-size: 16px;
  line-height: 20px;
  gap: 16px;
}
.btn--primary {
  padding: 14px 32px;
  background: #E33F45;
  color: #FFFFFF;
  border-radius: 5px;
}
.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn--primary:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}
.btn--secondary {
  padding: 14px 32px;
  background: transparent;
  color: #213256;
  border: 1px solid #213256;
  border-radius: 5px;
}
.btn--secondary:hover {
  background: #213256;
  color: #FFFFFF;
}
.btn--secondary:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}
.btn--tertiary {
  color: #E33F45;
  padding: 16px 0;
  border-top: 1px solid #E33F45;
  border-bottom: 1px solid #E33F45;
  border-radius: 0;
}
.btn--tertiary:hover {
  color: #395691;
  border-color: #395691;
}
.btn--tertiary:focus-visible {
  border-top-width: 3px;
  border-bottom-width: 3px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.btn--tertiary[disabled], .btn--tertiary.btn--disabled {
  color: #9A9D9C;
  border-color: #9A9D9C;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--tertiary-white {
  color: #FFFFFF;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
}
.btn--tertiary-white:hover {
  color: #395691;
  border-color: #395691;
}
.btn--tertiary-white:focus-visible {
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-color: #FFFFFF;
  padding-top: 14px;
  padding-bottom: 14px;
}
.btn--tertiary-white[disabled], .btn--tertiary-white.btn--disabled {
  color: #9A9D9C;
  border-color: #9A9D9C;
  cursor: not-allowed;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn__arrow {
    transition-duration: 0.01ms !important;
  }
  .btn:hover .btn__arrow {
    transform: none;
  }
}
.content-item__image {
  display: block;
  overflow: hidden;
  line-height: 0;
}
.content-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.content-item:hover .content-item__img {
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .content-item:hover .content-item__img {
    transform: none;
  }
}
.content-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(14px, 2vw, 30px);
}
.content-item__date {
  font-size: 14px;
  font-weight: 500;
  color: #9A9D9C;
  letter-spacing: 0.02em;
}
.content-item .c-tag {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.content-item__link {
  text-decoration: none;
  color: inherit;
}
.content-item__link:hover .content-item__title, .content-item__link:focus-visible .content-item__title {
  color: #E33F45;
}
.content-item__link:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
  border-radius: 2px;
}
.content-item__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #213256;
  transition: color 0.2s ease;
}
.content-item__excerpt {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: #9A9D9C;
}
.content-item--standard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(220px, 26vw, 370px);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
.content-item--standard .content-item__image {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 16/10;
}
.content-item--standard .content-item__content {
  grid-column: 1;
  grid-row: 1;
}
.content-item--standard .content-item__title {
  font-size: clamp(18px, 1.1458333333vw, 22px);
  line-height: 1.3636363636;
}
.content-item--lead {
  display: flex;
  flex-direction: column;
}
.content-item--lead .content-item__image {
  aspect-ratio: 16/7;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.content-item--lead .content-item__title {
  font-size: clamp(24px, 1.7708333333vw, 34px);
  line-height: 1.2941176471;
}
.content-item--lead .content-item__excerpt {
  font-size: 16px;
  max-width: 620px;
}
@media (max-width: 767px) {
  .content-item--standard {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .content-item--standard .content-item__image {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 16/9;
  }
  .content-item--standard .content-item__content {
    grid-column: 1;
    grid-row: 2;
  }
  .content-item--standard .content-item__meta {
    margin-bottom: 4px;
  }
}

.iap-wrapped-text {
  color: #E33F45;
}

.c-text-card {
  padding: 24px;
  background-color: #f3f5f9;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .c-text-card {
    padding: 32px;
  }
}
.c-text-card__title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  color: #213256;
  margin: 0 0 12px;
  font-size: clamp(18px, 1.1458333333vw, 22px);
  line-height: 1;
}
.c-text-card__text {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #343D3A;
  margin: 0 0 16px;
  flex-grow: 1;
}
.c-text-card__text p {
  margin: 0 0 12px;
}
.c-text-card__text p:last-child {
  margin-bottom: 0;
}
.c-text-card__link {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #E33F45;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.c-text-card__link:hover, .c-text-card__link:focus-visible {
  color: #213256;
}
.c-text-card__link:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}

.c-profile-card {
  text-align: center;
  padding: 24px;
}
@media only screen and (min-width: 768px) {
  .c-profile-card {
    padding: 32px;
  }
}
.c-profile-card__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
}
@media only screen and (min-width: 768px) {
  .c-profile-card__image {
    width: 140px;
    height: 140px;
  }
}
.c-profile-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-profile-card__name-link {
  text-decoration: none;
  color: inherit;
}
.c-profile-card__name-link:hover .c-profile-card__name, .c-profile-card__name-link:focus-visible .c-profile-card__name {
  color: #E33F45;
}
.c-profile-card__name-link:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
  border-radius: 2px;
}
.c-profile-card__name {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  color: #213256;
  margin: 0 0 4px;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1;
  transition: color 0.2s ease;
}
.c-profile-card__role {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #9A9D9C;
  margin: 0 0 12px;
}
.c-profile-card__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-profile-card__email, .c-profile-card__phone {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #E33F45;
  text-decoration: none;
  transition: color 0.2s ease;
}
.c-profile-card__email:hover, .c-profile-card__email:focus-visible, .c-profile-card__phone:hover, .c-profile-card__phone:focus-visible {
  color: #213256;
}

.c-history-card {
  padding: 24px 0;
  border-bottom: 1px solid #f1f5f9;
}
.c-history-card:first-child {
  border-top: 1px solid #f1f5f9;
}
@media only screen and (min-width: 768px) {
  .c-history-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
    gap: 0 24px;
    padding: 32px 0;
  }
}
.c-history-card__year {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #E33F45;
  display: block;
  margin-bottom: 8px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.25;
}
@media only screen and (min-width: 768px) {
  .c-history-card__year {
    grid-row: 1/-1;
    margin-bottom: 0;
    padding-top: 4px;
  }
}
.c-history-card__title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  color: #213256;
  margin: 0 0 8px;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1;
}
.c-history-card__text {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #343D3A;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .c-history-card__text {
    font-size: 15px;
  }
}

.c-member-fee-card {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  height: 100%;
  transition: box-shadow 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .c-member-fee-card {
    padding: 40px 32px;
  }
}
.c-member-fee-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.c-member-fee-card--featured {
  border-color: #E33F45;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.c-member-fee-card__header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.c-member-fee-card__title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  color: #213256;
  margin: 0 0 8px;
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 1;
}
.c-member-fee-card__price {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #E33F45;
  margin: 0;
  font-size: clamp(28px, 1.875vw, 36px);
  line-height: 1;
}
.c-member-fee-card__text {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #343D3A;
  margin: 0 0 16px;
}
.c-member-fee-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.c-member-fee-card__feature {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #343D3A;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  padding-left: 24px;
}
.c-member-fee-card__feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E33F45;
  font-weight: 700;
}
.c-member-fee-card__feature:last-child {
  border-bottom: none;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(220px, 26vw, 370px);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
.news-card__image {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card__image a {
  display: block;
  height: 100%;
}
.news-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.news-card:hover .news-card__img {
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .news-card:hover .news-card__img {
    transform: none;
  }
}
.news-card__content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(14px, 2vw, 30px);
}
.news-card__date {
  font-size: 14px;
  font-weight: 500;
  color: #9A9D9C;
  letter-spacing: 0.02em;
}
.news-card .c-tag {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.news-card__link {
  text-decoration: none;
  color: inherit;
}
.news-card__link:hover .news-card__title, .news-card__link:focus-visible .news-card__title {
  color: #E33F45;
}
.news-card__link:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
  border-radius: 2px;
}
.news-card__title {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #213256;
  margin: 0;
  transition: color 0.2s ease;
  font-size: clamp(18px, 1.1458333333vw, 22px);
  line-height: 1.3636363636;
}
.news-card__excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: #9A9D9C;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767px) {
  .news-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .news-card__image {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 16/9;
  }
  .news-card__content {
    grid-column: 1;
    grid-row: 2;
  }
  .news-card__meta {
    margin-bottom: 4px;
  }
}
.news-card-compact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.news-card-compact:hover .news-card-compact__title {
  color: #E33F45;
}
.news-card-compact:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 4px;
  border-radius: 4px;
}
.news-card-compact__image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
}
.news-card-compact__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card-compact__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.news-card-compact__title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-compact__date {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: auto;
}
.news-card-compact--light .news-card-compact__title {
  color: #213256;
}
.news-card-compact--light .news-card-compact__date {
  color: #9A9D9C;
}
.news-card-compact--light:focus-visible {
  outline-color: #395691;
}

.c-pagination {
  margin-top: clamp(32px, 4vw, 64px);
}
.c-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  .c-pagination__list {
    gap: 8px;
  }
}
.c-pagination__item a,
.c-pagination__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .c-pagination__item a,
  .c-pagination__item span {
    min-width: 44px;
    height: 44px;
    font-size: 15px;
  }
}
.c-pagination__item a {
  color: #213256;
  background-color: transparent;
}
.c-pagination__item a:hover {
  background-color: #f3f5f9;
  color: #213256;
}
.c-pagination__item a:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}
.c-pagination__item span.current {
  background-color: #213256;
  color: #FFFFFF;
}
.c-pagination__item span.dots {
  color: #9A9D9C;
  background: none;
  min-width: auto;
  padding: 0 4px;
}
.c-pagination__item .prev svg,
.c-pagination__item .next svg {
  width: 16px;
  height: 16px;
}

.c-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 4px;
  background-color: #e8edf5;
  color: #213256;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.c-tag[href]:hover, .c-tag[href]:focus-visible {
  background-color: #213256;
  color: #FFFFFF;
}
.c-tag[href]:focus-visible {
  outline: 2px solid #395691;
  outline-offset: 2px;
}
.c-tag--dark {
  background-color: #213256;
  color: #FFFFFF;
}
.c-tag--dark[href]:hover, .c-tag--dark[href]:focus-visible {
  background-color: #FFFFFF;
  color: #213256;
}

.c-vertical-label {
  display: flex;
  align-self: stretch;
  gap: 0.75rem;
}
.c-vertical-label__text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  color: #395691;
}
.c-vertical-label::after {
  content: "";
  width: 1px;
  align-self: stretch;
  background: rgba(0, 0, 0, 0.12);
}
.c-vertical-label--left {
  flex-direction: row-reverse;
}
.c-vertical-label--right {
  flex-direction: row;
}

/*** include Vendors ***/
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  margin-top: 20px;
  font-size: 0;
  line-height: 0;
  width: 40px;
  height: 3px;
  background: #395691;
  display: block;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
}

.slick-dots li.slick-active button {
  background: #213256;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

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

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
 * Swiper 8.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 26, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}