:root {
  --transition-default: all 0.2s ease-in;
  --transition-color: background-color 0.2s ease-in, border-color 0.2s ease-in, color 0.2s ease-in;
  --transition-svg: fill 0.2s ease-in;
  --color-bright-blue: #c32679;
  --color-charcoal: #2a2433;
  --color-grey: #635d69;
  --color-line-grey: #e7d8e0;
  --color-pale-grey: #f8f2f5;
  --color-white: #ffffff;
  --color-surface-rose: #f4d7e7;
  --color-surface-berry: #6f1d4f;
  --color-surface-berry-dark: #341e30;
  --color-surface-warm: #fff7fb;
  --color-moneytalks-bg: #f4efe4;
  --font-family-display: 'Dosis', var(--font-family-base);
  --font-family-sans-serif: 'Calibri', 'Trebuchet MS', 'Arial', sans-serif;
  --font-family-base: var(--font-family-sans-serif);
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-base: var(--font-weight-regular);
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-size-base: 1.8rem;
  --font-size-large: 2rem;
  --font-size-small: 1.4rem;
  --line-height-base: 1.5;
  --color-surface-apricot: #f6c0a0;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --shadow-soft: 0 2rem 6rem rgba(42, 36, 51, 0.12);
  --shadow-float: 3px 3px 10px rgba(0, 0, 0, 0.3), -3px -3px 10px rgba(0, 0, 0, 0.3);
  --border-radius-large: 3rem;
  --border-radius-base: 1.5rem;
  --border-radius-small: 1rem;
}

* {
  padding: 0;
  margin: 0;
}
*:focus-visible {
  outline: currentcolor dashed 0.1rem;
  outline-offset: 0.2rem;
  border-radius: 0.2rem;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion) {
  html,
  body {
    scroll-behavior: unset;
  }
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-color);
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: var(--font-weight-semibold);
}

button {
  background: unset;
  border: unset;
  cursor: pointer;
  text-align: left;
  text-transform: none;
}

hr {
  height: 0;
  border: unset;
  color: inherit;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}
img.img-responsive {
  width: 100%;
}

small {
  display: inline-block;
  font-size: var(--font-size-small);
}

sub,
sup {
  font-size: var(--font-size-small);
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25rem;
}

sup {
  top: -0.5rem;
}

svg {
  transition: var(--transition-svg);
}

table {
  border-collapse: collapse;
  border-color: inherit;
  text-indent: 0;
}
table td {
  vertical-align: top;
}

body {
  color: var(--color-charcoal);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brandmark,
.menu__link,
.mobile-menu__link,
.mobile-submenu__link,
.cta-section__title,
.cta-card__text,
.home-hero__eyebrow,
.home-hero__title,
.article-card__title,
.button,
.articles-pagination__link,
.cta-section__link,
.events-calendar-nav a {
  font-family: var(--font-family-display), serif;
}

a {
  color: var(--fincap-red);
}

.logo {
  text-decoration: none;
}

.button {
  border: 2px solid var(--fincap-red);
  border-radius: 32px;
  padding: 0.8rem 1.6rem;
  transition: 0.2s ease-in-out;
  text-decoration: none;
  font-size: 1.8rem;
  display: inline-block;
  color: var(--fincap-red);
}
body.tepapahou .button {
  border-color: var(--tph-purple);
  color: var(--tph-purple);
}
body.moneytalks .button {
  border-color: var(--mt-orange);
  color: var(--mt-orange);
}
.button:hover, .button:focus {
  background: var(--fincap-red);
  color: #fff;
}
body.tepapahou .button:hover, body.tepapahou .button:focus {
  background: var(--tph-purple);
  color: #fff;
}
body.moneytalks .button:hover, body.moneytalks .button:focus {
  background: var(--mt-orange);
  color: #fff;
}
.button--large {
  text-transform: uppercase;
  font-size: 2.2rem;
  padding: 1.2rem 4rem;
  font-weight: var(--font-weight-bold);
}
.button--black {
  color: #000;
  border-color: #000;
}
.button--white {
  color: var(--color-white);
  border-color: var(--color-white);
}
.button--white:hover, .button--white:focus {
  color: var(--color-black);
  border-color: var(--color-black);
}

/* Skip to main content button */
.button--skip {
  position: absolute;
  left: 2rem;
  top: 1rem;
  z-index: 130;
  transform: translateY(-180%);
  transition: transform 0.18s ease;
  font-size: 2rem;
  color: #fff;
  background: #000 !important;
}

.button--skip:focus {
  transform: translateY(0);
}

/* Color variables */
:root {
  --color-black: #000000;
  --color-black-0: #00000000;
  --color-black-50: #00000050;
  --color-bright-blue: #005AE1;
  --color-charcoal: #222222;
  --color-mid-grey: #757575;
  --color-grey: #5F5F5F;
  --color-line-grey: #DADADA;
  --color-pale-grey: #F4F4F4;
  --color-white: #FFFFFF;
  --color-pale-red: rgba(195, 38, 121, .12);
  --color-white-70: #bdbdbd;
  --color-error-dark: #CF0000;
  --color-error-light: #f9d0d0;
  --color-good-dark: #8fbe00;
  --color-good-light: #ecf9d0;
  --color-warning-dark: #e8c805;
  --color-warning-light: #fef4ba;
  --color-moneytalks-hero-bg: rgb(241, 94, 95);
  --fincap-red: #eb185d;
  --fincap-purple: #aa216b;
  --tph-purple: #aa216b;
  --mt-orange: rgb(241, 94, 95);
}

form {
  --max-width: 100%;
  /* important required to override userform module styling */
  max-width: var(--max-width) !important;
}
form div.field {
  margin: 0.667em 0 1em;
}
form fieldset {
  border: 0;
}
form label.left {
  font-weight: bold;
}
form label.right {
  font-size: 0.9em;
}
form input.text,
form textarea,
form select {
  width: 100%;
  max-width: var(--max-width);
  padding: 0.4em 0.333em;
  font-size: 1.5rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-line-grey);
}
form input[disabled],
form textarea[disabled],
form select[disabled] {
  background-color: var(--color-pale-grey);
  border: 1px solid var(--color-line-grey);
}
form textarea {
  resize: vertical;
}
form {
  /* pseudo element adds an asterisk to a required fields label */
}
form input[required] ~ label.left:after,
form input[required] ~ legend.left:after,
form .requiredField label.left:after,
form .requiredField legend.left:after {
  color: var(--color-error-dark);
  content: "*";
  font-size: 0.8em;
  font-weight: normal;
  padding-left: 0.333em;
}
form {
  /* Radio and Checkbox */
}
form .checkbox label.right,
form .radio label.right {
  float: left;
  margin-inline-end: 0.5em;
}
form {
  /* Buttons */
}
form a.btn,
form button,
form input[type=submit],
form input[type=reset],
form .Actions .action {
  display: inline-block;
  border-radius: 4px;
  padding: 0.333em 0.833em;
  margin-top: 0.556em;
  margin-bottom: 0.556em;
  border: none;
}
form a.btn:not([disabled]),
form button:not([disabled]),
form input[type=submit]:not([disabled]),
form input[type=reset]:not([disabled]),
form .Actions .action:not([disabled]) {
  cursor: pointer;
}
form {
  /* Messages */
}
form .message {
  margin: 0.556em 0;
  display: block;
  max-width: var(--max-width);
  clear: left;
}
form .message,
form .error-container {
  padding: 0.278em 0.556em;
  background-color: var(--color-warning-light);
  border: 1px solid var(--color-warning-dark);
  border-radius: 3px;
}
form .message.good,
form .error-container.good {
  background-color: var(--color-good-light);
  border-color: var(--color-good-dark);
}
form .message.bad, form .message.required, form .message.error, form .message.error-container,
form .error-container.bad,
form .error-container.required,
form .error-container.error,
form .error-container.error-container {
  background-color: var(--color-error-light);
  border-color: var(--color-error-dark);
}
form {
  /* invalid fields */
}
form input:invalid,
form textarea:invalid {
  border-radius: 1px;
  box-shadow: 0 0 0.5px 1px var(--color-error);
}
form {
  /* user forms heading field */
}
form .FormHeading {
  clear: both;
  padding-top: 0.68em;
}

.login-form {
  max-width: 40rem;
  margin: 0 auto;
  padding-block-end: 8rem;
}
.login-form .form-label {
  margin-inline-end: 1rem;
}

.form-element__form {
  max-width: 40rem;
}
.form-element__form .right-title {
  font-size: 1.4rem;
  font-style: italic;
}

body.moneytalks input.text, body.moneytalks textarea, body.moneytalks select {
  border-color: var(--mt-orange);
}

body.tepapahou input.text, body.tepapahou textarea, body.tepapahou select {
  border-color: var(--tph-purple);
}

/**
 * Base typography styles
 *
 * Font size is set to 10px for easy conversion of px to rem
 * e.g. 18px = 1.8rem
 */
h1,
h2,
h3,
h4,
h5,
h6,
.home-hero__eyebrow,
.home-hero__title,
.cta-section__title,
.cta-card__text,
.article-card__title,
.page__title,
.button,
.header__cta,
.desktop-menu__link,
.overlay-menu__link,
.footer__brand {
  font-family: var(--font-family-display), serif;
}

