/***** Font *****/
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins/Poppins-Italic.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins/Poppins-SemiBoldItalic.ttf') format('truetype');
}

body {
    font-family: "Poppins", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/*
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/overpass/Overpass-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: 'Overpass';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/overpass/Overpass-Italic-VariableFont_wght.ttf') format('truetype');
}


body {
    font-family: "Overpass", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
*/


/***** Global *****/
body {
    overflow-x:hidden;
    background-color: #2F2F31;
}

.c-container {
    max-width: 100rem;
    margin:auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.c-full {
    width:100vw;
    margin-left:-50vw;
    margin-right:-50vw;
    position: relative;
    left: 50%;
    right: 50%;
}

/***** Content *****/

.mod-banners {
  position: relative;
  height: calc(100vh - 108px);
  overflow: hidden;
}

.homepage-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.scroll-down {
    position:absolute;
    bottom: 1rem;
    display: block;
    animation: scrollDown 0.75s infinite alternate;
    font-size: 2rem;
    line-height: 1;
    left:50%;
    
    transform: translateX(-50%);
    
    color:#ffffff;
    background-color:#86BC24;
    padding:0.5rem 0.325rem;
    border-radius:9999px;
}

@keyframes scrollDown {
	0% {
    background-color: #86BC24;
    opacity:.9;
    transform: translate(0px);
  }

  100% {
    background-color:#729F1D;
    opacity:1;
    transform: translate(0px, 5px);
  }
}

main {
    font-size:0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

main a,a.link {
    /*color:#86BC24;*/
    color:#597D17;
    text-decoration:none;
    white-space: normal;
}
main a:hover,a.link:hover {
    /*color:#5e8419;*/
    color:#86BC24;
    text-decoration:none;
}

.com-content-article__body a:not(.btn) {
    text-decoration:underline;
}

hr {
    border:0;
    border-bottom:4px dotted rgb(0 0 0 / 0.5);
    margin-top:2rem !important;
    margin-bottom:2rem !important;
}

main p {
    margin-bottom:1rem;
}

main h1, .h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight:600;
    color:#5e8419;
    margin-bottom:1rem;
}

main h2, .h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight:600;
    color:#5e8419;
    margin-top:1.25rem;
    margin-bottom:0.75rem;
}

main h3, .h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight:600;
    color:#464648;
    margin-top:1.25rem;
    margin-bottom:0.75rem;
}

main h4, .h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight:600;
    color:#5e8419;
    margin-top:1.25rem;
    margin-bottom:0.75rem;
}

main ul, main ol {
    margin-bottom:1.5rem;
}

main ul ul, main ul ol, main ol ol, main ol ul {
    margin-top:0.325rem;
    margin-bottom:0;
}

main ul li {
    position:relative;
    padding-left:1.625rem;
    margin-bottom:0.325rem;
}

main ol li {
    list-style-type: decimal;
    padding-left:0.5rem;
    margin-left:1.625rem;
    margin-bottom:0.325rem;
}

main ul li::before {
    font-size:0.85rem;
    margin-right:0.5rem;
    position:absolute;
    left:0.75rem;
    top:0.225rem;

    content: "\f105";
    font-family:"Font Awesome 7 Free";
    font-weight:900;
    -moz-osx-font-smoothing:grayscale;
    -webkit-font-smoothing:antialiased;
    font-style:normal;
    font-variant:normal;
    line-height:1;
    text-rendering:auto;
}

