@charset "UTF-8";
:root {

  /* ============================================
     Edd
     FONT SIZES — fluid scaling with clamp()
     Formula: clamp(min, preferred, max)
     Base: 1rem = 16px
  ============================================ */
  
  /* -----------------------
   Edd
   TYPOGRAPHY FONT SIZES
   H1 → H6, responsive, modular scale ~1.25
   ----------------------- */
 
--font-heading-xl: clamp(2.75rem, 2rem + 3.5vw, 4.5rem);  /* 44px → 72px */
--font-h1: clamp(2.25rem, 1.9rem + 2.5vw, 3.5rem);   /* 40px → 56px */
--font-h2: clamp(1.8rem, 1.5rem + 1.3vw, 2.375rem);   /* 28px → 39px */
--font-h3: clamp(1.5625rem, 1.4rem + 0.75vw, 1.875rem);/* 25px → 30px */
--font-h4: clamp(1.4375rem, 1.3rem + 0.45vw, 1.6875rem);/* 23px → 27px */
--font-h5: clamp(1.25rem, 1.15rem + 0.35vw, 1.4375rem);/* 20px → 23px */
--font-h6: clamp(1.1rem, 1rem + 0.25vw, 1.2rem); /* 18px → 20px */
  
--font-blog-h1: clamp(2rem, 1.9rem + 2vw, 2.7rem);   /* 40px → 56px */
--font-blog-h2: clamp(1.6rem, 1.5rem + 1.4vw, 2.125rem);   /* 28px → 39px */
--font-blog-h3: clamp(1.375rem, 1.4rem + 0.8vw, 1.75rem);/* 25px → 30px */

--font-body-lg: clamp(1.095rem, 1.05rem + 0.55vw, 1.1575rem); /* 19px → 23px */
--font-body: clamp(1rem, 1rem + 0.35vw, 1.2rem);       /* 17px → 19px,(1.1 my last value, Miriam wanted 1.2) */
--font-body-sm: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);/* 15px → 17px */
--font-body-xs: clamp(0.75rem, 0.85rem + 0.15vw, 0.875rem);    /* 12px → 14px */

--font-caption: clamp(0.8125rem, 0.8rem + 0.15vw, 0.9375rem);  /* 13px → 15px */  
--font-hero-right-h1: clamp(2rem, 1.8rem + 2.5vw, 3rem);

  
  



  /* ============================================
     LINE HEIGHTS
  ============================================ */

  --lh-heading-xl: 1.05; /* 72→75.6px | 44→46.2px */
  --lh-h1:         1.1;  /* 64→70.4px | 36→39.6px */
  --lh-h2:         1.15; /* 52→59.8px | 30→34.5px */
  --lh-h3:         1.2;  /* 40→48px   | 26→31.2px */
  --lh-h4:         1.25; /* 32→40px   | 22→27.5px */
  --lh-h5:         1.3;  /* 26→33.8px | 20→26px */
  --lh-h6:         1.35; /* 22→29.7px | 18→24.3px */

  --lh-body-lg:    1.4;  /* 24→33.6px | 20→28px */
  --lh-body:       1.4;  /* 20→28px   | 18→25.2px */
  --lh-body-sm:    1.5;  /* 18→27px   | 16→24px */
  --lh-body-xs: 1.5;
  --lh-caption:    1.5;  /* 16→24px   | 14→21px */

  /* ============================================
     LETTER SPACING
     Slight tracking on headings, normal on body
  ============================================ */

  --ls-h1: -0.02em;
  --ls-h2: -0.02em;
  --ls-h3: -0.01em;
  --ls-h4: -0.01em;
  --ls-h5:  0em;
  --ls-h6:  0em;

  --ls-body: 0em;
  --ls-caption: 0.02em;

  /* ============================================
     FONT WEIGHTS
  ============================================ */

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-ultra-bold: 800;
  
  /* Spacing Details */
  --container-padding-x: 1.25rem; /* 16px */
  --section-padding-y: 3.25rem;      /* 48px */
  --section-padding-y--sm: 2rem; /* 32px */
  
  
  /* Container Width */
  --container-w: 1500px;
  --blog-container-w: 1200px;
  --blog-container-w-toc: 1000px;
  
}



@media (min-width: 600px) {
  :root {
    --container-padding-x: 1.25rem; /* 20px */
    --section-padding-y: 3.5rem;   /* 56px */
  }
}