a {
  color: var(--fincap-red);
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 20%;
}
a.back-link {
  display: flex;
  gap: 1rem;
  align-items: center;
  line-height: 3.2rem;
}
a.back-link svg {
  width: 2rem;
  height: auto;
}
body.tepapahou a {
  color: var(--tph-purple);
}
body.moneytalks a {
  color: var(--mt-orange);
}

.site-chrome {
  position: relative;
  overflow: clip;
}

html {
  font-size: 10px;
}

body,
button,
code,
input,
optgroup,
select,
textarea {
  color: var(--color-charcoal);
  font-family: var(--font-family-base), serif;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-base);
}

hr {
  border-bottom: 0.1rem solid var(--color-line-grey);
  margin: 1.5rem 0;
}

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

li {
  margin-left: 1.75em;
}

code {
  display: inline-block;
  background-color: var(--color-pale-grey);
  border-radius: 0.4rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: var(--font-weight-medium);
  padding: 0.1rem 0.4rem;
}

/* Headings */
h1, .h1 {
  font-size: 3.8rem;
  line-height: 1.2;
  margin: 0.25em 0 0.5em;
}
@media (min-width: 750px) {
  h1, .h1 {
    font-size: 4.8rem;
  }
}

h2, h3, h4, h5, h6,
.h2, .h3, .h4, .h5, .h6 {
  margin: 2em 0 0.75em;
  font-weight: var(--font-weight-regular);
  color: var(--fincap-red);
}
body.tepapahou h2, body.tepapahou h3, body.tepapahou h4, body.tepapahou h5, body.tepapahou h6,
body.tepapahou .h2, body.tepapahou .h3, body.tepapahou .h4, body.tepapahou .h5, body.tepapahou .h6 {
  color: var(--tph-purple);
}
body.moneytalks h2, body.moneytalks h3, body.moneytalks h4, body.moneytalks h5, body.moneytalks h6,
body.moneytalks .h2, body.moneytalks .h3, body.moneytalks .h4, body.moneytalks .h5, body.moneytalks .h6 {
  color: var(--mt-orange);
}

h2, .h2 {
  font-size: 2.8rem;
  line-height: 1.2;
}
h2.page__subtitle, .h2.page__subtitle {
  font-size: 3.5rem;
  margin-block-end: 4.8rem;
  max-width: 90rem;
}
h2.content-element__title, .h2.content-element__title {
  margin-block-start: 0;
}

h3, .h3 {
  font-size: 2.2rem;
  line-height: 1.3;
}

h4, .h4 {
  font-size: 2rem;
  line-height: 1.3;
}

h5, .h5 {
  font-size: 1.8rem;
  line-height: 1.3;
}

/* Text */
blockquote {
  border-left: 2px solid var(--color-grey);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  padding-left: 3rem;
}

.intro {
  font-size: 2.2rem;
}

p {
  margin-bottom: 1.25rem;
}

.text-left, .left {
  text-align: left;
}

.text-center, .center {
  text-align: center;
}

.text-right, .right {
  text-align: right;
}

.text-justify {
  text-justify: auto;
}

/* Tables */
table {
  border-collapse: collapse;
  border: 1px solid #d4d4d4;
  border-spacing: 0;
  margin: 0 0 10px;
  text-align: left;
}
table tr:nth-child(even) {
  background-color: #ededed;
}
table tr.even,
table th,
table thead td {
  background-color: #ededed;
}
table td,
table th {
  padding: 2px 5px;
  border: 1px solid #d4d4d4;
  vertical-align: top;
}
table th {
  font-weight: bold;
}

/* Images */
img.left {
  float: left;
  margin: 0 2.5rem 2.5rem 0;
}
img.right {
  float: right;
  margin: 0 0 2.5rem 2.5rem;
  clear: none;
}
img.center {
  margin: 2.5rem auto;
}
img.rightAlone {
  float: right;
  margin: 2.5rem 0;
  clear: both;
}
img.leftAlone {
  margin: 2.5rem 0;
}
img + .caption {
  position: relative;
  top: -1.5rem;
}

/* Captions */
.caption.leftAlone, .caption.left {
  text-align: left;
}
.caption.rightAlone, .caption.right {
  text-align: right;
}
.caption.center {
  text-align: center;
}

/* Image with captions */
.captionImage.leftAlone {
  float: left;
  clear: both;
  margin-right: 100%;
}
.captionImage.rightAlone {
  float: right;
  clear: both;
  margin-left: 100%;
}
.captionImage.center {
  margin: 0 auto 20px;
}
.captionImage p {
  clear: both;
  margin: 5px 0;
  font-style: italic;
}
.captionImage p.caption.text-center {
  text-align: center;
}
.captionImage p.caption.text-left {
  text-align: left;
}

.typography p,
.typography ul,
.typography ol,
.typography blockquote {
  line-height: 1.7;
}

.typography img,
.typography iframe {
  max-width: 100%;
  border-radius: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.content-inner {
  padding-block-start: 6rem;
  max-width: 92rem;
}
.content-inner ul {
  margin-block-end: 2rem;
}

.page-title + section.element-content .content-inner {
  padding-block-start: 0;
}

.element__title {
  margin-block-start: 0;
  color: var(--fincap-red);
  font-size: 6rem;
  font-weight: 400;
}

.element-content h4 {
  color: var(--fincap-red);
  font-size: 2.4rem;
}

section.cta-sections {
  padding-block: 8rem;
}
section.cta-sections:has(.triangles) {
  background: #f4efe4 url(/_resources/themes/fincap/dist/images/image-block-bg.webp) repeat 50% 0;
  background-size: auto 100%;
  text-align: center;
}
section.cta-sections:has(.triangles) h2 {
  margin: 0 auto;
}

section.cta-sections + section.cta-sections {
  margin-block-start: -12rem;
}

@media screen and (min-width: 64rem) {
  section.cta-sections + section.cta-sections {
    margin-block-start: -8rem;
  }
}
section.cta-sections + section.cta-sections,
.page-title + section.cta-sections {
  padding-block-start: 0;
}

.cta-section {
  display: grid;
  gap: 2rem;
}
.cta-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.6rem;
}
.cta-section__intro {
  margin-block-end: 4rem;
}
.cta-section__grid {
  display: flex;
  gap: 4rem;
  padding-block-end: 6rem;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (min-width: 64rem) {
  .cta-section__grid {
    flex-direction: row;
    gap: 4rem 0;
    flex-wrap: wrap;
  }
  .cta-section__grid:has(.pos-3) {
    margin-block-end: 6rem;
  }
}
@media screen and (min-width: 83.75rem) {
  .cta-section__grid {
    gap: 0;
  }
}

.element.call-to-action + .element.call-to-action {
  margin-block-start: 2rem;
}
.element.call-to-action + .text-columns {
  margin-block-start: 4rem;
}

.cta-card {
  min-width: 0;
  width: 100%;
}
@media screen and (min-width: 64rem) {
  .cta-card {
    flex-basis: calc(33% - 1rem);
  }
  .cta-card.pos-2, .cta-card.pos-4, .cta-card.pos-6 {
    transform: translateY(6rem);
  }
}
.cta-card:has(a) .cta-card__inner:hover .cta-card__media,
.cta-card:has(a) .cta-card__inner:focus .cta-card__media {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3), 0 -1px 5px rgba(0, 0, 0, 0.3);
}
.cta-card:has(a) .cta-card__inner:hover .cta-card__media img,
.cta-card:has(a) .cta-card__inner:focus .cta-card__media img {
  transform: scale(1.03);
}

.cta-section__grid:has(.pos-4) .cta-card {
  flex-basis: 25%;
}
@media screen and (min-width: 64rem) {
  .cta-section__grid:has(.pos-4) .cta-card {
    flex-basis: calc(50% - 2rem);
  }
}
@media screen and (min-width: 83.75rem) {
  .cta-section__grid:has(.pos-4) .cta-card {
    flex-basis: calc(25% - 1rem);
  }
}

.cta-card__inner {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 30rem) {
  .cta-card__inner {
    height: 100%;
    flex-direction: row;
  }
}
@media screen and (min-width: 64rem) {
  .cta-card__inner {
    flex-direction: column;
  }
}

