﻿/* ==========================
   Reset
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "aptos-display", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #000;
    font-size: 20px;
    line-height: 25px;
    background: #fff;
}

h1 {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000;
    font-size: 70px;
    line-height: 70px;
}

h2 {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000;
    font-size: 30px;
    line-height: 35px;
}

/* ==========================
   Layout
========================== */

.container {
    width: min(1200px, 92%);
    margin: auto;
}

/*.section {
    padding: 6rem 0;
}*/

/*.section-light {
    background: #f6f7f9;
}*/

.text-center {
    text-align: center;
}

/* ==========================
   Layout with Blockgrid
========================== */

.section {
    --section-margin: 16px;
    --section-radius: 10px;
    width: calc(100% - (var(--section-margin) * 2));
    margin-inline: var(--section-margin);
    border-radius: var(--section-radius);
    overflow: hidden;
    background-color: var(--section-bg, transparent);
    background-image: var(--section-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 16px;
    position: relative;
}

.section + .section {
    margin-top: 16px;  
}

/* WIDTH */

.section__container {
    width: min(100% - 3rem, 1200px);
    margin-inline: auto;
}

.section--width-narrow .section__container {
    max-width: 800px;
}

.section--width-wide .section__container {
    width: min(100% - 3rem, 1440px);
}

.section--width-full .section__container {
    width: 100%;
    max-width: none;
}


/* PADDING TOP */

.section--pt-none {
    padding-top: 0;
}

.section--pt-small {
    padding-top: 2rem;
}

.section--pt-medium {
    padding-top: 4rem;
}

.section--pt-large {
    padding-top: 7rem;
}


/* PADDING BOTTOM */

.section--pb-none {
    padding-bottom: 0;
}

.section--pb-small {
    padding-bottom: 2rem;
}

.section--pb-medium {
    padding-bottom: 4rem;
}

.section--pb-large {
    padding-bottom: 7rem;
}


/* SECTION SCROLL */

.section__scroll {
    position: absolute;
    /*
     * Align with a centered 1200px content area.
     * Never get closer than 30px to the viewport edge.
     */
    left: max(30px, calc((100% - 1200px) / 2));
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    /*height: 56px;*/
    padding: 0;
    border: 0;
    border-radius: 50%;
    /*background: #fff;*/
    color: #000;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.section__scroll:hover {
    transform: translateY(4px);
}

.section__scroll:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}


/* SECTION SCROLL HERO */

.section__scroll_hero {
    position: absolute;
    /*
     * Align with a centered 1200px content area.
     * Never get closer than 30px to the viewport edge.
     */
    left: max(30px, calc((100% - 1200px) / 2));
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    /*height: 56px;*/
    padding: 0;
    border: 0;
    border-radius: 50%;
    /*background: #fff;*/
    color: #000;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s ease, background-color 0.2s ease;
}


    .section__scroll_hero:hover {
        transform: translateY(4px);
    }

    .section__scroll_hero:focus-visible {
        outline: 2px solid currentColor;
        outline-offset: 4px;
    }



@media (max-width: 767px) {

    .section__container {
        width: calc(100% - 32px);
    }

    .section--pt-medium {
        padding-top: 1.5rem;
    }

    .section--pb-medium {
        padding-bottom: 2rem;
    }

    .section--pt-large {
        padding-top: 2rem;
    }

    .section--pb-large {
        padding-bottom: 3rem;
    }
}

/* =======================================
   Layout with Blockgrid padding helpers
========================================== */

pt-none {
    padding-top: 0;
}

.pt-small {
    padding-top: 2rem;
}

.pt-medium {
    padding-top: 4rem;
}

.pt-large {
    padding-top: 7rem;
}

.pb-none {
    padding-bottom: 0;
}

.pb-small {
    padding-bottom: 2rem;
}

.pb-medium {
    padding-bottom: 4rem;
}

.pb-large {
    padding-bottom: 7rem;
}