@media (min-width: 768px) {
  :root {
    --container-padding-x: 1.75rem;   /* 24px */
    --section-padding-y: 4.5rem;   /* 72px */
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding-x: 2rem;   /* 32px */
    --section-padding-y: 5.5rem;   /* 88px */
  }
}

@media (min-width: 1440px) {
  :root {
    --container-padding-x: 2.5rem; /* 40px */
    --section-padding-y: 6.5rem;   /* 104px */
  }
}

/* Container 
.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
  width: 100%;
}
*/
.container {
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-w);
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
  width: 100%;
}

/* Test if we can use the color classe of the theme */
.color-white {
  background-color: #fff;
}
.color-purple-light-100 {
   background-color: #dfe5ff;
}
.color-green-light-100 {
  background-color: #cefde4;
}
.color-grey-100 {
  background-color: #ecebe8;
}
/* Edd Blog Details */

.blog-container {
  background-color: #fff;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  padding: 2.5rem 1rem 0;
}

@media (min-width: 480px) {
  .blog-container {
    padding-top: 6rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 0rem;
  }
}
@media(max-width: 1024px){
  .blog-toc {
    display: none !important;
  }
}
@media(min-width: 1024px) {
   .container.blog-container--toc {
     display: flex;
     flex-direction: row;
     justify-content: center;
     gap: 1rem;
   }
   .blog-container--toc .blog-container {
     max-width: var(--blog-container-w-toc);
     width: 80%;
   }
   .container:not(.container.blog-container--toc) .blog-container {
     max-width: var(--blog-container-w);
     margin:0 auto;
   }
   .hs-blog-post .accordion-link-list__listing {
     width: 38rem !important;
   }
}

@media (min-width: 1440px) {
    .blog-container {
        padding-top: 8rem;
        padding-left: 4rem;
        padding-right: 4rem;
        padding-bottom: 0rem;
    }
}
.blog-container .article-feed .article-feed__heading-content {
  margin-bottom: 1rem !important;
}
.blog-container .article-feed {
  padding-bottom: var(--section-padding-y--sm) !important;
  padding-top: var(--section-padding-y--sm) !important;
}
.blog-image__caption {
  color: gray;
  font-style: italic;
  font-size: var(--font-body-xs); 
}
.blog-container ul, .blog-container ol {
  margin-bottom: 2rem; 
  margin-top: 1.5rem;
}
.blog-container ul li:not(.accordion-link-list__item.accordion-item), .blog-container ol li:not(.accordion-link-list__item.accordion-item) {
  margin: .4rem !important;
}
.blog-container  ul li::before {
  background-color: #17cc34 !important;
  border-radius: 2px !important;
}

.blog-container .contact-banner, .blog-container .accordion-link-list, .blog-container .hs_cos_wrapper_type_module .container:has(.accordion-link-list) {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.blog-container h1, .blog-container h2, .blog-container h3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1rem !important;
}
.blog-toc {
  max-width: 280px;
}
.hs-blog-post .blog-container h1 {
  font-size: var(--font-blog-h1) !important;
}
.hs-blog-post .blog-container h2 {
  font-size: var(--font-blog-h2) !important;
}
.hs-blog-post .blog-container h3 {
  font-size: var(--font-blog-h3) !important;
}
.hs-blog-post .blog-container strong , .richtext__content strong {
  font-weight: 600 !important;
  font-family:Aeonik;

}

/* Blog Link Color */
.blog-container p a , .blog-container .blog-image-text__content .blog-image-text__text-block a{
  color: #3e30a7 !important;
}

.blog-container #hs_cos_wrapper_article-feed > .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Blog Rich Text Pre - Work Around To Look Different */
.blog-container pre {
  background: #eff3ff;
  border-radius: 6px;
  padding: 15px;
  font-family: inherit !important;
  font-size: var(--font-body);
}
.blog-container pre a {
  color: #3e30a7 !important;`
}

/* Blog Article Feed Layout */
.blog-container #hs_cos_wrapper_article-feed > .container .article-card__title {
  font-size: var(--font-h6) !important;
  margin-top: .5rem !important;
}
@media (min-width: 1024px) {
  .blog-container #hs_cos_wrapper_article-feed > .container .article-feed__list {
    grid-template-columns: repeat(3,1fr);
  }
}