main blockquote {
    border-left:5px solid #86BC24;
    padding:0.75rem;
    margin-bottom:1rem;
    background-color:rgb(24 24 27 / 0.03);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

main .tablewrap {
    max-width:100%;
    overflow-x:auto;

    border-radius:0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    margin-bottom:1.5rem;
    
    
}

main .tablewrap table {
    width:100%;
}

main table thead {
    background-color:#2F2F31;
    color:#ffffff;
}

main table thead tr th, main table thead tr td {
    text-align:left;
    font-weight:600;
    text-transform:uppercase;
}

main table tr th, main table tr td {
    padding-top:0.75rem;
    padding-bottom:0.75rem;
    padding-left:1.5rem;
    padding-right:1.5rem;
}

main table tbody tr:nth-child(2n) {
    background-color:#F9FAFB;
}

main table tbody tr:not([hidden])~:not([hidden]) {
    border-top:1px solid rgb(229 231 235);
}

main img {
    display:inline-block;
}


/***** Header *****/
body.with-fixed-header { padding-top:108px; }

.header-and-nav {
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:108px;
    z-index:20;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

@media (max-width: 1023px) {
    body.nav-open { overflow: hidden; position: fixed; width: 100%; }
    body.with-fixed-header { padding-top:68px; }
    .header-and-nav { height:68px; }
    nav#nav-primary { max-height:calc(100dvh - 68px); overflow-y:scroll; -webkit-overflow-scrolling: touch; }
}

.header {
    border-top:4px solid #86BC24;
}

.header .header-inner {
    background-color: #2F2F31;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.logo {
    width:100%;
    max-width:400px;
}

.logo .logo-img {
    width:100%;
    height:2.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    background-image: url('../images/GLASS-logo.png');
}


/***** Navigation *****/

/* Burger menu */
.btn-hamburger {
    border:1px solid transparent;
    background: #86BC24;
    color:#ffffff;
}

/* Main (depth 1) */
nav#nav-primary {
    /*background:color-mix(in oklab,#86BC24 90%,transparent);*/
    background:#729F1D;
}

nav#nav-primary ul li.nav-item {
    width: 100%;
    position:relative;
}

nav#nav-primary ul li.nav-item a, nav#nav-primary ul li.nav-item .nav-header {
    display:block;
    width: 100%;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;

    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    line-height: 1.25rem;

    color:#ffffff;
    cursor:pointer;

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

nav#nav-primary ul li.nav-item.parent > a::after, nav#nav-primary ul li.nav-item.parent > .nav-header::after {
    margin-left:0.25rem;
    content: "\f107";
    font-family:"Font Awesome 7 Free";
    font-weight:900;
    -moz-osx-font-smoothing:grayscale;
    -webkit-font-smoothing:antialiased;
    font-style:normal;
    font-variant:normal;
    line-height:1;
    text-rendering:auto;
}

nav#nav-primary ul li.nav-item > a:hover,
nav#nav-primary ul li.nav-item.current > a {
    background:color-mix(in oklab,#5e8419 90%,transparent);
    color:#ffffff !important;
}

nav#nav-primary ul li.nav-item a span {
    display:inline-block;
    padding:0;
}

/* Desktop Only */
nav#nav-primary .nav-primary-desktop > ul {
    display:flex;
    justify-content:space-between;
}


/* Sub (depth 2) */

nav#nav-primary .nav-primary-desktop >  ul > li.nav-item > ul {
    display:none;

    position:absolute;
    left:0px;
    width:300px;
    z-index: 10000;

    background:#ffffff;
    border-left:1px solid rgb(0 0 0 / 0.2);
    border-right:1px solid rgb(0 0 0 / 0.2);
    border-bottom:1px solid rgb(0 0 0 / 0.2);
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;

    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)
}

nav#nav-primary .nav-primary-desktop > ul > li.nav-item:hover >  ul {
    display:block;
}

nav#nav-primary .nav-primary-desktop > ul > li.nav-item > ul > li.nav-item > a {
    color:#464648;
    text-align:left;
    padding-left:1.5rem;
    padding-right:1.5rem;
    border-bottom:rgb(0 0 0 / 0.2) dotted 1px;
}

nav#nav-primary .nav-primary-desktop > ul > li.nav-item > ul > li.nav-item:last-child > a  {
    border-bottom:0px;
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

nav#nav-primary .nav-primary-desktop > ul > li.nav-item > a, nav#nav-primary .nav-primary-desktop > ul > li.nav-item > .nav-header {
    text-align:center;
    border-right:rgba(255,255,255,1) dotted 1px;
}

nav#nav-primary .nav-primary-desktop > ul > li.nav-item:last-child > a {
    border-right:0px;
}


nav#nav-primary * > ul > li.nav-item > ul > li.nav-item > ul { display:none; }