/* ===========================================
   TWO COLUMN LAYOUT
=========================================== */

.layout--two-columns {
    width: 100%;
    min-width: 0;
}

    .layout--two-columns > .umb-block-grid__area-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2rem;
        width: 100%;
        min-width: 0;
    }

        .layout--two-columns > .umb-block-grid__area-container > .umb-block-grid__area {
            grid-column: auto;
            width: auto;
            min-width: 0;
        }


    /* 50 / 50 */

    .layout--two-columns.layout--50-50 > .umb-block-grid__area-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }


    /* 33 / 67 */

    .layout--two-columns.layout--33-67 > .umb-block-grid__area-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    }


    /* 67 / 33 */

    .layout--two-columns.layout--67-33 > .umb-block-grid__area-container {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    }


    /* 75 / 25 */

    .layout--two-columns.layout--75-25 > .umb-block-grid__area-container {
        grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    }


    /* 25 / 75 */

    .layout--two-columns.layout--25-75 > .umb-block-grid__area-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    }


/* ===========================================
   TWO COLUMN MOBILE
=========================================== */

@media (max-width: 767px) {

    .layout--two-columns > .umb-block-grid__area-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }

        .layout--two-columns > .umb-block-grid__area-container > .umb-block-grid__area {
            grid-column: 1 / -1;
        }
}


/* ===========================================
   THREE COLUMN LAYOUT
=========================================== */

.layout--three-columns {
    width: 100%;
    min-width: 0;
}

    .layout--three-columns > .umb-block-grid__area-container {
        display: grid;
        gap: 2rem;
        width: 100%;
        min-width: 0;
    }

        .layout--three-columns > .umb-block-grid__area-container > .umb-block-grid__area {
            grid-column: auto;
            width: auto;
            min-width: 0;
        }


    /* 33 / 33 / 33 */

    .layout--three-columns.layout--33-33-33 > .umb-block-grid__area-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    /* 25 / 50 / 25 */

    .layout--three-columns.layout--25-50-25 > .umb-block-grid__area-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
    }


    /* 50 / 25 / 25 */

    .layout--three-columns.layout--50-25-25 > .umb-block-grid__area-container {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    }


    /* 25 / 25 / 50 */

    .layout--three-columns.layout--25-25-50 > .umb-block-grid__area-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
    }


/* ===========================================
   THREE COLUMN TABLET
=========================================== */

@media (max-width: 1024px) {

    .layout--three-columns > .umb-block-grid__area-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4rem;
    }
}


/* ===========================================
   THREE COLUMN MOBILE
=========================================== */

@media (max-width: 767px) {

    .layout--three-columns > .umb-block-grid__area-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

        .layout--three-columns > .umb-block-grid__area-container > .umb-block-grid__area {
            grid-column: 1 / -1;
        }
}


/* ===========================================
   UMBRACO BLOCK GRID
=========================================== */

.umb-block-grid__layout-container {
    display: grid;
    grid-template-columns: repeat( var(--umb-block-grid--grid-columns, 12), minmax(0, 1fr) );
    gap: 1.4rem;
    width: 100%;
    min-width: 0;
}

.umb-block-grid__layout-item {
    grid-column: span var(--umb-block-grid--item-column-span, 12);
    min-width: 0;
}


/* Prevent content inside an area from forcing
   the grid wider than the available column */
.umb-block-grid__area {
    min-width: 0;
}

.umb-block-grid__area-container {
    min-width: 0;
}


/* ===========================================
   IMAGE BLOCK
=========================================== */

.image-block {
    display: block;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}


/* Standard responsive image */

.image-block__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}


/* Caption */

.image-block__caption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
}


/* ===========================================
   IMAGE BLOCK - ROUNDED
=========================================== */

.image-block--rounded .image-block__image {
    border-radius: 10px;
}


/* ===========================================
   IMAGE BLOCK - COVER
=========================================== */

