@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --tFontDefaultFamily: 'Poppins', sans-serif;
    --tFontMonoFamily: 'Fira Mono', monospace;
    --tFontHeadingFamily: 'Poppins', sans-serif;
    --headerFontFamily: 'Inter', sans-serif;

    --tBrandColorContrast0: #f3f6ff; /* Brand BG color */
    --tBrandColorContrast1: #efefef;
    --tBrandColorContrast20: #ccc;
    --tBrandColorContrast60: #777; /* Brand muted text color */
    --tBrandColorContrast80: #222;
    --tBrandColorContrast100: #000;
    --tBrandText: var(--tBrandColorContrast0);  /* Standalone text color */


    --tColorContrast1: #f3f6ff;

    --tButtonPrimaryBgColor: #003459;
    --tButtonPrimaryFgColor: #fff;
    --tButtonPrimaryHoverBgColor: #00171F;
    --tButtonPrimaryHoverFgColor: #fff;

    --tLinkColor: #00171F;
    --tLinkHoverColor: #003459;

    --tHspacingSmall: 3.0rem;

    /* --tButtonDefaultBgColor: var(--tColorContrast60);
    --tButtonDefaultFgColor: var(--tColorContrast0);
    --tButtonDefaultHoverBgColor: var(--tColorContrast80);
    --tButtonDefaultHoverFgColor: var(--tColorContrast0); */

}



.header {
    font-family: var(--headerFontFamily);
    border-bottom: var(--tBorderWidthSmall) solid var(--tBrandColorContrast1);
}

.breadcrumb-item-list {
    justify-content: flex-start !important;
}

.columnlayout__column {
    padding-bottom: 3.0rem;
}

.newsdate-text {
    font-family: var(--tFontDefaultFamily);
    font-size: 0.9em; /* Make the text smaller */
    color: var(--tBrandColorContrast60);       /* Change the color to gray */
    /* Add any other desired styles */
    text-transform: uppercase; /* Make the text uppercase */
    margin-bottom: 0;
    padding-bottom: 0;
}