/* Import from Google Fonts - MUST be at the top */
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

body, p, h1, h2, h3, h4, h5, h6, a, span, div, button, input, textarea {
    font-family: "Montserrat", sans-serif !important;
}
*/

/* Define @font-face rules for Proxima Nova */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../../../__attachments/27689530/ProximaNova-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../../../__attachments/27689530/ProximaNova-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* Apply Proxima Nova globally */
body, p, h1, h2, h3, h4, h5, h6, a, span, div, button, input, textarea {
    font-family: "Proxima Nova", sans-serif !important;
}



/* Set search result description width */
.vp-search-result__description {
    width: 75ch; /* Set it to your preferred width */
    max-width: 760px; /* Adjust as needed */
    margin: 0 auto; /* Center the content */
}

/* Adjust width for smaller screens */
@media (max-width: 768px) {
    .vp-search-result__description {
       width: 55ch;
    }
}
@media (max-width: 480px) {
    .vp-search-result__description {
        width: 35ch;
    }
}

/* Adjust banner padding */
.portal__header {
    padding-top: 2rem; /* Reduce from 4rem */
    padding-bottom: 3rem; /* Reduce from 5rem */
}


/* Style vp-article heading */
.vp-article__heading.article__heading {
    color: #171c20;
    font-size: 36px;
    font-weight: bolder;
    font-style: normal;
    line-height: 44px;
    text-decoration: none;
}

/* Improve font smoothing */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Change default link color */
a {
    color: #0b408b;
}

/* Change link color on hover */
a:hover {
    color: #2677E8;
}

/* Define custom color variable */
:root {
    --K15t-color-neutral-900: #2f3439;
}

/* Make header navigation heading bold */
.block.leading-none.py-3.header__navigation--heading.hc-header-font-color {
    font-weight: bold;
}

/* Make tile__headline bold */
.tile__headline {
    font-weight: bold;
}

/* Make article__content h2, h3 bold */
.article__content h2, h3 {
    font-weight: bold;
}


/* Prevent link color change on hover inside tile__headline */
.tile__headline a {
    color: inherit !important; /* Keeps the default color */
    text-decoration: none; /* Prevents underline if needed */
}

.tile__headline a:hover {
    color: inherit !important; /* Ensures no hover color change */
}


/* Hide font files */
a[href*="ProximaNova-Regular.woff"],
a[href*="ProximaNova-Bold.woff"] {
    display: none !important;
}

/* Hide creds */
li:has(i18n-message[i18nkey="footer.poweredBy.label"]) {
    display: none !important;
}