.cta-card__media {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 66%;
  flex-shrink: 0;
}
@media screen and (min-width: 30rem) {
  .cta-card__media {
    width: 25%;
  }
}
@media screen and (min-width: 64rem) {
  .cta-card__media {
    width: 75%;
  }
}
.cta-card__media img {
  transition: transform 0.2s ease;
  display: block;
  margin: 0 auto;
}
.cta-card__media.responsive {
  border-radius: 99rem;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.cta-card__media.responsive img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-card__body {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 0 2rem;
  text-align: center;
}
@media screen and (min-width: 30rem) {
  .cta-card__body {
    text-align: left;
  }
}
@media screen and (min-width: 64rem) {
  .cta-card__body {
    text-align: center;
  }
}
.cta-card__body h3 {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: var(--font-weight-regular);
  margin: 0;
}

.cta-card__text {
  margin: 0;
  color: #000;
}

.cta-section__link {
  text-align: center;
}

.element-image figure {
  overflow: hidden;
  border-radius: 3rem;
  max-width: 90rem;
  width: 100%;
}
.element-image figure.full-width {
  max-width: 100vw;
  border-radius: 0;
}
.element-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-content {
  padding-block-end: 4rem;
}
.image-content:has(.triangles) {
  background: var(--color-moneytalks-bg) url(/_resources/themes/fincap/dist/images/image-block-bg.webp) repeat 50% 0;
  background-size: auto 100%;
}
.image-content h2 {
  font-size: 4rem;
  margin-top: 0;
}
.image-content p:has(.button) {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.image-content__row {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.image-content__row + .image-content__row {
  margin-block-start: 4rem;
}
@media screen and (min-width: 48rem) {
  .image-content__row {
    gap: 8rem;
    flex-direction: row;
  }
  .image-content__row.image-right {
    flex-direction: row-reverse;
    text-align: center;
  }
  .image-content__row.image-right p:has(.button) {
    justify-content: space-around;
  }
}
.image-content__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-block: 6rem;
}
.image-content__image {
  border-radius: 3rem;
  overflow: hidden;
}
.image-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-content__image--circle {
  border-radius: 50%;
  max-width: 50rem;
}
.image-content__image--circle img {
  aspect-ratio: 1/1;
}
@media screen and (min-width: 48rem) {
  .image-content__text {
    flex-basis: 50%;
    flex-grow: 1;
  }
  .image-content__image {
    flex-basis: 50%;
    flex-shrink: 0;
  }
}

section.news-carousel {
  background-color: var(--color-pale-grey);
  padding-block: 8rem;
}
section.news-carousel.last {
  margin-block-end: 0 !important;
}
.moneytalks section.news-carousel {
  background-color: var(--color-moneytalks-bg);
}
section.news-carousel + section {
  padding-block-start: 0;
}

.home-news {
  overflow: clip;
}
.home-news__header {
  display: grid;
  gap: 2.4rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .home-news__header {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}
.home-news__title {
  margin: 0 0 1.6rem;
}
.home-news__summary {
  margin: 0;
  max-width: 76rem;
  font-size: 1.9rem;
  line-height: 1.55;
}
.home-news__link {
  align-self: start;
  font-weight: var(--font-weight-bold);
  background: #fff;
  color: var(--color-charcoal);
}
.home-news__carousel-shell {
  margin-inline: calc(50% - 50vw);
  padding-inline: 2rem;
}
.home-news__carousel {
  overflow: visible;
}
.home-news__slide {
  width: calc(100vw - 4rem);
  height: auto;
}
.home-news__footer {
  margin-top: 3.2rem;
}
.home-news__footer-inner {
  display: flex;
  justify-content: flex-end;
  margin-inline: calc(50% - 50vw);
  padding-inline: 2rem;
}
.home-news__nav {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}
.home-news__nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border: 0.1rem solid rgba(42, 36, 51, 0.14);
  border-radius: 999px;
  background: var(--color-white);
  color: rgba(42, 36, 51, 0.5);
  font-size: 3rem;
  line-height: 1;
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.home-news__nav-button:hover, .home-news__nav-button:focus-visible {
  color: var(--fincap-red);
  border-color: rgba(195, 38, 121, 0.3);
  transform: translateY(-0.1rem);
}
.home-news__nav-button.swiper-button-disabled {
  color: rgba(42, 36, 51, 0.2);
  cursor: default;
  transform: none;
}
.home-news__nav-button span {
  transform: translateY(-3px);
}
.home-news--static .home-news__footer {
  display: none;
}
.home-news .swiper-horizontal {
  overflow: visible;
}

@media screen and (min-width: 35rem) {
  .home-news__slide {
    width: calc((100vw - 4rem - 2rem) / 2);
  }
}
@media screen and (min-width: 48rem) {
  .home-news__carousel-shell {
    padding-inline: 3.2rem;
  }
  .home-news__footer-inner {
    padding-inline: 3.2rem;
  }
  .home-news__slide {
    width: calc((100vw - 6.4rem - 4.8rem) / 3);
  }
}
@media screen and (min-width: 64rem) {
  .home-news__carousel-shell {
    padding-inline: 2rem;
  }
  .home-news__footer-inner {
    padding-inline: 2rem;
  }
  .home-news__slide {
    width: calc((100vw - 8rem - 7.2rem) / 4);
  }
}
@media screen and (min-width: 83.75rem) {
  .home-news__slide {
    width: calc((100vw - 8rem - 12.8rem) / 5);
  }
}
@media screen and (min-width: 87.5rem) {
  .home-news__slide {
    width: calc((100vw - 8rem - 16rem) / 6);
  }
}
.element.text-columns {
  margin-block-end: 4rem;
}

.text-columns {
  border-top: 1px solid var(--color-line-grey);
}
.text-columns h2, .text-columns h3 {
  margin-top: 0;
}
.text-columns h2 {
  font-size: calc(1.375rem + 1.5vw);
}
.text-columns h3 {
  font-size: calc(1.3125rem + 0.75vw);
}
.text-columns__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block-start: 4rem;
}
@media screen and (min-width: 48rem) {
  .text-columns__grid {
    gap: 4rem;
    flex-direction: row;
  }
  .text-columns__grid__left {
    width: 33%;
    flex-shrink: 0;
  }
}

.element-content + .two-panel-banner {
  margin-block-start: 8rem;
}

.two-panel-banner {
  background: #7cd9d7;
}
.two-panel-banner.last {
  margin-block-end: 0 !important;
}
.two-panel-banner h2 {
  color: #000;
}
.two-panel-banner__grid {
  display: grid;
  grid-template-rows: auto auto;
}
@media screen and (min-width: 64rem) {
  .two-panel-banner__grid {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
  }
}
.two-panel-banner__image img {
  height: 100%;
  object-fit: cover;
}
.two-panel-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem 4rem;
  text-align: center;
}
.two-panel-banner__content h2 {
  font-size: 3.6rem;
  margin-block-end: 3.2rem;
}
.two-panel-banner__content .button {
  margin-block-start: 2rem;
}
@media screen and (min-width: 64rem) {
  .two-panel-banner__content {
    font-size: 2.4rem;
    padding: 2rem 8rem;
  }
  .two-panel-banner__content h2 {
    font-size: 5rem;
  }
}

/**
 * Accordion styles
 * See also accordion.js
 */
.accordion__container {
  display: grid;
  grid-template-rows: 0fr;
  transition: var(--transition-default);
  visibility: hidden;
  opacity: 0;
}

.accordion__item.is-active .accordion__container {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 100;
}

[data-accordion-flip] {
  transition: var(--transition-default);
}

.accordion__item.is-active [data-accordion-flip] {
  rotate: -180deg;
}

.alert-banner {
  color: var(--color-charcoal);
  border-bottom: 0.1rem solid rgba(42, 36, 51, 0.12);
}

.alert-banner--notice {
  background: #fff7db;
}

.alert-banner--information {
  background: #dff3ff;
}

.alert-banner--alert {
  background: #ffe3e8;
}

.alert-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding-block: 2rem;
}

.alert-banner__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.alert-banner__content.dismissible {
  margin-inline-end: 3rem;
}
.alert-banner__content__inner {
  display: flex;
  gap: 1rem;
}

.alert-banner__message p {
  font-size: 1.4rem;
  margin: 0.5rem 0 0;
}
.alert-banner__message p.alert-title {
  margin-block-start: 0;
}
@media screen and (min-width: 35rem) {
  .alert-banner__message p {
    font-size: 1.6rem;
  }
}
.alert-banner__message p + p {
  margin-block-start: 0;
}

.alert-banner__link {
  margin-inline-end: auto;
  color: inherit;
  font-weight: var(--font-weight-bold);
}

.alert-banner__dismiss {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(42, 36, 51, 0.1);
  color: inherit;
  font-size: 2.4rem;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.alert-banner__dismiss:hover,
.alert-banner__dismiss:focus-visible {
  background: rgba(42, 36, 51, 0.18);
}

.article-card {
  display: grid;
  border-radius: 2.4rem;
  overflow: hidden;
  transition: var(--transition-default);
  background: var(--color-white);
}
.article-card:hover, .article-card:has(a:focus) {
  box-shadow: var(--shadow-float);
}
.article-card a {
  color: inherit;
  text-decoration: none;
}

.article-card__media-link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  border-bottom: 0;
  user-select: text;
}

.article-card__media,
.article-card__media--placeholder {
  aspect-ratio: 12/7;
  border-bottom: 1px solid var(--color-line-grey);
}

.article-card__media--placeholder {
  background: url("../images/news-placeholder.png") no-repeat center center/cover;
}

.article-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  display: grid;
  gap: 1.4rem;
  padding: 2.4rem;
  border-top: 0;
}

.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  color: var(--color-grey);
  font-size: 1.4rem;
}

.article-card__title {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.05;
}

.article-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
}

.article-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0 1.2rem;
  border: 0.1rem solid var(--fincap-red);
  border-radius: 999px;
  color: var(--fincap-red);
  font-size: 1.4rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  text-decoration: none;
}

a.article-card__category:hover,
a.article-card__category:focus-visible {
  border-color: var(--fincap-red);
  background: var(--fincap-red);
  color: var(--color-white);
}