/* =========================
   Large / ultrawide screens (desktop → ultrawide)
   ========================= */



/*
.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}
*/



/* ============================================
   APPLY DEFAULTS GLOBALLY
============================================ */
/* Xl to be used on more prominent titles, like hero */
.heading-xl{
  font-size:var(--font-heading-xl);
  line-height: var(--lh-heading-xl);
}
h1 {
  font-size: var(--font-h1);
  line-height: var(--lh-h1);
}
h2 {
  font-size: var(--font-h2);
  line-height: var(--lh-h2);
}

h3 {
  font-size: var(--font-h3);
  line-height: var(--lh-h3);
}

h4 {
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
}

h5 {
  font-size: var(--font-h5);
  line-height: var(--lh-h5);
}

h6 {
  font-size: var(--font-h6);
  line-height: var(--lh-h6);
}

p,
.body {
  font-size: var(--font-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
}
blockquote {
  font-size: var(--font-h2);
  line-height: var(--lh-h2);  
}
.body-lg {
  font-size: var(--font-body-lg);
  line-height: var(--lh-body-lg);
}

.body-sm {
  font-size: var(--font-body-sm);
  line-height: var(--lh-body-sm);
}
.body-xs{
  font-size: var(--font-body-xs);
  line-height: var(--lh-body-xs);
}

.caption {
  font-size:      var(--font-caption);
  line-height:    var(--lh-caption);
  letter-spacing: var(--ls-caption);
}


/* Typography Utility Classes - To Avoid Semantic SEO Issues */
/* ============================================
   HEADING UTILITIES (visual only)
============================================ */

.heading-xl {
  font-size: var(--font-heading-xl);
  line-height: var(--lh-heading-xl);
}

.heading-1, .heading-1.text-h1 {
  font-size: var(--font-h1);
  line-height: var(--lh-h1);
}

.heading-2, .heading-2.text-h2 {
  font-size: var(--font-h2);
  line-height: var(--lh-h2);
}

.heading-3, .heading-3.text-h3 {
  font-size: var(--font-h3);
  line-height: var(--lh-h3);
}

.heading-4, .heading-4.text-h4 {
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
}

.heading-5, .heading-5.text-h5 {
  font-size: var(--font-h5);
  line-height: var(--lh-h5);
}

.heading-6 {
  font-size: var(--font-h6);
  line-height: var(--lh-h6);
}
.body.text-body-base {
  font-size: var(--font-body);
  line-height: var(--lh-body);
}
.body-sm.text-body-small {
  font-size: var(--font-body-sm);
  line-height: var(--lh-body-sm);
}
.body-lg.text-body-large {
  font-size: var(--font-body-lg);
  line-height: var(--lh-body-lg);
}

/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden],
template {
    display: none;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: sans-serif;
}
body {
    margin: 0;
}
a {
    background: transparent;
}
a:focus {
    outline: thin dotted;
}
a:active,
a:hover {
    outline: 0;
}
h1 {
    margin: 0.67em 0;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: 700;
}
dfn {
    font-style: italic;
}
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}
mark {
    background: #ff0;
    color: #000;
}
code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}
pre {
    white-space: pre-wrap;
}
q {
    quotes: "“" "”" "‘" "’";
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 0;
}
fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
legend {
    border: 0;
    padding: 0;
}
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}
button,
input {
    line-height: normal;
}
button,
select {
    text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}
input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
    vertical-align: top;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: normal;
    font-weight: 500;
    margin: 0;
}
button {
    background-color: transparent;
    border: none;
    color: #1e194d;
    cursor: pointer;
}
button:focus {
    border-radius: 1rem;
    outline: 0.125rem solid #725cf7;
    outline-offset: 0.25rem;
}
button:active {
    outline: 0;
}
button:focus:not(:focus-visible) {
    outline: none;
}
address {
    font-style: normal;
}
img {
    border-radius: 1rem;
    max-width: 100%;
}
a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}
a:focus {
    outline: 0.125rem solid #725cf7;
    outline-offset: 0.25rem;
}
a:active {
    outline: 0;
}
a:focus:not(:focus-visible) {
    outline: none;
}
html {
    scroll-behavior: smooth;
}
body,
html {
    height: 100%;
}
body {
    -webkit-font-smoothing: antialiased;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: #ecebe8;
    color: #1e194d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family:
        Aeonik Pro,
        Regular,
        Arial,
        sans-serif;
    font-weight: 400;
}
@media (min-width: 1024px) {
    body.menu-open:before {
        background: var(--dark-sky-950, #24194d);
        content: "";
        cursor: pointer;
        height: 100%;
        left: 0;
        opacity: 0.2;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 4;
    }
}
main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}
.page-footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
ul {
    list-style-type: none;
    padding: 0;
}