/* Mobile Only */
nav#nav-primary .nav-primary-mobile ul li.nav-item a, nav#nav-primary .nav-primary-mobile ul li.nav-item .nav-header {
    padding-left:1.5rem;
    padding-right:1.5rem;

    border-bottom:rgba(255,255,255,1) dotted 1px;
}

nav#nav-primary .nav-primary-mobile > ul > li.nav-item:last-child > a {
    border-bottom:none;
}

nav#nav-primary .nav-primary-mobile > ul > li.nav-item > ul > li.nav-item > a {
    padding-left:3rem;
}

/* Secondary */
nav#nav-secondary > ul {
    display: flex;
    justify-content: space-between;
}

nav#nav-secondary > ul > li.nav-item:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    --tw-space-x-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom:calc(0px * var(--tw-space-y-reverse));
    margin-left:calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
    margin-right:calc(0.75rem * var(--tw-space-x-reverse));
}

nav#nav-secondary > ul > li.nav-item > a {
    display:inline-flex;
    align-items: center;

    font-size: 0.9rem;
    line-height: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;

    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;

    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;

    border:1px solid transparent;
    /*background: #86BC24;*/
    background:#729F1D;
    color:#ffffff;
}

nav#nav-secondary > ul > li.nav-item > a:hover {
    border:1px solid #86BC24;
    /*background: #5e8419;*/
    background:#86BC24;
    color:#ffffff;
}

nav#nav-secondary > ul > li.nav-item > a > span {
    display:inline-block;
    padding:0;
}

/* Legal */
nav#nav-legal > ul > li.nav-item:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 1;
    margin-top: calc(0.5rem * var(--tw-space-y-reverse));
    margin-bottom: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
}

@media (min-width: 640px) {
    nav#nav-legal > ul {
        display: flex;
        justify-content: flex-end;
    }

    nav#nav-legal > ul > li.nav-item:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-top:0;
        margin-bottom:0;
        margin-right: calc(1rem * var(--tw-space-x-reverse));
        margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
    }

    nav#nav-legal > ul > li.nav-item > a:hover {
        text-decoration:underline;
    }
}


/***** Buttons *****/
.btn {
    display:inline-flex;
    align-items: center;
    justify-content:center;

    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;

    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;

    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.btn.btn-primary {
    border:1px solid transparent;
    /*background: #86BC24;*/
    background:#729F1D;
    color:#ffffff;
}

.btn.btn-primary:hover {
    border:1px solid #86BC24;
    /*background: #5e8419;*/
    background:#86BC24;
    color:#ffffff;
}

.btn.btn-sm {
    font-size: 0.75rem;
    line-height: 1rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .btn.lg\:btn-sm {
        font-size: 0.75rem;
        line-height: 1rem;
        padding-left: 0.625rem;
        padding-right: 0.625rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}


/***** Forms *****/
select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right .5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    outline:none;
}

.form-control {
    appearance:none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: .375rem;
    border-width: 1px;
    border-color: rgb(209 213 219);
    background-color: rgb(255 255 255);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.5rem;
}

.form-control:focus {
    border-color: rgb(134 188 36);
    box-shadow: 0 0 0 2px rgb(134 188 36 / .5), 0 0 #0000;
}


/***** Alerts *****/
.alert {
    display:block;
    padding-left:1rem;
    padding-right:1rem;
    padding-top:1rem;
    padding-bottom:1rem;
    border-radius: 0.375rem;
}

.alert.alert-warning {
    background-color: rgb(254 243 199);
    color: rgb(217 119 6);
}


/***** Footer *****/

.footer {
    border-top:4px solid #86BC24;
    background-color: #2F2F31;
    color:#ffffff;
}

.footer .footer-inner {
    display:flex;
    flex-direction: column;
    justify-content:space-between;
    padding-top:3rem;
    padding-bottom:3rem;

    font-size:0.875rem;
    line-height:1.25rem;
}

.footer .footer-inner>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    --tw-space-x-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom:calc(4rem * var(--tw-space-y-reverse));
    margin-left:calc(0px * calc(1 - var(--tw-space-x-reverse)));
    margin-right:calc(0px * var(--tw-space-x-reverse));
}