body.moneytalks .article-card__category {
  border: 0.1rem solid var(--mt-orange);
  color: var(--mt-orange);
}
body.moneytalks .article-card__category:hover, body.moneytalks .article-card__category:focus-visible {
  background: var(--mt-orange);
  color: var(--color-white);
}

body.tepapahou .article-card__category {
  border: 0.1rem solid var(--tph-purple);
  color: var(--tph-purple);
}
body.tepapahou .article-card__category:hover, body.tepapahou .article-card__category:focus-visible {
  background: var(--tph-purple);
  color: var(--color-white);
}

.article-card__snippet {
  margin: 0;
  color: var(--color-grey);
}

.article-card__action {
  margin: 0;
}

.articles-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.articles-pagination__link,
.articles-pagination__page,
.articles-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  min-height: 4.4rem;
  padding: 0 1.4rem;
  border: 0.1rem solid var(--color-line-grey);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-surface-berry);
  font-size: 1.6rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  text-decoration: none;
}

.articles-pagination__link {
  min-width: auto;
}

.articles-pagination__page--current {
  border-color: var(--fincap-red);
  background: var(--fincap-red);
  color: var(--color-white);
}
body.tepapahou .articles-pagination__page--current {
  border-color: var(--tph-purple);
  background: var(--tph-purple);
}
body.tepapahou .articles-pagination__page--current {
  border-color: var(--mt-orange);
  background: var(--mt-orange);
}

.articles-pagination__ellipsis {
  border-color: transparent;
  background: transparent;
  color: var(--color-grey);
}

/**
 * Breadcrumb styles
 */
.breadcrumbs dd,
.breadcrumbs ol,
.breadcrumbs ul {
  list-style: none;
}
.breadcrumbs li {
  margin-left: 0;
}

.breadcrumbs__list {
  display: flex;
  font-size: 1.4rem;
}

.breadcrumbs__list-delimiter {
  color: var(--color-grey);
  padding: 0 0.8rem;
}

.breadcrumb__wrapper,
.breadcrumbs {
  color: var(--color-grey);
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--fincap-red);
}

.hamburger-box {
  width: 2.4rem;
  height: 2.1rem;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.15rem;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 2.4rem;
  height: 0.3rem;
  background-color: var(--fincap-red);
  border-radius: 999px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -0.9rem;
}
.hamburger-inner::after {
  bottom: -0.9rem;
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

.hamburger {
  position: relative;
  z-index: 125;
  display: none;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--fincap-red);
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.hamburger:hover, .hamburger:focus-visible {
  opacity: 0.8;
  transform: translateY(-0.1rem);
}

.hamburger-box {
  width: 2.4rem;
  height: 2.4rem;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: currentColor;
}

.hamburger--overlay {
  display: inline-flex;
  color: var(--color-white);
}

@media (max-width: 1023px) {
  .hamburger {
    display: inline-flex;
  }
}
.mentor-locator-page {
  display: grid;
  gap: 2rem;
}

.mentor-locator-page__summary {
  max-width: 70rem;
  color: var(--color-grey);
  font-size: 1.8rem;
}

.mentor-locator {
  --mentor-locator-header-offset: 9rem;
  --mentor-locator-page-offset: 18rem;
  --mentor-locator-max-height: min(72rem, calc(100dvh - var(--mentor-locator-header-offset) - var(--mentor-locator-page-offset)));
  display: grid;
  grid-template-columns: minmax(32rem, 40rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  min-height: 0;
}

.mentor-locator__sidebar,
.mentor-locator__map-column {
  min-height: 0;
}

.mentor-locator__sidebar {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: var(--mentor-locator-max-height);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-line-grey);
  border-radius: 2.4rem;
  box-shadow: 0 2rem 5rem rgba(52, 30, 48, 0.08);
}

.mentor-locator__sidebar-header {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding: 2rem 2rem 1.2rem;
  border-bottom: 1px solid var(--color-line-grey);
}

.mentor-locator__sidebar-title {
  margin: 0;
  font-size: 3rem;
}

.mentor-locator__filter {
  position: relative;
}

.mentor-locator__filter-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  padding: 1.4rem 1.6rem;
  background: var(--color-white);
  border: 1px solid var(--color-line-grey);
  border-radius: 1.6rem;
  color: var(--color-surface-berry-dark);
  font-size: 1.7rem;
  font-weight: 600;
  text-align: left;
  box-shadow: 0 0.8rem 2rem rgba(52, 30, 48, 0.06);
}

.mentor-locator__filter-button::after {
  content: "+";
  font-size: 2.4rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.mentor-locator__filter.is-open .mentor-locator__filter-button::after {
  transform: rotate(45deg);
}

.mentor-locator__filter-panel {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  right: 0;
  z-index: 20;
  display: none;
  gap: 1.2rem;
  padding: 1.6rem;
  background: var(--color-white);
  border: 1px solid var(--color-line-grey);
  border-radius: 1.8rem;
  box-shadow: 0 2rem 4rem rgba(52, 30, 48, 0.14);
}

.mentor-locator__filter.is-open .mentor-locator__filter-panel {
  display: grid;
}

.mentor-locator__filter-options {
  display: grid;
  gap: 1rem;
  max-height: 28rem;
  overflow: auto;
}

.mentor-locator__filter-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.2rem 0;
  color: var(--color-surface-berry-dark);
  font-size: 1.6rem;
}

.mentor-locator__filter-option input {
  inline-size: 1.8rem;
  block-size: 1.8rem;
}

.mentor-locator__filter-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--color-line-grey);
}

.mentor-locator__filter-action {
  padding: 0;
  background: none;
  border: 0;
  color: var(--mt-orange);
  font-size: 1.4rem;
  font-weight: 700;
}

.mentor-locator__results {
  color: var(--color-grey);
  font-size: 1.4rem;
}

.mentor-locator__list {
  display: grid;
  gap: 0;
  overflow: auto;
}

.mentor-locator__item {
  display: grid;
  gap: 0.7rem;
  padding: 1.6rem 2rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-line-grey);
  text-align: left;
  transition: background-color 160ms ease, transform 160ms ease;
  border-radius: 0;
}

.mentor-locator__item[hidden] {
  display: none;
}

.mentor-locator__item:hover,
.mentor-locator__item:focus-visible,
.mentor-locator__item.is-active {
  background: var(--color-surface-warm);
}

.mentor-locator__item.is-active {
  box-shadow: inset 0.4rem 0 0 var(--mt-orange);
}

.mentor-locator__item-title {
  font-family: var(--font-family-display);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-surface-berry-dark);
}

.mentor-locator__item-categories {
  color: var(--mt-orange);
  font-size: 1.4rem;
  font-weight: 600;
}

.mentor-locator__item-address,
.mentor-locator__item-contact {
  color: var(--color-grey);
  font-size: 1.5rem;
}

.mentor-locator__item-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
}

.mentor-locator__empty {
  display: none;
  padding: 2rem;
  color: var(--color-grey);
  font-size: 1.5rem;
}

.mentor-locator__empty.is-visible {
  display: block;
}

.mentor-locator__map-column {
  display: grid;
  min-width: 0;
}

.mentor-locator__map,
.mentor-locator__map-fallback {
  width: 100%;
  height: var(--mentor-locator-max-height);
  max-height: var(--mentor-locator-max-height);
  min-height: 42rem;
  border-radius: 2.4rem;
  overflow: hidden;
  border: 1px solid var(--color-line-grey);
  box-shadow: 0 2rem 5rem rgba(52, 30, 48, 0.08);
}

.mentor-locator__map .mapboxgl-map,
.mentor-locator__map .mapboxgl-canvas-container,
.mentor-locator__map .mapboxgl-canvas {
  width: 100% !important;
  height: 100% !important;
}

.mentor-locator__map canvas {
  width: 100% !important;
  height: 100% !important;
}

.mentor-locator__map-fallback {
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--color-pale-grey);
  text-align: center;
}

.mentor-marker.is-filtered-out {
  display: none;
}

.mentor-marker {
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  background: var(--mt-orange);
  border: 0.3rem solid var(--color-white);
  border-radius: 999px;
  box-shadow: 0 0.4rem 1.8rem rgba(42, 36, 51, 0.24);
}

.mentor-marker.is-active {
  background: var(--color-surface-berry);
  transform: scale(1.2);
}

.mentor-popup__title {
  margin: 0 0 0.6rem;
  font-size: 2rem;
}

.mentor-popup__meta,
.mentor-popup__line {
  margin: 0 0 0.8rem;
  color: var(--color-grey);
  font-size: 1.4rem;
}

.mentor-popup__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}