.search-title {
    line-height: 200%;
    margin: 0 auto 3rem;
    max-width: 62.5rem;
}
.search-title h1 {
    font-size: max(2.25rem, min(2.25rem + 1.25 * (100vw - 20rem)/70, 3.5rem));
    line-height: 114%;
}
@media (max-width: 768px) {
    .search-title h1 {
        font-size: 1.75rem;
    }
}
.hs-search-results {
    margin: 0 auto;
    max-width: 62.5rem;
}
.hs-search-results__title {
    font-size: max(1.75rem, min(1.75rem + 0.125 * (100vw - 20rem)/70, 1.875rem));
    line-height: 128%;
}
@media (max-width: 768px) {
    .hs-search-results__title {
        font-size: 1.375rem;
    }
}
.hs-search-results__title:hover {
    text-decoration: underline;
}
.hs-search-results__description {
    font-size: max(1rem, min(1.125rem, 1.25rem + 0.5 * (100vw - 20rem)/70));
    line-height: 135%;
    margin-top: 1rem;
}
@media (max-width: 768px) {
    .hs-search-results__description {
        font-size: 1rem;
    }
}
.hs-search-results__listing li {
    background-color: #dfe5ff;
    border-radius: 1rem;
    margin-bottom: 1.5rem !important;
    padding: 1.5rem !important;
}
.hs-search-results__pagination {
    margin-top: 3rem;
}