@media (min-width: 1024px) {
    .footer .footer-inner {
        flex-direction: row;
    }

    .footer .footer-inner>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        --tw-space-x-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom:calc(0px * var(--tw-space-y-reverse));
        margin-left:calc(1rem * calc(1 - var(--tw-space-x-reverse)));
        margin-right:calc(1rem * var(--tw-space-x-reverse));
    }
}

.footer .social-media {
    display:inline-flex;
}

.footer .social-media a {
    border-radius:9999px;
    /*background-color:#86BC24;*/
    background-color:#729F1D;
    padding:0.75rem 0.825rem;

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.footer .social-media a:hover {
    /*background-color:#5e8419;*/
    background-color:#86BC24;
}

.footer .social-media>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.footer .social-media svg {
    width:1.25em;
    height:1.25em;
}

.foot-logo {
    height:60px;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;

    filter: brightness(0) invert(1);
    /*
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
     */
}

.foot-logo:hover {
    filter: none;
}


.footer .copyright {
    position:relative;

    padding-top:1.5rem;
    padding-bottom:1.5rem;

    border-top:1px solid rgb(24 24 27 / 1);
}

.footer .copyright::before {
    display: block;
    width: 100%;
    height: 0px;
    content: "";
    position: absolute;
    top: 0;
    border-top-width: 1px;
    border-top-color: rgb(255 255 255 / 0.1);
}

.footer .copyright .copyright-inner>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 1;
    margin-top: calc(1rem * var(--tw-space-y-reverse));
    margin-bottom: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
}

@media (min-width: 1024px) {
    .footer .copyright .copyright-inner {
        display:flex;
        justify-content:space-between;
    }

    .footer .copyright .copyright-inner>:not([hidden])~:not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-top:0;
        margin-bottom:0;
        margin-right: calc(1rem * var(--tw-space-x-reverse));
        margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
    }
}


/***** Sidebar *****/

aside h4.module-title {
    font-weight:600;
    padding-bottom: 0.5rem;
    padding-top: 2.5rem;
    border-top:4px dotted rgb(0 0 0 / 0.5);
}

@media (min-width: 1024px) {
    aside h4.module-title {
        padding-top: 0;
        border-top:none;
    }
}

aside ul li {
    position:relative;
}

aside ul li a::before {
    font-size:0.85rem;
    margin-right:0.5rem;
    position:absolute;
    left:0.75rem;
    top:0.95rem;

    content: "\f105";
    font-family:"Font Awesome 7 Free";
    font-weight:900;
    -moz-osx-font-smoothing:grayscale;
    -webkit-font-smoothing:antialiased;
    font-style:normal;
    font-variant:normal;
    line-height:1;
    text-rendering:auto;
}