.mentor-popup__link {
  display: block;
  max-width: min(28rem, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mapboxgl-popup-content {
  max-width: min(32rem, 100vw - 4rem);
  padding: 1.6rem;
  border-radius: 1.6rem;
}

@media (max-width: 991px) {
  .mentor-locator {
    --mentor-locator-header-offset: 8rem;
    --mentor-locator-page-offset: 15rem;
    grid-template-columns: 1fr;
  }
  .mentor-locator__map,
  .mentor-locator__map-fallback {
    height: var(--mentor-locator-max-height);
    max-height: var(--mentor-locator-max-height);
    min-height: 40rem;
  }
  .mentor-locator__sidebar {
    order: 2;
    max-height: var(--mentor-locator-max-height);
  }
  .mentor-locator__map-column {
    order: 1;
  }
}
.mapboxgl-popup .mentor-popup__title {
  padding-inline-end: 1.4rem;
}
.mapboxgl-popup .mentor-popup__title:focus-visible {
  outline: none;
}
.mapboxgl-popup .mapboxgl-popup-close-button {
  right: 10px;
  top: 5px;
  font-size: 22px;
  line-height: 1;
}

.nav--desktop {
  margin-left: auto;
  min-width: 0;
}

.desktop-menu,
.overlay-menu,
.overlay-submenu__list,
.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.desktop-menu__item {
  position: relative;
}

.desktop-menu__link {
  display: inline-flex;
  align-items: center;
  min-height: 4.6rem;
  padding: 0 1.4rem;
  color: var(--color-charcoal) !important;
  font-size: 1.9rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  transition: 0.3s ease;
  border-bottom: 0.2rem solid transparent;
}

.desktop-menu__item > span.desktop-menu__link {
  cursor: default;
}

.desktop-menu__link:hover,
.desktop-menu__link:focus-visible,
.desktop-menu__link--current,
.desktop-menu__link--section {
  border-bottom-color: var(--fincap-red);
}
.desktop-menu__link:hover.desktop-menu__moneytalks,
.desktop-menu__link:focus-visible.desktop-menu__moneytalks,
.desktop-menu__link--current.desktop-menu__moneytalks,
.desktop-menu__link--section.desktop-menu__moneytalks {
  border-bottom-color: var(--mt-orange);
}
.desktop-menu__link:hover.desktop-menu__tepapahou,
.desktop-menu__link:focus-visible.desktop-menu__tepapahou,
.desktop-menu__link--current.desktop-menu__tepapahou,
.desktop-menu__link--section.desktop-menu__tepapahou {
  border-bottom-color: var(--tph-purple);
}

.desktop-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  min-width: 24rem;
  padding: 1rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.96);
  border: 0.1rem solid rgba(195, 38, 121, 0.1);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.8rem);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.desktop-submenu::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: 0;
  left: 0;
  height: 1rem;
}

.desktop-menu__item:hover .desktop-submenu,
.desktop-menu__item:focus-within .desktop-submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-menu__item:nth-last-child(-n+2) .desktop-submenu {
  right: 0;
  left: auto;
}

.desktop-submenu__list {
  display: grid;
  gap: 0.2rem;
}

.desktop-submenu__link {
  display: block;
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  color: var(--color-charcoal) !important;
  text-decoration: none;
}

.desktop-submenu__link:hover,
.desktop-submenu__link:focus-visible {
  background: rgba(195, 38, 121, 0.08);
  color: var(--color-surface-berry);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.nav-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 36, 51, 0.18);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.nav-overlay__panel {
  position: absolute;
  top: var(--mobile-nav-offset, 0px);
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: calc(100vh - var(--mobile-nav-offset, 0px));
  padding: 2rem 2rem 3.2rem;
  background: var(--fincap-red);
  color: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

body.tepapahou .nav-overlay__panel {
  background: var(--tph-purple);
}

body.moneytalks .nav-overlay__panel {
  background: var(--mt-orange);
}

.nav-overlay__panel-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2.8rem;
}

.nav--overlay {
  display: flex;
  flex: 1;
}

.overlay-menu {
  display: grid;
  align-content: start;
  width: 100%;
}

.overlay-menu__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.overlay-menu__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.overlay-menu__link,
.overlay-submenu__link {
  display: block;
  padding: 1.6rem 0;
  color: var(--color-white);
  text-decoration: none;
}

.overlay-menu__link {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
}

.overlay-submenu {
  display: none;
  padding: 0 0 1.6rem;
}

.accordion__item.is-active > .overlay-submenu {
  display: block;
}

.overlay-submenu__list {
  display: grid;
  gap: 0.2rem;
  padding-left: 0.8rem;
}

.overlay-submenu__link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.8rem;
}

.overlay-menu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  min-height: 4.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  cursor: pointer;
}

.accordion__item.is-active .overlay-menu__toggle svg {
  transform: rotate(180deg);
}

.overlay-menu__toggle svg {
  transition: transform 0.1s;
}

#site-menu a {
  color: #fff !important;
}

body.mobile-menu-is-active {
  overflow: hidden;
  padding-right: var(--scrollbar-compensation, 0px);
}

body.mobile-menu-is-active .nav-overlay {
  pointer-events: auto;
}

body.mobile-menu-is-active .nav-overlay__backdrop {
  opacity: 1;
}

body.mobile-menu-is-active .nav-overlay__panel {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .nav-overlay {
    display: none;
  }
}
@media (max-width: 1023px) {
  .nav--desktop {
    display: none;
  }
}
@media (min-width: 560px) and (max-width: 1023px) {
  .nav-overlay__panel {
    padding: 3rem 3.2rem 4rem;
  }
}
/* Layout styles that affect the overall layout of all pages */
body {
  /* Ensures the body will be at least viewport height even in short pages. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html {
  scrollbar-gutter: stable;
}

main {
  /*
    Ensure the main section stretches to fill any empty space.
    This pushes the footer down to the bottom of the viewport in short pages.
  */
  flex-grow: 1;
}

/* The container class enforces max-width and should wrap all elements */
.container {
  max-width: 124rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}
.container--wide {
  max-width: 100%;
}
.container--header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

section.last {
  margin-bottom: 8rem;
}

body.tepapahou .footer h3, body.tepapahou .footer a {
  color: #fff;
}

.footer {
  background-color: #000;
  color: #fff;
  margin-top: auto;
}
.footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 30rem) {
  .footer .container {
    flex-direction: row;
  }
}
.footer__meta {
  text-align: right;
  flex-shrink: 0;
}
.footer__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.facebook-link svg {
  transition: transform 0.2s ease-in-out;
  width: 4rem;
  height: 4rem;
}
.facebook-link svg path {
  fill: #fff;
}
.facebook-link:hover svg {
  transform: scale(1.05);
}

/* Header */
.header {
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 0.1rem solid rgba(195, 38, 121, 0.12);
  box-shadow: 0 1.2rem 3rem rgba(42, 36, 51, 0.08);
  overflow-x: clip;
  overflow-y: visible;
}
@media (min-width: 992px) {
  .header {
    min-height: 9rem;
  }
}
.header dd,
.header ol,
.header ul {
  list-style: none;
}
.header li {
  margin-left: 0;
}

body.mobile-menu-is-active .header {
  width: calc(100% + var(--scrollbar-compensation, 0px));
  margin-right: calc(var(--scrollbar-compensation, 0px) * -1);
}