.landing-page-container {
    background-color: #fff;
    border-radius: 1rem;
    padding: 9.0625rem 3rem;
}
@media (max-width: 1279px) {
    .landing-page-container {
        padding-top: 4.5rem;
    }
}
@media (max-width: 767px) {
    .landing-page-container {
        padding: 2.5rem 2rem;
    }
}
.system-page-wrapper {
    background-color: #fff;
    border-radius: 1rem;
    margin: 0 1rem;
    padding: 6.25rem 3.125rem;
}
@media (max-width: 767px) {
    .system-page-wrapper {
        margin: 0 0.5rem;
        padding: 2.5rem 2rem;
    }
}
.system-page-wrapper__content {
    margin: 0 auto;
    max-width: 50rem;
}
.system-page-wrapper .page-header {
    margin-bottom: 1.625rem;
}
.system-page-wrapper .item {
    margin-bottom: 1.375rem;
    margin-top: 1.375rem;
}
.system-page-wrapper .item .fakelabel {
    font-size: 1.125rem;
    font-weight: 500;
}
.system-page-wrapper .subscribe-options p {
    margin-bottom: 0.625rem;
}
.system-page-wrapper input[type="submit"] {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #24194d;
    border: 0.125rem solid #24194d;
    border-radius: 0.5rem;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3rem;
    height: 4rem;
    justify-content: center;
    margin-top: 1.625rem;
    padding: 1.25rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.system-page-wrapper input[type="submit"]:hover {
    background-color: #1a1239;
    border: 0.125rem solid #1a1239;
}
.system-page-wrapper input[type="submit"]:focus {
    background: #24194d;
    border: 0.125rem solid #725cf7;
}
.system-page-wrapper input[type="submit"]:focus-visible {
    outline: 0.125rem solid #725cf7;
    outline-offset: 0.125rem;
}
.system-page-wrapper input[type="submit"]:disabled {
    background-color: #bebbb3;
    border: 0.125rem solid #bebbb3;
    color: #5c5550;
    cursor: not-allowed;
}
.text-h1 {
    font-size: max(3rem, min(3rem + 3 * (100vw - 20rem)/70, 6rem));
    line-height: 100%;
}
@media (max-width: 768px) {
    .text-h1 {
        font-size: 2.625rem;
    }
}
.text-h2 {
    font-size: max(2.25rem, min(2.25rem + 1.25 * (100vw - 20rem)/70, 3.5rem));
    line-height: 114%;
}
@media (max-width: 768px) {
    .text-h2 {
        font-size: 1.75rem;
    }
}
.text-h3 {
    font-size: max(1.75rem, min(1.75rem + 0.75 * (100vw - 20rem)/70, 2.5rem));
    line-height: 114%;
}
@media (max-width: 768px) {
    .text-h3 {
        font-size: 1.5rem;
    }
}
.text-h4 {
    font-size: max(1.75rem, min(1.75rem + 0.125 * (100vw - 20rem)/70, 1.875rem));
    line-height: 128%;
}
@media (max-width: 768px) {
    .text-h4 {
        font-size: 1.375rem;
    }
}
.text-body-small {
    font-size: max(1rem, min(1.125rem, 1.25rem + 0.5 * (100vw - 20rem)/70));
    line-height: 135%;
}
@media (max-width: 768px) {
    .text-body-small {
        font-size: 1rem;
    }
}
.text-body-base {
    font-size: max(1.25rem, min(1.25rem + 0.125 * (100vw - 20rem)/70, 1.375rem));
    line-height: 136%;
}
@media (max-width: 768px) {
    .text-body-base {
        font-size: 1.125rem;
    }
}
.text-body-large {
    font-size: max(1.75rem, min(1.75rem + 0.125 * (100vw - 20rem)/70, 1.875rem));
    line-height: 127%;
}
@media (max-width: 768px) {
    .text-body-large {
        font-size: 1.25rem;
    }
}
.link {
    border-bottom: none;
    color: #272523;
    color: #1e194d;
    font-size: max(1.25rem, min(1.25rem + 0.125 * (100vw - 20rem)/70, 1.375rem));
    line-height: 136%;
    text-decoration: none;
    -webkit-transition: all 0.3s cubic-bezier(0.35, 0, 0, 1);
    -o-transition: all 0.3s cubic-bezier(0.35, 0, 0, 1);
    -webkit-transition: border-bottom 0.2s ease-in-out;
    -o-transition: border-bottom 0.2s ease-in-out;
    transition: all 0.3s cubic-bezier(0.35, 0, 0, 1);
    transition: border-bottom 0.2s ease-in-out;
}
@media (hover: hover) {
    .link:hover {
        border-color: #472ba8;
    }
}
@media (max-width: 768px) {
    .link {
        font-size: 1.125rem;
    }
}
@media (hover: hover) {
    .link:hover {
        border-color: #1e194d;
    }
}
.button-primary {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #24194d;
    border: 0.125rem solid #24194d;
    border-radius: 0.5rem;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3rem;
    justify-content: center;
    padding: 1.25rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.button-primary:hover {
    background-color: #1a1239;
    border: 0.125rem solid #1a1239;
}
.button-primary:focus {
    background: #24194d;
    border: 0.125rem solid #725cf7;
}
.button-primary:focus-visible {
    outline: 0.125rem solid #725cf7;
    outline-offset: 0.125rem;
}
.button-primary:disabled {
    background-color: #bebbb3;
    border: 0.125rem solid #bebbb3;
    color: #5c5550;
    cursor: not-allowed;
}
.button-secondary {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #725cf7;
    border: 2px solid #725cf7;
    border-radius: 0.5rem;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3rem;
    justify-content: center;
    padding: 1.25rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.button-secondary:hover {
    background-color: #472ba8;
    border: 0.125rem solid #472ba8;
}
.button-secondary:focus {
    background: #472ba8;
    border: 0.125rem solid #725cf7;
}
.button-secondary:focus-visible {
    outline: 0.125rem solid #725cf7;
    outline-offset: 0.125rem;
}
.button-secondary:disabled {
    background-color: #bebbb3;
    border: 0.125rem solid #bebbb3;
    color: #5c5550;
    cursor: not-allowed;
}
.tag {
    background-color: #dfe5ff;
    border: 2px solid #dfe5ff;
    border-radius: 0.386375rem;
    color: #1e194d;
    display: block;
    font-size: 1.125rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    line-height: 1.5rem;
    padding: 0.25rem 0.75rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.tag,
.tag--asLink {
    white-space: nowrap;
}
.tag--asLink {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.25rem;
    height: 2rem;
}
@media (min-width: 1024px) {
    .tag--asLink:hover {
        border: 2px solid #725cf7;
    }
}
.tag--asLink:focus {
    border: 2px solid #725cf7;
    outline-offset: 1px;
}