.image-block--cover {
    height: 100%;
}


    /*
 * Cover images deliberately use a fixed
 * visual height rather than their natural
 * image aspect ratio.
 */
    .image-block--cover .image-block__image {
        width: 100%;
        max-width: 100%;
        height: 323px;
        object-fit: cover;
    }


/* ===========================================
   IMAGE BLOCK - COVER RESPONSIVE
=========================================== */

@media (max-width: 1024px) {

    .image-block--cover .image-block__image {
        height: 300px;
    }
}

@media (max-width: 767px) {

    .image-block--cover .image-block__image {
        height: 260px;
    }
}



/* ==========================
   Header
========================== */

.header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #fafafa;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    /*position: relative;*/
}

.logo {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 1.4rem;
}

.logo svg {
    margin-top:13px;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #555;
    transition: .2s;
}

.nav a:hover {
    color: #111;
}

/* ==========================
   Hero
========================== */

.header-title {
    padding: 3rem 0;
    text-align: left;
}

.header-title h1 {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000;
    font-size: 70px;
    line-height: 70px;
}

.hero {
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
}

.hero p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    border-radius: .5rem;
    background: #111;
    color: white;
    text-decoration: none;
    transition: .25s;
}

.btn:hover {
    background: #333;
}

/* ==========================
   Section Heading
========================== */

.section-heading {
    margin-bottom: 3rem;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: .5rem;
}

/* ==========================
   Flex Layouts
========================== */

.features,
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}


/* ==========================
   Breadcrumb
========================== */

.breadcrumbContainer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 50px 0 10px;
}

.breadcrumb {
    margin: 1rem 0;
}

.breadcrumb__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
    content: "|";
    margin: 0 0.75rem;
    font-family: "aptos", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #000;
    font-size: 15px;
    line-height: 26px;
}

.breadcrumb__link {
    font-family: "aptos", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #000;
    font-size: 15px;
    line-height: 26px;
    text-decoration: none;
    color: #7C7C7C;
}

.breadcrumb__link:hover,
.breadcrumb__link:focus {
    text-decoration: underline;
}

.breadcrumb__item--current {
    font-family: "aptos", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #000;
    font-size: 15px;
    line-height: 26px;
}

/* ==========================
   Cards
========================== */

.feature,
.card {
    flex: 1 1 320px;
    padding: 2rem;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    transition: .25s ease;
}

.feature:hover,
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.feature h3,
.card h3 {
    margin-bottom: .75rem;
}

/* ==========================
   Elements
========================== */

/* SUBTITLE */

.qp-subtitle-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 30px;
    gap: 8px;
}

qp-subtitle-text,
.qp-subtitle-icon {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qp-subtitle-text span {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000;
    font-size: 14px;
    line-height: 26px;
}

/* TITLE */

.qp-main-title-text span {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000;
    font-size: 40px;
    line-height: 45px;
}

.qp-title-text span {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000;
}

.qp-title-text--small,
.qp-title-text--small span {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
}

.qp-title-text--large,
.qp-title-text--large span {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
}

.qp-title-text--small span {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
}

.qp-title-text--large span {
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
}

.qp-title-link a {
    text-decoration: none;
}

.qp-title-link a:hover {
    text-decoration: underline;
}


/* TEXTBLOCK */
.text-block p {
    font-family: "aptos-display", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 25px;
    padding: 10px 0;
}

.text-block p strong {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    padding: 10px 0;
}

.text-block p a {
    font-family: "aptos-display", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 25px;
    padding: 10px 0;
    text-decoration: none;
    color: #FFF;
}

.text-block p a:hover {
    text-decoration: underline;
}

.text-block p a strong {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    padding: 10px 0;
    text-decoration: none;
}

.text-block p a:hover strong {
    text-decoration: underline;
}

.text-block p strong span {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    padding: 10px 0;
}

.text-block ul {
    list-style: none;
    margin-top: 8px;
}

.text-block ul li::before {
    content: "– ";
}

.text-block li {
    margin-bottom: 0.5rem;
}

.text-block li > p {
    display: inline;
    margin: 0;
}


/* CTA */
.qp-cta-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 30px;
    gap: 12px;
}