.container--header {
  position: relative;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__auth {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.header__auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 999px;
  color: var(--color-charcoal) !important;
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.header__auth-link:hover, .header__auth-link:focus-visible {
  color: var(--fincap-red);
  background: rgba(235, 24, 93, 0.08);
}
.nav-overlay .header__auth-link {
  display: flex;
  width: auto;
  gap: 1rem;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.header__auth-link--overlay {
  color: var(--color-white);
}
.header__auth-link--overlay:hover, .header__auth-link--overlay:focus-visible {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.header__auth-icon {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.logo {
  display: inline-flex;
  position: relative;
  z-index: 2;
  width: 150px;
  height: 61px;
  background: url("../images/logo.webp") no-repeat 0 0;
  background-size: 100%;
}

.logo-mt {
  width: 150px;
  height: 63px;
  background: url("../images/Money_Talks_Logo_Main.png") no-repeat 0 0;
  background-size: 100%;
}

@media (max-width: 767px) {
  .container--header {
    padding: 1rem 1.2rem;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__logos {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  width: calc(100% - 6rem);
}
@media screen and (min-width: 30rem) {
  .header__logos {
    width: calc(100% - 10rem);
  }
}
@media screen and (min-width: 64rem) {
  .header__logos {
    width: 50%;
  }
}

@media (max-width: 1023px) {
  .header__auth {
    display: none;
  }
  .header > .hamburger {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
  }
  .header > .hamburger:hover,
  .header > .hamburger:focus-visible {
    transform: translateY(calc(-50% - 0.1rem));
  }
}
.ArticlesLandingPage {
  background: var(--color-pale-grey);
}

.articles-landing {
  display: grid;
  gap: 3.2rem;
  margin-block-end: 8rem;
}

.articles-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

.articles-search {
  display: grid;
  gap: 1.2rem;
  align-items: start;
  width: 100%;
}
@media (min-width: 48rem) {
  .articles-search {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 32rem) auto;
  }
}

.articles-search__keyword {
  width: 100%;
  min-height: 5.2rem;
  padding: 1.2rem 1.6rem;
  border: 0.1rem solid var(--fincap-red);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0.8rem 2rem rgba(52, 30, 48, 0.06);
  color: var(--fincap-red);
}

body.moneytalks .articles-search__category-button,
body.moneytalks .articles-search__keyword {
  border: 0.1rem solid var(--mt-orange);
  color: var(--mt-orange);
}

body.tepapahou .articles-search__category-button,
body.tepapahou .articles-search__keyword {
  border: 0.1rem solid var(--tph-purple);
  color: var(--tph-purple);
}

.articles-search__category {
  position: relative;
}

.articles-search__category-button {
  border: 1px solid var(--fincap-red);
  color: var(--fincap-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  min-height: 5.2rem;
  padding: 1.4rem 1.6rem;
  background: var(--color-white);
  border-radius: 1.6rem;
  font-size: 1.7rem;
  text-align: left;
  box-shadow: 0 0.8rem 2rem rgba(52, 30, 48, 0.06);
  cursor: pointer;
  list-style: none;
}

.articles-search__category-button::-webkit-details-marker {
  display: none;
}

.articles-search__category-button::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-right: 0.2rem solid currentColor;
  border-bottom: 0.2rem solid currentColor;
  transform: translateY(-0.2rem) rotate(45deg);
  transition: transform 160ms ease;
}

.articles-search__category[open] .articles-search__category-button::after {
  transform: translateY(0.2rem) rotate(225deg);
}

.articles-search__category-panel {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 1rem;
  max-height: 28rem;
  overflow: auto;
  padding: 1.6rem;
  background: var(--color-white);
  border: 1px solid var(--color-line-grey);
  border-radius: 1.8rem;
  box-shadow: 0 2rem 4rem rgba(52, 30, 48, 0.14);
}

.articles-search__category-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-surface-berry-dark);
  font-size: 1.6rem;
}

.articles-search__category-option input {
  inline-size: 1.8rem;
  block-size: 1.8rem;
}

.articles-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.2rem;
  width: 100%;
  margin: 0;
}
@media (min-width: 48rem) {
  .articles-search__submit {
    width: auto;
  }
}

.articles-filters__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0 2.4rem;
  font-family: var(--font-family-display);
  border-radius: 999px;
  border: 0.2rem solid var(--fincap-red);
  color: var(--fincap-red);
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  text-transform: uppercase;
  transition: var(--transition-default);
  text-decoration: none;
}
.articles-filters__pill:hover, .articles-filters__pill:focus-visible, .articles-filters__pill--active {
  background: var(--fincap-red);
  color: var(--color-white) !important;
}
body.tepapahou .articles-filters__pill {
  border-color: var(--fincap-purple);
  color: var(--fincap-purple);
}
body.tepapahou .articles-filters__pill:hover, body.tepapahou .articles-filters__pill:focus-visible, body.tepapahou .articles-filters__pill--active {
  background: var(--fincap-purple);
}
body.moneytalks .articles-filters__pill {
  border-color: var(--mt-orange);
  color: var(--mt-orange);
}
body.moneytalks .articles-filters__pill:hover, body.moneytalks .articles-filters__pill:focus-visible, body.moneytalks .articles-filters__pill--active {
  background: var(--mt-orange);
}

.articles-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) {
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .articles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 83.75rem) {
  .articles-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.events-filters__field select,
.surface-card--form input[type=text],
.surface-card--form input[type=email],
.surface-card--form input[type=password],
.surface-card--form input[type=tel],
.surface-card--form textarea {
  width: 100%;
  min-height: 4.8rem;
  padding: 0 1.4rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 0.1rem 0.4rem rgba(42, 36, 51, 0.04);
}

.articles-landing,
.events-landing {
  display: grid;
  gap: 2rem;
}

.articles-landing__header,
.events-landing__header {
  display: grid;
  gap: 1.4rem;
}

.articles-pagination {
  justify-content: center;
  margin-block-start: 1.6rem;
}

.events-landing__intro,
.articles-landing__intro {
  color: var(--color-grey);
}

.surface-card--form textarea {
  min-height: 12rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.article-post__image {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  max-width: 90rem;
  margin-block-end: 3rem;
}
.article-post__categories {
  margin-block-start: 3.2rem;
}

.event-page {
  gap: 3rem;
  display: grid;
}

.event-page__header {
  gap: 2.4rem;
  display: grid;
}

.event-page__intro {
  gap: 1.2rem;
  display: grid;
}

.event-page__summary {
  color: var(--color-grey);
  max-width: 90rem;
  margin: 0;
  font-size: 2rem;
  line-height: 1.6;
}

.event-page__image {
  border: 0.1rem solid rgba(195, 38, 121, 0.12);
  border-radius: 2.4rem;
  box-shadow: var(--shadow-soft);
  margin: 0;
  overflow: hidden;
}

.event-page__image img {
  width: 100%;
  height: auto;
  display: block;
}

.event-page__body {
  gap: 2.4rem;
  display: grid;
}

.event-page__main {
  min-width: 0;
}

.event-page__sidebar {
  gap: 1.6rem;
  align-content: start;
  display: grid;
}

.event-page__meta-grid {
  gap: 1.6rem;
  display: grid;
}

.event-page__meta-panel, .event-page__calendar {
  background: rgba(255, 255, 255, 0.72);
  border: 0.1rem solid rgba(195, 38, 121, 0.1);
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
}

.event-page__meta-panel {
  padding: 2rem;
}

.event-page__meta-title {
  margin: 0 0 1.6rem;
  font-size: 2rem;
}

.event-page__meta-list {
  gap: 1.4rem;
  margin: 0;
  display: grid;
}

.event-page__meta-list div {
  gap: 0.5rem;
  display: grid;
}

.event-page__meta-list dt {
  color: var(--color-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  font-weight: 700;
}

.event-page__meta-list dd {
  margin: 0;
  color: var(--color-charcoal);
  line-height: 1.6;
}

.event-page__facilitators {
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.8rem;
  display: grid;
}

.event-page__facilitators li {
  color: var(--color-grey);
}

.event-page__facilitators span {
  margin-left: 0.8rem;
}

.event-page__calendar summary {
  cursor: pointer;
  list-style: none;
  padding: 1.8rem 2rem;
  font-family: var(--font-family-display);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}

.event-page__calendar summary::-webkit-details-marker {
  display: none;
}

.event-page__calendar-menu {
  border-top: 0.1rem solid rgba(195, 38, 121, 0.1);
  gap: 0.1rem;
  padding: 0.6rem;
  display: grid;
}

.event-page__calendar-menu a {
  border-radius: 1.2rem;
  color: var(--color-charcoal);
  padding: 1rem 1.2rem;
  text-decoration: none;
}

.event-page__calendar-menu a:hover, .event-page__calendar-menu a:focus-visible {
  background: var(--color-surface-warm);
}

.event-page__content {
  gap: 1.8rem;
  display: grid;
}

.event-page__content img {
  border-radius: 1.8rem;
  max-width: 100%;
  height: auto;
}

.event-page__content > * {
  max-width: 90rem;
}

.event-page__content p, .event-page__content ul, .event-page__content ol, .event-page__content blockquote, .event-page__content h2, .event-page__content h3, .event-page__content h4 {
  margin: 0;
}

.event-page__content ul, .event-page__content ol {
  padding-left: 2rem;
}

@media (width >= 992px) {
  .event-page__header {
    grid-template-columns: minmax(0, 1fr) minmax(32rem, 48rem);
    align-items: start;
  }
  .event-page__body {
    grid-template-columns: minmax(0, 1fr) minmax(30rem, 38rem);
  }
}
.events-calendar {
  display: grid;
  gap: 0;
  padding: 0;
  --events-bar-row-height: 1.9rem;
  --events-bar-row-gap: 0.4rem;
  --events-bar-offset: 7rem;
}

.events-calendar__weekdays {
  margin-bottom: 1.4rem;
}

.events-calendar__weekdays,
.events-calendar__grid,
.events-compact-calendar__weekdays,
.events-compact-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
}

.events-calendar__weekdays,
.events-calendar__grid {
  gap: 0;
}

.events-calendar__weekdays,
.events-compact-calendar__weekdays {
  color: var(--color-grey);
  font-weight: var(--font-weight-bold);
}

.events-calendar__day,
.events-compact-calendar__day {
  min-height: 10rem;
  padding: 1rem;
  border-radius: 1.6rem;
  background: rgba(248, 242, 245, 0.78);
  border: 0.1rem solid rgba(195, 38, 121, 0.08);
}

.events-calendar__day {
  min-height: 18rem;
  padding: 2.8rem 1.8rem 1.8rem;
  background: var(--color-white);
  border: 0.1rem solid rgba(42, 36, 51, 0.12);
  border-radius: 0;
  border-right: 0;
  border-bottom: 0;
}

.events-calendar__day:nth-child(7n) {
  border-right: 0.1rem solid rgba(42, 36, 51, 0.12);
}

.events-calendar__week:last-child .events-calendar__day {
  border-bottom: 0.1rem solid rgba(42, 36, 51, 0.12);
}

.events-calendar__day--today,
.events-compact-calendar__day--today {
  background: rgba(244, 215, 231, 0.54);
  border-color: rgba(195, 38, 121, 0.24);
}

.events-calendar__day--today {
  background: rgba(244, 215, 231, 0.2);
  border-color: rgba(42, 36, 51, 0.18);
}

.events-calendar__day--muted,
.events-compact-calendar__day--muted {
  opacity: 0.5;
}

.events-calendar__day-header,
.events-mobile-card h4,
.events-mobile-card p {
  margin: 0;
}

.events-calendar__day-header {
  margin-bottom: var(--events-bars-space, 1.6rem);
}

.events-calendar__events,
.events-mobile-list__events {
  display: grid;
  gap: 0.7rem;
}

.events-calendar__events {
  position: relative;
  padding-block-start: 2rem;
}

.events-calendar__event,
.events-mobile-card {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  text-decoration: none;
}

.events-calendar__event {
  position: relative;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 1.2rem;
  line-height: 1.28;
}
.events-calendar__event + .events-calendar__event {
  margin-top: 0.8rem;
}

.events-calendar__event h3 {
  font-size: 1.6rem;
  line-height: 1.18;
  margin-block: 0.2rem 0;
}

.events-calendar__bars {
  position: absolute;
  z-index: 10;
  top: var(--events-bar-offset);
  right: 0;
  left: 0;
  display: grid;
  gap: var(--events-bar-row-gap);
  pointer-events: none;
}

.events-calendar__bar-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
}

.events-calendar__bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: var(--events-bar-row-height);
  padding: 0 1rem;
  border-radius: 0;
  background: var(--color-surface-rose);
  color: var(--color-charcoal);
  font-size: 1.15rem;
  line-height: 1.15;
  text-decoration: none;
  pointer-events: auto;
}

.events-calendar__bar-label {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.events-calendar__bar--starts {
  margin-left: 1.2rem;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.events-calendar__bar--ends {
  margin-right: 1.2rem;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

.events-calendar__week {
  position: relative;
}

.events-calendar__week--tooltip-active {
  z-index: 40;
}

.events-calendar__tooltip {
  position: absolute;
  z-index: 100;
  top: calc(100% + 0.8rem);
  left: 0;
  display: grid;
  gap: 0.6rem;
  width: min(28rem, 90vw);
  padding: 2rem;
  border: 0.1rem solid rgba(42, 36, 51, 0.2);
  border-radius: 0.4rem;
  background: var(--color-white);
  box-shadow: 0 1.6rem 4rem rgba(42, 36, 51, 0.16);
  color: var(--color-charcoal);
  font-size: 1.4rem;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(-0.4rem);
  transition: opacity 0.16s ease, transform 0.16s ease;
  visibility: hidden;
  word-break: break-word;
}

.events-calendar__event--tooltip-above .events-calendar__tooltip,
.events-calendar__bar--tooltip-above .events-calendar__tooltip {
  top: auto;
  bottom: calc(100% + 0.8rem);
  transform: translateY(0.4rem);
}

.events-calendar__event--tooltip-below .events-calendar__tooltip,
.events-calendar__bar--tooltip-below .events-calendar__tooltip {
  top: calc(100% + 0.8rem);
  bottom: auto;
}

.events-calendar__day:nth-child(7n+5) .events-calendar__tooltip,
.events-calendar__day:nth-child(7n+6) .events-calendar__tooltip,
.events-calendar__day:nth-child(7n) .events-calendar__tooltip,
.events-calendar__bar--tooltip-left .events-calendar__tooltip {
  right: 0;
  left: auto;
}

.events-calendar__tooltip-time {
  color: var(--color-grey);
  font-size: 1.2rem;
}

.events-calendar__tooltip-summary {
  font-size: 1.7rem;
}

.events-calendar__event:hover .events-calendar__tooltip,
.events-calendar__event:focus-visible .events-calendar__tooltip,
.events-calendar__bar:hover .events-calendar__tooltip,
.events-calendar__bar:focus-visible .events-calendar__tooltip {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.events-calendar__event:hover,
.events-calendar__event:focus-visible,
.events-calendar__bar:hover,
.events-calendar__bar:focus-visible {
  z-index: 30;
}

.events-compact-calendar,
.events-mobile-list {
  display: none;
}

.events-mobile-list__day {
  padding: 2rem;
  border-radius: 2.2rem;
}

.events-filters__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.events-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.events-calendar-nav h2 {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: clamp(2.8rem, 4vw, 4rem);
}

.events-filters {
  display: grid;
  gap: 1.6rem;
  width: 100%;
  max-width: none;
  padding: 2rem 0;
  border-radius: 2.4rem;
  box-sizing: border-box;
  justify-self: stretch;
  align-self: stretch;
}

.events-filters__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  width: 100%;
}

.events-filters__field {
  display: grid;
  gap: 0.6rem;
}

.events-filters__field span {
  font-size: 1.4rem;
  color: var(--tph-purple);
}

@media (max-width: 1023px) {
  .events-calendar {
    display: none;
  }
  .events-compact-calendar,
  .events-mobile-list {
    display: grid;
  }
  .events-compact-calendar {
    gap: 1.6rem;
  }
  .events-compact-calendar__weekdays {
    text-align: center;
    font-size: 1.2rem;
    font-weight: var(--font-weight-regular);
  }
  .events-compact-calendar__grid {
    gap: 0.8rem;
  }
  .events-compact-calendar__day {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.8rem;
    min-height: 6.8rem;
    padding: 0.8rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--color-charcoal);
    text-decoration: none;
  }
  .events-compact-calendar__day--link {
    color: var(--fincap-red);
  }
  .events-compact-calendar__day--selected {
    background: var(--color-pale-red);
    color: var(--color-white);
  }
  .events-compact-calendar__dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: currentColor;
  }
  .events-mobile-list {
    gap: 1.6rem;
  }
  .events-mobile-list__day {
    padding: 0;
    border-radius: 0;
  }
  .events-mobile-list__day h3 {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.6rem;
    margin: 0 0 1.6rem;
    font-size: 1.8rem;
  }
  .events-mobile-list__day h3::after {
    content: "";
    height: 0.1rem;
    background: rgba(42, 36, 51, 0.18);
  }
  .events-mobile-card {
    padding: 0 0 1.6rem;
    border-radius: 0;
    border-bottom: 0.1rem solid rgba(42, 36, 51, 0.18);
    background: transparent;
  }
}
/* Find A Mentor page styles are provided by components/_mentor-locator.scss. */
.mentor-locator-page {
  margin-block-end: 8rem;
}

#ForumReplyForm_TopicSubscription_Holder {
  display: none;
}

.forum-app {
  display: grid;
  gap: 2.8rem;
  width: 100%;
}

.forum-app__header {
  display: grid;
  gap: 1.6rem;
}

.forum-app__eyebrow {
  margin: 0;
  color: rgba(42, 36, 51, 0.52);
  font-size: 1.8rem;
}

.forum-app__intro {
  max-width: 90rem;
  margin: 0.8rem 0 0;
}

.forum-app__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 34rem);
  gap: 2.4rem;
  align-items: start;
}