aside ul li a {
    display:block;
    position:relative;
    border-top:rgb(0 0 0 / 0.2) dotted 1px;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 2rem;
    padding-right: 1.5rem;
    color:#464648;

    font-size: 0.875rem;
    line-height: 1.25rem;

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

aside ul li > a:hover,
aside ul li.current > a {
    background:color-mix(in oklab,#5e8419 90%,transparent);
    color:#ffffff !important;
}

aside > ul > li > ul > li > ul { display:none; }

aside >:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 1;
    margin-top: calc(2rem * var(--tw-space-y-reverse));
    margin-bottom: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
}


/***** Grid of categories *****/

.grid-item {
    height:300px;
    position:relative;
}

.grid-item .grid-thumbnail {
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-color:#cccccc;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.grid-item.legacy .grid-thumbnail {
    background-color:#ffffff;
    background-size:contain;
}

.grid-item .grid-content h2,
.grid-item .grid-content .mod-articles-title {
    position:absolute;
    bottom:1rem;
    transform: skewY(-5deg);
    max-width:80%;
    z-index:10;

    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.grid-item .grid-content h2 a,
.grid-item .grid-content .mod-articles-title a{
    display:inline-block;
    background:color-mix(in oklab,#5e8419 80%,transparent);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight:600;
    color:#ffffff;
    text-decoration:none;

    padding-left:1rem;
    padding-right:1rem;
    padding-top:0.5rem;
    padding-bottom:0.5rem;
}

.grid-item:hover .grid-thumbnail {
    opacity:0.8;
}

.grid-item:hover .grid-content h2 a,
.grid-item:hover .grid-content .mod-articles-title a {
    background:color-mix(in oklab,#5e8419 90%,transparent);
}

.grid-item:hover {
    background-color:rgb(0 0 0);
}

.grid-item.legacy .grid-content {
    display:none;
}


/***** Grid of categories (using menu) *****/

.menu-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.menu-grid li {
    padding:0;
    margin:0;;
}

.menu-grid li::before {
    content:'';
}

.menu-grid .nav-item > a {
    display:block;
    position:relative;
}

.menu-grid .nav-item > a > img {
    width:100%;
}

.menu-grid .nav-item > a > .image-title {
    position:absolute;
    left:0;
    bottom:1rem;
    transform: skewY(-5deg);
    max-width:80%;
    z-index:10;

    margin-top: 1.25rem;
    margin-bottom: 0.75rem;

    display:inline-block;
    background:color-mix(in oklab,#5e8419 80%,transparent);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight:600;
    color:#ffffff;
    text-decoration:none;

    padding-left:1rem;
    padding-right:1rem;
    padding-top:0.5rem;
    padding-bottom:0.5rem;
}

.menu-grid .nav-item:hover > a > img {
    opacity:0.8;
}

.menu-grid .nav-item:hover > a > span {
    background:color-mix(in oklab,#5e8419 90%,transparent);
}

.menu-grid .nav-item:hover {
    background-color:rgb(0 0 0);
}


/***** Call to Action *****/
.calltoaction {
    padding-top:3rem;
    padding-bottom:3rem;

    background:rgb(241 245 249);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.calltoaction-icon {
    display:inline-block;
    border-radius: 9999px;

    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;

    /*background:color-mix(in oklab,#86BC24 90%,transparent);*/
    background:#729F1D;
    color:#ffffff;
}


/***** Pagination *****/
.com-content-category-blog__navigation {
    display:flex;
    justify-content:space-between;
}

.com-content-category-blog__navigation >:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-left:calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
    margin-right:calc(0.75rem * var(--tw-space-x-reverse));
}

ul.pagination {
    display:inline-flex;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    margin-top: 1rem;
}

ul.pagination li {
    padding:0;
    margin:0;
}

ul.pagination li::before {
    content:'';
}

ul.pagination .page-link {
    display:block;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-inline-start: -1px;

    color: rgb(107 114 128);
    background-color:#ffffff;
    border:1px solid rgb(209 213 219);

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

ul.pagination a.page-link:hover {
    text-decoration:none;
    background-color:#5e8419;
    border:1px solid #5e8419;
    color:#ffffff;
}

ul.pagination .active .page-link {
    background-color:#86BC24;
    border:1px solid #86BC24;
    color:#ffffff;
}

ul.pagination .disabled .page-link {
    opacity:0.5;
}

ul.pagination li:first-child,
ul.pagination li:last-child{ display:none; }

ul.pagination li:nth-child(2) .page-link{
    border-top-left-radius: .375rem;
    border-bottom-left-radius: .375rem;
}

ul.pagination li:nth-last-child(2) .page-link{
    border-top-right-radius: .375rem;
    border-bottom-right-radius: .375rem;
}

ul.pagination .icon-double-angle-left,
ul.pagination .icon-angle-left,
ul.pagination .icon-angle-right,
ul.pagination .icon-double-angle-right {
    font-family:"Font Awesome 7 Free";
    font-weight:900;
    -moz-osx-font-smoothing:grayscale;
    -webkit-font-smoothing:antialiased;
    font-style:normal;
    font-variant:normal;
    line-height:1;
    text-rendering:auto;
}


ul.pagination .icon-double-angle-left::before{content:'\f100';}
ul.pagination .icon-angle-left::before{content:'\f104';}
ul.pagination .icon-angle-right::before{content:'\f105';}
ul.pagination .icon-double-angle-right::before{content:'\f101';}

@media (max-width: 767px) {
    .pagination > li:not(:nth-child(2)):not(:nth-last-child(2)):not(.active) {
        display: none;
    }
}