.qp-cta-icon {
    height: 30px;
    width: 35px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.qp-cta-link{
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qp-cta-link a {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000;
    font-size: 14px;
    line-height: 26px;
    cursor: pointer;
    transition: padding .2s ease;
    text-decoration: none;
}

.qp-cta-link a:hover {
    padding-left: 10px;
}

/* BUTTON */
.qp-button a {
    /*border: 2px solid #FFFFFF;*/
    border-radius: 8px;
    font-size: 15px;
    line-height: 26px;
    font-weight: bold;
    padding-top: 10px;
    padding-right: 18px;
    padding-bottom: 10px;
    padding-left: 18px;
    cursor: pointer;
    text-decoration: none;
}

.qp-button a:hover {
    background: #eee;
    color: #000 !important;
}

/* TAG-BUTTON */

.tag-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: linear-gradient( to right, #17778e 0%, #59b6b6 100% );
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 26px;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 20px;
}

.tag-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(23, 119, 142, 0.25);
}

/* SPACER */

.spacer {
    display: block;
    width: 100%;
    flex: 0 0 100%;
}

/* Desktop presets */

.spacer--desktop-none {
    --spacer-desktop-preset: 0;
}

.spacer--desktop-small {
    --spacer-desktop-preset: 1rem;
}

.spacer--desktop-medium {
    --spacer-desktop-preset: 2rem;
}

.spacer--desktop-large {
    --spacer-desktop-preset: 4rem;
}

.spacer--desktop-xlarge {
    --spacer-desktop-preset: 6rem;
}


/* Tablet presets */

.spacer--tablet-none {
    --spacer-tablet-preset: 0;
}

.spacer--tablet-small {
    --spacer-tablet-preset: 1rem;
}

.spacer--tablet-medium {
    --spacer-tablet-preset: 2rem;
}

.spacer--tablet-large {
    --spacer-tablet-preset: 4rem;
}

.spacer--tablet-xlarge {
    --spacer-tablet-preset: 6rem;
}


/* Mobile presets */

.spacer--mobile-none {
    --spacer-mobile-preset: 0;
}

.spacer--mobile-small {
    --spacer-mobile-preset: 1rem;
}

.spacer--mobile-medium {
    --spacer-mobile-preset: 2rem;
}

.spacer--mobile-large {
    --spacer-mobile-preset: 4rem;
}

.spacer--mobile-xlarge {
    --spacer-mobile-preset: 6rem;
}


/* Desktop */

.spacer {
    height: var( --spacer-desktop, var(--spacer-desktop-preset, 2rem) );
}


/* Tablet */

@media (max-width: 1024px) {

    .spacer {
        height: var( --spacer-tablet, var(--spacer-tablet-preset, var(--spacer-desktop-preset)) );
    }
}


/* Mobile */

@media (max-width: 767px) {

    .spacer {
        height: var( --spacer-mobile, var( --spacer-mobile-preset, var(--spacer-tablet-preset) ) );
    }
}

/* ========================================
   NEWS PAGE
======================================== */

.news-page {
    width: 100%;
    padding: 60px 16px 80px;
}

.news-page__container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.news-page__header {
    max-width: 800px;
    margin-bottom: 50px;
}

.news-page__title {
    margin: 0 0 20px;
    font-family: "aptos", sans-serif;
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
}

.news-page__intro {
    font-size: 18px;
    line-height: 27px;
}


/* ========================================
   NEWS LIST
======================================== */

.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
}


/* ========================================
   NEWS CARD
======================================== */

.news-card {
    width: calc((100% - 60px) / 3);
}

.news-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.news-card__image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 22px;
}