.forum-card,
.forum-table,
.forum-form-card,
.forum-post {
  background: rgba(255, 255, 255, 0.82);
  border: 0.1rem solid rgba(195, 38, 121, 0.1);
  box-shadow: var(--shadow-soft);
  border-radius: 2.4rem;
  overflow: hidden;
}

.forum-search {
  display: flex;
  gap: 0;
  align-self: start;
}

.forum-search input[type=search] {
  width: 100%;
  min-height: 5.2rem;
  padding: 1.2rem 1.6rem;
  border: 0.1rem solid rgba(195, 38, 121, 0.14);
  border-right: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
}

.forum-search button {
  min-height: 5.2rem;
  padding: 0 2rem;
  border: 0.1rem solid rgba(195, 38, 121, 0.14);
  border-radius: 0;
  background: rgba(245, 242, 244, 0.98);
  color: rgba(42, 36, 51, 0.84);
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  margin: 0;
}

.forum-index-table {
  border: 0.1rem solid rgba(195, 38, 121, 0.12);
  background: rgba(255, 255, 255, 0.92);
}
.forum-index-table.last {
  margin-bottom: 8rem;
}

.forum-index-table + .forum-index-table {
  margin-top: 1.6rem;
}

.forum-index-table__head,
.forum-index-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 10rem 10rem 16rem;
  gap: 2rem;
  align-items: start;
}

.forum-index-table__head {
  padding: 1.6rem 2.4rem;
  background: var(--tph-purple);
  color: white;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
}

.forum-index-table__head-summary {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.5rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.45;
}

.forum-index-row {
  padding: 3rem 2.4rem;
  border-top: 0.1rem solid rgba(195, 38, 121, 0.08);
}

.forum-index-row__title {
  margin: 0 0 1rem;
  font-size: 3.4rem;
}

.forum-index-row__title a {
  text-decoration: none;
}

.forum-index-row__summary {
  max-width: 66rem;
  color: rgba(42, 36, 51, 0.48);
}

.forum-index-row__metric {
  color: rgba(42, 36, 51, 0.64);
  text-align: center;
}

.forum-index-row__lastpost {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
  color: rgba(42, 36, 51, 0.5);
}

.forum-index-row__lastpost a,
.forum-index-row__lastpost span:last-child {
  color: var(--tph-purple);
  text-decoration: none;
}

.forum-index-empty {
  padding: 2.4rem;
  border: 0.1rem solid rgba(195, 38, 121, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(42, 36, 51, 0.64);
}

.forum-card {
  padding: 2rem;
}

.forum-card__title {
  margin: 0 0 0.8rem;
}

.forum-card__title a {
  color: inherit;
  text-decoration: none;
}

.forum-table__head,
.forum-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 8rem 16rem;
  gap: 1.6rem;
  align-items: center;
  padding: 1.6rem 2rem;
}

.forum-table__head {
  font-weight: var(--font-weight-bold);
  border-bottom: 0.1rem solid rgba(195, 38, 121, 0.1);
}