.news-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-card__link:hover .news-card__image {
    transform: scale(1.04);
}


/* ========================================
   NEWS CARD CONTENT
======================================== */

.news-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card__date {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #666;
}

.news-card__title {
    margin: 0 0 12px;
    font-family: "aptos", sans-serif;
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
}

.news-card__text {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 24px;
}

.news-card__read-more {
    margin-top: auto;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}

.news-card__link:hover .news-card__title,
.news-card__link:hover .news-card__read-more {
    text-decoration: underline;
}


/* ========================================
   PAGINATION
======================================== */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.pagination__pages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination__page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .pagination__page:hover {
        background-color: #f0f0f0;
    }

.pagination__page--current {
    background-color: #176684;
    color: #fff;
}

.pagination__previous,
.pagination__next {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #176684;
    text-decoration: none;
}

.pagination__previous:hover,
.pagination__next:hover {
    text-decoration: underline;
}

.pagination__disabled {
    opacity: 0.35;
    cursor: default;
    text-decoration: none;
}


/* ========================================
   MOBILE PAGINATION
======================================== */

@media (max-width: 650px) {

    .pagination {
        gap: 12px;
        margin-top: 45px;
    }

    .pagination__pages {
        gap: 5px;
    }

    .pagination__page {
        min-width: 36px;
        height: 36px;
        padding: 0 9px;
        font-size: 14px;
    }

    .pagination__previous,
    .pagination__next {
        font-size: 14px;
    }
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .news-card {
        width: calc((100% - 30px) / 2);
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .news-page {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .news-page__header {
        margin-bottom: 35px;
    }

    .news-page__title {
        font-size: 32px;
        line-height: 37px;
    }

    .news-list {
        gap: 35px;
    }

    .news-card {
        width: 100%;
    }

    .news-card__title {
        font-size: 22px;
        line-height: 27px;
    }
}


/* ========================================
   NEWS ARTICLE
======================================== */

.news-article {
    width: 100%;
}

.news-article__container {
    width: calc(100% - 32px);
    max-width: 1200px;
    margin: 0 auto;
}

.news-article__header {
    max-width: 900px;
    padding: 60px 0 40px;
}

.news-article__date {
    display: block;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 20px;
    color: #666;
}

.news-article__title {
    margin: 0 0 25px;
    font-family: "aptos", sans-serif;
    font-size: 48px;
    line-height: 53px;
    font-weight: 700;
}

.news-article__intro {
    margin: 0;
    max-width: 800px;
    font-size: 21px;
    line-height: 30px;
}

.news-article__hero {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 50px;
}

.news-article__hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.news-article__content {
    width: 100%;
}


/* MOBILE */

@media (max-width: 650px) {

    .news-article__header {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .news-article__title {
        font-size: 34px;
        line-height: 39px;
    }

    .news-article__intro {
        font-size: 19px;
        line-height: 27px;
    }

    .news-article__hero {
        border-radius: 14px;
        margin-bottom: 35px;
    }
}

/* ==========================================================
   HUBSPOT FORM - BASE
========================================================== */

.hubspot-form {
    width: 100%;
    /*
        This value is set dynamically from the Umbraco block:

        style="--qp-form-color: #000000;"
        or
        style="--qp-form-color: #ffffff;"
    */

    --qp-form-color: #000;
    --qp-form-gap: 16px;
    --qp-form-radius: 10px;
}


    /* ==========================================================
   FORM
========================================================== */

    .hubspot-form form {
        width: 100%;
        margin: 0;
        padding: 0;
    }


    /* ==========================================================
   HUBSPOT FIELDSET ROWS
========================================================== */

    .hubspot-form fieldset {
        width: 100% !important;
        max-width: none !important;
        margin: 0 0 16px !important;
        padding: 0 !important;
        border: 0;
    }


        /* ----------------------------------------------------------
   TWO COLUMN ROW
---------------------------------------------------------- */

        .hubspot-form fieldset.form-columns-2 {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: var(--qp-form-gap);
        }


            /*
   Use flex instead of calc(50% - X).
   This avoids HubSpot's own widths causing strange gaps.
*/

            .hubspot-form fieldset.form-columns-2 .hs-form-field {
                flex: 1 1 0;
                width: 0 !important;
                max-width: none !important;
                margin: 0 !important;
            }


        /* ----------------------------------------------------------
   ONE COLUMN ROW
---------------------------------------------------------- */

        .hubspot-form fieldset.form-columns-1 {
            display: block;
        }


            .hubspot-form fieldset.form-columns-1 .hs-form-field {
                width: 100% !important;
                max-width: none !important;
                margin: 0 !important;
            }


        /* ----------------------------------------------------------
   ZERO COLUMN / RICH TEXT ROW
   HubSpot uses this for e.g. privacy text
---------------------------------------------------------- */

        .hubspot-form fieldset.form-columns-0 {
            display: block;
            width: 100% !important;
            max-width: none !important;
        }


    /* ==========================================================
   GENERAL FIELD STYLING
========================================================== */

    .hubspot-form .hs-form-field {
        box-sizing: border-box;
        margin-bottom: 8px;
    }


    /*
   Remove HubSpot's own input wrapper margins.
*/

    .hubspot-form .input {
        width: 100%;
        margin: 0 !important;
    }


    /* ==========================================================
   LABELS
========================================================== */

    .hubspot-form .hs-form-field > label {
        display: block;
        margin: 0 0 6px;
        font-family: "aptos", sans-serif;
        font-size: 14px;
        line-height: 18px;
        font-weight: 700;
        color: var(--qp-form-color);
    }


    /* ==========================================================
   INPUTS
========================================================== */

    .hubspot-form .hs-input {
        box-sizing: border-box;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 12px 16px;
        border: 1px solid var(--qp-form-color);
        border-radius: var(--qp-form-radius);
        background: transparent;
        font-family: "aptos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 600;
        color: var(--qp-form-color);
        outline: none;
    }


    /* ==========================================================
   TEXT INPUTS / EMAIL / SELECT
========================================================== */

    .hubspot-form input.hs-input,
    .hubspot-form select.hs-input {
        min-height: 46px;
    }


    /* ==========================================================
   TEXTAREA
========================================================== */

    .hubspot-form textarea.hs-input {
        width: 100% !important;
        min-height: 110px;
        resize: vertical;
    }


    /* ==========================================================
   PLACEHOLDER
========================================================== */

    .hubspot-form .hs-input::placeholder {
        color: var(--qp-form-color);
        opacity: 0.7;
    }


    /* ==========================================================
   SELECT
========================================================== */

    .hubspot-form select.hs-input {
        cursor: pointer;
    }


        /*
   The select options themselves should normally stay dark,
   otherwise white form styling may cause white text on
   the browser's white dropdown menu.
*/

        .hubspot-form select.hs-input option {
            color: #000;
            background: #fff;
        }


    /* ==========================================================
   FOCUS
========================================================== */

    .hubspot-form .hs-input:focus {
        border-color: var(--qp-form-color);
        box-shadow: 0 0 0 1px var(--qp-form-color);
    }


    /* ==========================================================
   REQUIRED MARKER
========================================================== */

    .hubspot-form .hs-form-required {
        margin-left: 3px;
        color: var(--qp-form-color);
    }


/* ==========================================================
   CONTACT FORM
========================================================== */

/*
    IMPORTANT:

    We now let HubSpot determine the rows.

    Example HubSpot output:

    form-columns-2
        Country
        Fields of interest

    form-columns-1
        Email

    form-columns-2
        First name
        Last name

    form-columns-1
        Message

    form-columns-0
        Privacy notice
*/


.qp-form-type--contact fieldset.form-columns-2 {
    display: flex;
    flex-direction: row;
    gap: var(--qp-form-gap);
}


    .qp-form-type--contact fieldset.form-columns-2 .hs-form-field {
        flex: 1 1 0;
        width: 0 !important;
        max-width: none !important;
    }


.qp-form-type--contact fieldset.form-columns-1 .hs-form-field {
    width: 100% !important;
    max-width: none !important;
}


/*
   Explicitly ensure Email and Message use
   the entire width of their HubSpot row.
*/

.qp-form-type--contact .hs_email,
.qp-form-type--contact .hs_message {
    width: 100% !important;
    max-width: none !important;
}


/* ==========================================================
   SUBSCRIPTION FORM
========================================================== */

/*
    Subscription must ALWAYS be one column,
    even if an editor creates a two-column row in HubSpot.
*/

.qp-form-type--subscription fieldset.form-columns-2 {
    display: flex;
    flex-direction: column;
    gap: var(--qp-form-gap);
}


    .qp-form-type--subscription fieldset.form-columns-2 .hs-form-field,
    .qp-form-type--subscription fieldset.form-columns-1 .hs-form-field {
        flex: none;
        width: 100% !important;
        max-width: none !important;
    }


/* ==========================================================
   PRIVACY / RICH TEXT
========================================================== */

.hubspot-form .hs-richtext {
    width: 100% !important;
    font-family: "aptos-display", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
    color: var(--qp-form-color);
}


    .hubspot-form .hs-richtext p {
        margin: 0;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
        color: inherit;
    }


    .hubspot-form .hs-richtext span {
        color: inherit;
    }


    .hubspot-form .hs-richtext strong {
        font-weight: 700;
    }


    .hubspot-form .hs-richtext a {
        color: var(--qp-form-color);
        text-decoration: underline;
    }


        .hubspot-form .hs-richtext a:hover {
            text-decoration: none;
        }


/* ==========================================================
   HUBSPOT LEGAL CONSENT CONTAINER
========================================================== */

.hubspot-form .legal-consent-container {
    width: 100%;
    font-family: "aptos-display", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
    color: var(--qp-form-color);
}


    .hubspot-form .legal-consent-container p {
        margin: 0;
        color: inherit;
    }


    .hubspot-form .legal-consent-container a {
        color: var(--qp-form-color);
        text-decoration: underline;
    }


        .hubspot-form .legal-consent-container a:hover {
            text-decoration: none;
        }


/* ==========================================================
   HUBSPOT GENERAL TEXT
========================================================== */

.hubspot-form .hs-main-font-element {
    font-family: "aptos-display", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: var(--qp-form-color);
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    margin: 10px 0 0;
}


/* ==========================================================
   SUBMIT
========================================================== */

.hubspot-form .hs_submit {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 10px 0 0;
    padding: 0;
}


.hubspot-form .actions {
    margin: 0 !important;
    padding: 0 !important;
}


/* ==========================================================
   SUBMIT BUTTON
========================================================== */

.hubspot-form .hs-button {
    min-width: 82px;
    margin: 0;
    padding: 12px 24px;
    /* Same color as form fields */
    border: 1px solid var(--qp-form-color);
    border-radius: var(--qp-form-radius);
    /* Transparent background */
    background: transparent;
    /* Same color as border */
    color: var(--qp-form-color);
    font-family: "aptos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}


    /* Hover - invert colors */
    .hubspot-form .hs-button:hover {
        background-color: var(--qp-form-color);
        /*
        This automatically gives us the opposite color.
        The value is supplied by the Umbraco block below.
    */
        color: var(--qp-form-hover-color);
        /*color: #000;*/
        border-color: var(--qp-form-color);
    }


    /* Keyboard focus */
    .hubspot-form .hs-button:focus-visible {
        outline: 2px solid var(--qp-form-color);
        outline-offset: 3px;
    }


    /* Active */
    .hubspot-form .hs-button:active {
        transform: translateY(1px);
    }


/* ==========================================================
   ERROR MESSAGES
========================================================== */

.hubspot-form .hs-error-msgs {
    width: 100%;
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
}


    .hubspot-form .hs-error-msgs li {
        margin: 0;
        padding: 0;
    }


.hubspot-form .hs-error-msg {
    display: block;
    margin: 0;
    font-family: "aptos", sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #c62828;
}


/* ==========================================================
   ERROR INPUT STATE
========================================================== */

.hubspot-form .hs-input.error {
    border-color: #c62828;
}


/* ==========================================================
   MOBILE / RESPONSIVE
========================================================== */

@media (max-width: 767px) {

    .hubspot-form {
        --qp-form-gap: 12px;
    }


        /*
        All HubSpot two-column rows become vertical.
    */

        .hubspot-form fieldset.form-columns-2,
        .qp-form-type--contact fieldset.form-columns-2,
        .qp-form-type--subscription fieldset.form-columns-2 {
            display: flex;
            flex-direction: column;
            gap: var(--qp-form-gap);
        }


            /*
        Every field is 100% width.
    */

            .hubspot-form fieldset.form-columns-2 .hs-form-field,
            .hubspot-form fieldset.form-columns-1 .hs-form-field,
            .qp-form-type--contact fieldset.form-columns-2 .hs-form-field,
            .qp-form-type--subscription fieldset.form-columns-2 .hs-form-field {
                flex: none;
                width: 100% !important;
                max-width: none !important;
            }


        /*
        Submit stays right aligned.
        Change this to flex-start if you want
        the mobile button aligned left.
    */

        .hubspot-form .hs_submit {
            justify-content: flex-end;
        }
}



/* ==========================
   Footer
========================== */
.footer {
    --section-margin: 16px;
    --section-radius: 10px;
    width: calc(100% - (var(--section-margin) * 2));
    margin-inline: var(--section-margin);
    border-radius: var(--section-radius) 10px;
    color: #FFF;
    background-color: #176684;
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-bottom: var(--section-margin);
}

.footerContainer {
    display: flex;
    flex-direction: column;
}

.footerCopyRightText,
.footerCopyRightText a {
    font-family: "aptos-display", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #FFF;
    font-size: 12px;
    line-height: 26px;
    text-align: left;
    margin-top: 70px;
    text-decoration: none;
}

.footerCopyRightText a:hover {
    text-decoration: underline;
}

h4.footer-title {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #FFF;
    font-size: 15px;
    line-height: 20px;
    text-align: left;
    margin-top: 40px;
}

.qp-footer-paragraph p {
    font-family: "aptos-display", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #FFF;
    font-size: 15px;
    line-height: 20px;
    text-align: left;
    margin-top: 10px;
}

.qp-footer-hubspotform-container,
.qp-footer-quicklinks-container {
    margin-top: 40px;
}

.qp-footer-quicklinks-container ul {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}

.qp-footer-quicklinks-container ul li {
    margin-bottom: 25px;
}

.qp-footer-quicklinks-container ul li a {
    font-family: "aptos", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #FFF;
    font-size: 15px;
    line-height: 20px;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
}

.qp-footer-quicklinks-container ul li a:hover {
    text-decoration: underline;
}
.qp-footer-social-link-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.qp-footer-social-link-item {
    display: flex;
    justify-content: start;
    align-items: center;
}


.qp-footer-social-link-item a {
    text-decoration: none;
}

/*.qp-footer-social-link-item a:hover {
    fill: #0026ff;
}*/

/* ==========================
   Responsive
========================== */
@media (max-width: 768px) {

    .header .container {
        flex-direction: column;
        padding: 1rem 0;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .features,
    .cards {
        flex-direction: column;
    }

    .footer {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .qp-footer-hubspotform-container,
    .qp-footer-quicklinks-container {
        margin-top: 0;
    }
}