.forum-table__row + .forum-table__row {
  border-top: 0.1rem solid rgba(195, 38, 121, 0.08);
}

.forum-table__row--sticky {
  background: linear-gradient(90deg, rgba(195, 38, 121, 0.08), rgba(195, 38, 121, 0.02) 24rem, rgba(255, 255, 255, 0) 24.1rem);
}

.forum-table__row--super-sticky {
  background: linear-gradient(90deg, rgba(195, 38, 121, 0.14), rgba(195, 38, 121, 0.04) 28rem, rgba(255, 255, 255, 0) 28.1rem);
}

.forum-table__topic-title {
  margin: 0;
}

.forum-table__sticky-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(195, 38, 121, 0.12);
  color: var(--tph-purple);
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  vertical-align: middle;
}

.forum-table__row--super-sticky .forum-table__sticky-badge {
  background: rgba(195, 38, 121, 0.18);
}

.forum-table__sticky-badge svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.forum-table__topic-title a {
  color: inherit;
  text-decoration: none;
}

.forum-table__topic-meta,
.forum-table__activity {
  color: rgba(42, 36, 51, 0.72);
}

.forum-form-card {
  padding: 2.4rem;
}

.forum-post__meta, .forum-post__content {
  padding: 1rem 2rem;
}
.forum-post__meta {
  padding-bottom: 1.2rem;
  background: var(--tph-purple);
  color: var(--color-white);
}
.forum-post__meta__author {
  font-weight: var(--font-weight-bold);
}
.forum-post__content {
  color: rgba(42, 36, 51, 0.72);
}

.forum-post__edit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  margin: 0;
  padding: 0;
  border: 0.1rem solid rgba(42, 36, 51, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--color-charcoal);
}

.forum-post__edit-button:hover,
.forum-post__edit-button:focus {
  border-color: rgba(195, 38, 121, 0.34);
  color: var(--tph-purple);
}

.forum-post__edit-button svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}

.forum-post-edit {
  padding: 0 2.4rem 2.4rem;
}

.forum-post-edit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}

.forum-post-edit__status {
  margin: 1rem 0 0;
  color: var(--color-error-dark);
}

.forum-form-card__title,
.forum-post__author {
  margin: 0 0 1.2rem;
}
.forum-form-card__title span,
.forum-post__author span {
  display: block;
}

.forum-form .field {
  margin-bottom: 1.6rem;
}

.forum-form .form-label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: var(--font-weight-bold);
}

.forum-form textarea,
.forum-form input[type=text] {
  width: 100%;
  min-height: 4.8rem;
  padding: 1.2rem 1.4rem;
  border: 0.1rem solid rgba(195, 38, 121, 0.18);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.95);
}

.forum-form textarea {
  min-height: 16rem;
  resize: vertical;
}

.forum-rich-text {
  overflow: hidden;
  border: 0.1rem solid rgba(195, 38, 121, 0.18);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.95);
}

.forum-rich-text__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.8rem;
  border-bottom: 0.1rem solid rgba(195, 38, 121, 0.14);
  background: rgba(245, 242, 244, 0.98);
}

.forum-rich-text__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  min-height: 3.6rem;
  margin: 0;
  padding: 0.5rem 0.8rem;
  border: 0.1rem solid rgba(42, 36, 51, 0.16);
  border-radius: 0.4rem;
  background: #fff;
  color: rgba(42, 36, 51, 0.84);
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  text-transform: none;
}

.forum-rich-text__button:hover,
.forum-rich-text__button:focus {
  border-color: rgba(195, 38, 121, 0.4);
  color: var(--tph-purple);
}

.forum-rich-text__button--italic {
  font-style: italic;
}

.forum-rich-text__button svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}

.forum-rich-text__button--insertunorderedlist svg,
.forum-rich-text__button--insertorderedlist svg,
.forum-rich-text__button--createlink svg {
  width: 1.9rem;
}

.forum-rich-text__editor {
  min-height: 16rem;
  padding: 1.2rem 1.4rem;
  outline: none;
}

.forum-rich-text__editor:focus {
  box-shadow: inset 0 0 0 0.2rem rgba(195, 38, 121, 0.18);
}

.forum-rich-text__editor p,
.forum-rich-text__editor blockquote,
.forum-rich-text__editor ul,
.forum-rich-text__editor ol {
  margin-top: 0;
}

.forum-rich-text__editor blockquote {
  margin-left: 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--color-grey);
  color: rgba(42, 36, 51, 0.72);
}

.forum-rich-text__source {
  display: none;
}

.forum-form .btn-toolbar {
  margin-top: 1.6rem;
}

.forum-thread {
  display: grid;
  gap: 1.6rem;
}

.forum-post__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.forum-post__meta p {
  display: flex;
  flex-direction: column;
}
.forum-post__meta > div {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-start;
}
.forum-post__meta span[aria-hidden=true] {
  opacity: 0.3;
}

.forum-post__date {
  margin: 0;
  color: rgba(42, 36, 51, 0.72);
}

.forum-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.forum-pagination__link {
  color: var(--tph-purple);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}

.forum-pagination__status {
  color: rgba(42, 36, 51, 0.62);
}

@media (max-width: 720px) {
  .forum-app__toolbar {
    grid-template-columns: 1fr;
  }
  .forum-table__head {
    display: none;
  }
  .forum-table__row {
    grid-template-columns: 1fr;
  }
  .forum-table__sticky-badge {
    display: inline-flex;
    margin: 0 0 0.8rem;
  }
  .forum-index-table__head {
    display: none;
  }
  .forum-index-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .forum-index-row__metric {
    text-align: left;
  }
  .forum-post__meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .forum-pagination {
    flex-direction: column;
    align-items: flex-start;
  }
}
.no-hero section:first-of-type {
  padding-block-start: 8rem;
}

.home-hero {
  background-color: var(--fincap-red);
  display: grid;
  gap: 0;
  grid-template-rows: 50vh auto;
}
.moneytalks .home-hero {
  background-color: var(--color-moneytalks-hero-bg);
}
.tepapahou .home-hero {
  background-color: var(--tph-purple);
}
@media screen and (min-width: 64rem) {
  .home-hero {
    min-height: calc(100vh - 12rem);
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
}
.home-hero + section {
  padding-block-start: 8rem;
}
.home-hero__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home-hero__content {
  color: var(--color-white);
  font-family: "Dosis", sans-serif;
  padding: 2rem 8rem 6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
}
@media screen and (min-width: 64rem) {
  .home-hero__content {
    padding: 2rem 8rem;
  }
}
.home-hero__content h2 {
  color: var(--color-white) !important;
  line-height: 1.2;
  font-size: calc(1.3rem + 3vw);
}
.home-hero__content__cta {
  margin-block-start: 3rem;
  display: flex;
  gap: 2rem;
}

/**
 * Page styles
 */
.page {
  padding-block: 3rem 0;
}

.person-cols {
  display: flex;
  gap: 3rem;
  flex-direction: column;
}
.person-cols__photo {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
}
.person-cols__photo img {
  border-radius: 6rem;
  overflow: hidden;
}
.person-cols__text {
  flex-grow: 1;
  flex-basis: 70%;
}
@media screen and (min-width: 35rem) {
  .person-cols {
    flex-direction: row;
  }
  .person-cols__photo {
    flex-basis: 30%;
    max-width: none;
  }
}

@media screen and (min-width: 48rem) {
  .PersonPage main {
    margin-block-start: 3rem;
  }
}

.team-page h1, .team-page h2 {
  text-align: center;
}
@media screen and (min-width: 48rem) {
  .team-page h1, .team-page h2 {
    text-align: left;
  }
}
.team-page h2 {
  margin-bottom: 3rem;
}

.person-position {
  font-size: 3rem;
  color: var(--fincap-red);
  margin-bottom: 2rem;
}

.our-people-grid {
  display: grid;
  gap: 5rem 3rem;
  grid-template-columns: repeat(1, 1fr);
  text-align: center;
  margin-block-end: 8rem;
}
@media screen and (min-width: 35rem) {
  .our-people-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 48rem) {
  .our-people-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 64rem) {
  .our-people-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.our-people-grid .position, .our-people-grid .bio {
  color: #000;
}
.our-people-grid img {
  transition: var(--transition-default);
}
.our-people-grid .position {
  font-weight: 600;
  margin-bottom: 1rem;
}
.our-people-grid__image {
  transition: var(--transition-default);
  border-radius: 6rem;
  overflow: hidden;
  max-width: 30rem;
  margin: 0 auto;
}
.our-people-grid a {
  text-decoration: none;
}
.our-people-grid a:hover .our-people-grid__image, .our-people-grid a:focus .our-people-grid__image {
  box-shadow: var(--shadow-float);
}
.our-people-grid a:hover img, .our-people-grid a:focus img {
  transform: scale(1.03);
}

@media (min-width: 1100px) {
  .home-news__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1023px) {
  .menu__item--current .menu__item-container::after,
  .menu__item--section .menu__item-container::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .container--page {
    padding-top: 2.4rem;
    padding-bottom: 4.8rem;
  }
}/**
 * Swiper 12.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 29, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.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;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .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-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.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:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .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);
  }
}
/* Slide styles end */

/*# sourceMappingURL=fincap.css.map */
