@charset "UTF-8";

:root{
    /* Main Brand Colors */
    --id-primary-clr: #A61A30;
    --id-secondary-clr: #515B64;
    --id-body-text: #212529;
    --id-dark-clr: #212529;
    --id-light-clr: #F8F2F2;
    --id-bg-clr: #F9F9FA;
    
    /* Color Tints */
    --id-primary-90: #530D18;
    --id-primary-80: #751322;
    --id-primary-70: #90172A;
    --id-primary-60: #A61A30; /* Same as primary */
    --id-primary-50: #BB5962;
    --id-primary-40: #CE9599;
    --id-primary-30: #DFBFC1;
    --id-primary-20: #F0E1E2;
    --id-primary-10: #F8F2F2;
    
    --id-secondary-90: #1C2023;
    --id-secondary-80: #373E44;
    --id-secondary-70: #515B64;
    --id-secondary-60: #72818D; /* Same as secondary */
    --id-secondary-50: #949EA7;
    --id-secondary-40: #C6CACE;
    --id-secondary-30: #E6E8E9;
    --id-secondary-20: #F9F9FA;
    --id-secondary-10: #FEFEFE;
    
    
    /* Fonts */
    --id-header-font: "Gelasio", system-ui;
    --id-body-font: "Raleway", sans-serif;;
    
    
    /* Shadows */
    --shadow-lg: 0px 16px 48px rgba(0, 0, 0, 0.175);
    --shadow-md: 0px 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-sm: 0px 2px 4px rgba(0, 0, 0, 0.125);
}












/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* Sitewide Styles */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */



body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    font-size: 16px;
    font-family: var(--id-body-font);
    font-weight: 400;
    background-color: var(--id-bg-clr);
    margin: 0;
}

body.nav-open{
    overflow: hidden;
}

body *{
    scroll-margin-top: 85px;
}

main{
    background-color: var(--bg-clr);
    padding: 1px 0;
    margin-top: -1px;
}

hr{
    margin: 1.5rem 0;
    color: var(--secondary-clr-1-50);
    opacity: 1;
}

.mb-4-5{
    margin-bottom: 2rem !important;
}



/* Text Styles */

h1, h2, h3, h4{
    font-family: var(--id-header-font);
    font-weight: 500;
    color: var(--id-dark-clr);
    font-optical-sizing: auto;
}

h5, h6{
    font-family: var(--id-body-font);
    font-weight: 500;
    color: var(--id-dark-clr);
}

h1{
   font-size: 2.5rem; 
}

h2{
    font-size: 2rem;
}

h3{
    font-size: 1.75rem;
}

h4{
    font-size: 1.5rem;
}

h5{
    font-size: 1.25rem;
}

h6{
    font-size: 1rem;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
    color: var(--id-body-text);
    text-decoration: none;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover{
    color: var(--id-primary-clr);
    text-decoration: none;
    transition: .2s ease-in-out;
}

p{
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

p.lead, span.lead, .lead *{
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 400;
}

p.sm, span.sm{
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 400;
}

p.xs, span.xs{
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 400;
}

strong {
    font-weight: 800;
}

b{
   font-weight: 800; 
}

a{
    color: var(--id-primary-clr);
    text-decoration: underline;
    transition: .2s ease-in-out;
}

a:hover{
    color: var(--id-secondary-clr);
    text-decoration: none;
    transition: .2s ease-in-out;
}

.title--d3{
    font-family: var(--id-body-font);
    font-size: 4rem;
    font-weight: 300;
    line-height: .9;
}

.title--d5{
    font-family: var(--id-body-font);
    font-size: 3rem;
    font-weight: 300;
    line-height: .9;
}

.caption{
    font-size: 0.875rem;
    color: var(--id-secondary-70);
}

.clr-secondary-clr{
    color: var(--id-secondary-clr) !important;
}

.clr-body-text{
    color: var(--id-body-text) !important;
}

.section-header{
            
}

/* all conexiant sites should be using this code. update that in umbrella.css when there is time. */
.full-width-ad {
    background-color: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
}

.sidebar-column .sticky-top {
    z-index: 1;
    display: grid;
    grid-gap: 0;
}

.sidebar-column--2-ads{
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-gap: 1.5rem;
}

.sidebar-column--2-ads .sidebar-column__sticky-container{
    
}
/* all conexiant sites should be using this code. update that in umbrella.css when there is time. */


.sidebar-column .sticky-top {
    top: 101px;
}

.sticky-top {
    top: 101px;
}

@media (max-width: 1280px){
    .sticky-top {
        top: 126px;
    }
}

@media (max-width: 576px) {
    .sticky-top {
        top: 101px;
    }
}


img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	font-style: italic;
	background-repeat: no-repeat;
	background-size: cover;
	shape-margin: 1rem;
}

.thumb-image{
    border-radius: 0rem;
}



.grey-bg{
    background-color: var(--id-secondary-30);
}












/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* Component Styles */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */



/* Icon Styles */

.fill{
    transition: .2s ease-in-out;
}

.fill:hover{
    transition: .2s ease-in-out;
}

.fill--clr-1{
    fill: var(--id-primary-clr);
}

.fill--clr-2{
    fill: transparent;
}




/* Horizontal Stacking Lists with dividers */
/* Used for additional info on cards, like post date, time to read, volume and issue # and more */

.divider-list{
    overflow: hidden;
}

.divider-list__item-wrapper{
    display: flex;
    flex-wrap: wrap;
    row-gap: .5rem;
    position: relative;
    left: calc(-1rem - 1px);
    overflow: hidden;
}

.divider-list__item-wrapper > * {
    margin: 0 0 0 .5rem;
    padding: 0 0 0 .5rem;
    border-left: 1px solid #CCCCCC;
    line-height: 1 !important;
    break-inside: avoid-column;
}

    




/* List Styles */

.list-item {
    border-bottom: 1px solid var(--id-secondary-30);
}

    



/* All Button Styles */

/* Button Base Styles */
[type="button"], [type="reset"], [type="submit"], button, a.btn, .btn {
    display: inline-flex;
    column-gap: .5rem;
    align-items: center;
    justify-content: center;
    padding: .5rem .75rem;
    min-width: 38px;
    min-height: 38px;
    font-family: var(--id-body-font);
    line-height: 1.1;
    white-space: nowrap;
    text-decoration: none;
    color: white;
    background-color: var(--id-primary-clr);
    border: 1px solid var(--id-primary-clr);
    border-radius: .35rem;
    transition: .2s ease-in-out;
}
a.btn:hover, .btn:hover{
    color: var(--id-body-text);
    background-color: var(--id-secondary-clr);
    border: 1px solid var(--id-secondary-clr);
    box-shadow: var(--shadow-sm);
    transition: .2s ease-in-out;
}
a.btn .fill--clr-1, .btn .fill--clr-1 {
    fill: var(--id-primary-40);
    transition: .2s ease-in-out;
}
a.btn:hover .fill--clr-1, .btn:hover .fill--clr-1 {
    fill: var(--id-primary);
    transition: .2s ease-in-out;
}

/* Primary Button */
a.btn--primary, .btn--primary, #btnSubmit {
    color: white;
    background-color: var(--id-secondary-clr);
    border: 1px solid var(--id-secondary-clr);
    /*background: linear-gradient(90deg, var(--id-secondary-clr) 0%, #EB9413 100%); */
}
a.btn--primary:hover, .btn--primary:hover, #btnSubmit:hover {
    color: white;
    background-color: var(--id-primary-clr);
    border: 1px solid var(--id-primary-clr);
}
a.btn--primary .fill--clr-1, .btn--primary .fill--clr-1, #btnSubmit .fill--clr-1{
    fill: var(--id-body-text);
}
a.btn--primary:hover .fill--clr-1, .btn--primary:hover .fill--clr-1, #btnSubmit:hover .fill--clr-1 {
    fill: white;
}

/* Secondary Button */
a.btn--secondary, .btn--secondary {
    color: white;
    background-color: var(--id-primary-clr);
    border: 1px solid var(--id-primary-clr);
}
a.btn--secondary:hover, .btn--secondary:hover {
    color: var(--id-primary-clr);
    background-color: var(--id-light-clr);
    border: 1px solid var(--id-light-clr);
}
a.btn--secondary .fill--clr-1, .btn--secondary .fill--clr-1 {
    fill: var(--id-primary-40);
}
a.btn--secondary:hover .fill--clr-1, .btn--secondary:hover .fill--clr-1 {
    fill: var(--id-primary-clr);
}

/* Outlined Primary Button */
a.btn--outlined-primary, .btn--outlined-primary{
    color: var(--id-primary-clr);
    background-color: transparent;
    border: 1px solid var(--id-primary-clr);
}
a.btn--outlined-primary:hover, .btn--outlined-primary:hover{
    color: white;
    background-color: var(--id-primary-clr);
    border: 1px solid var(--id-primary-clr);
}
a.btn--outlined-primary .fill--clr-1, .btn--outlined-primary .fill--clr-1 {
    fill: var(--id-primary-50);
}
a.btn--outlined-primary:hover .fill--clr-1, .btn--outlined-primary:hover .fill--clr-1 {
    fill: var(--id-primary-40);
}

/* Outlined Secondary Button */
a.btn--outlined-secondary, .btn--outlined-secondary{
    color: var(--id-secondary-80);
    background-color: transparent;
    border: 1px solid var(--id-secondary-50);
}
a.btn--outlined-secondary:hover, .btn--outlined-secondary:hover{
    color: white;
    background-color: var(--id-secondary-60);
    border: 1px solid var(--id-secondary-60);
}
a.btn--outlined-secondary .fill--clr-1, .btn--outlined-secondary .fill--clr-1 {
    fill: var(--id-secondary-50);
}
a.btn--outlined-secondary:hover .fill--clr-1, .btn--outlined-secondary:hover .fill--clr-1 {
    fill: var(--id-secondary-50);
}

/* Outlined Light Button */
a.btn--outlined-light, .btn--outlined-light{
    color: white;
    background-color: transparent;
    border: 1px solid white;
}
a.btn--outlined-light:hover, .btn--outlined-light:hover{
    color: var(--id-body-text);
    background-color: white;
    border: 1px solid white;
}
a.btn--outlined-light .fill--clr-1, .btn--outlined-light .fill--clr-1 {
    fill: white;
}
a.btn--outlined-light:hover .fill--clr-1, .btn--outlined-light:hover .fill--clr-1 {
    fill: var(--id-body-text);
}

/* Link Button */
a.btn--link, .btn--link {
    color: var(--id-primary-clr);
    background-color: transparent;
    border: 1px solid transparent;
}
a.btn--link:hover, .btn--link:hover {
    text-decoration: underline;
    color: var(--id-primary-clr);
    background-color: transparent;
    border: 1px solid transparent;
    box-shadow: 0 0 0 transparent;
}
a.btn--link .fill--clr-1, .btn--link .fill--clr-1 {
    fill: var(--id-primary-40);
}
a.btn--link:hover .fill--clr-1, .btn--link:hover .fill--clr-1 {
    fill: var(--id-primary-clr);
}

/* Light Button */
a.btn--light, .btn--light {
    color: var(--id-body-text);
    background-color: var(--id-primary-10);
    border: 1px solid var(--id-primary-10);
}
a.btn--light:hover, .btn--light:hover {
    color: white;
    background-color: var(--id-primary-clr);
    border: 1px solid var(--id-primary-clr);
    box-shadow: var(--shadow-sm);
}
a.btn--light .fill--clr-1, .btn--light .fill--clr-1 {
    fill: var(--id-primary-clr);
}
a.btn--light:hover .fill--clr-1, .btn--light:hover .fill--clr-1 {
    fill: white;
}

/* Other Button Modifiers */
a.btn--lg, .btn--lg{
    font-size: 1.25rem;
    padding: .5rem 1rem;
    min-width: 48px;
    min-height: 48px;
}
a.btn--sm, .btn--sm{
    line-height: 1;
    font-size: .75rem;
    padding: .25rem .5rem;
    min-width: 31px;
    min-height: 31px;
}
.btn--sm svg, .btn--sm .icon{
    max-width: 13px;
    max-height: 13px;
    transform: scale(1.15);
}

.btn--disabled {
    opacity: .5;
    cursor: initial;
}
.btn.btn--disabled:hover {
    opacity: .5;
    cursor: initial;
    box-shadow: none;
}

.btn--load-more{
    font-size: 1.125rem;
    color: var(--secondary-gray-70);
    border: 0;
    background: transparent;
    font-weight: 600;
    transition: .2s ease-in-out;
}
.btn--load-more:hover{
    color: var(--id-primary-clr);
    transition: .2s ease-in-out;
}



/* General Dropdown Styles */
.dropdown-menu {
    max-height: 50vh;
    overflow-x: scroll;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.125);
}

.dropdown-row {
		display: flex;
		flex-wrap: wrap;
        align-items: center;
		gap: .25rem .5rem;
		justify-content: flex-start;
	}

/* General Filter Styles */
.filters {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		align-items: flex-start;
	}
		
.active-filters{
		display: flex;
		gap: .5rem;
		justify-content: flex-start;
	}
	
.active-filters__row{
		display: flex;
		gap: .5rem;
		justify-content: flex-start;
	}
	
.filters .badge:hover{
		color: var(--id-primary-clr);
		background-color: transparent;
		border: 1px solid var(--id-primary-clr);
	}
	
.filters .badge.active{
		display: inline-flex;
	}

/* Badge Styles */

.badge-row{
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    width: 100%;
    margin-bottom: 1rem;
}

a.badge, button.badge, .badge {
    display: inline-flex;
    column-gap: .5rem;
    align-items: center;
    justify-content: center;
    padding: .25rem .5rem;
    min-width: 24px;
    min-height: 20px;
    font-family: var(--id-body-font);
    line-height: 1.1;
    white-space: nowrap;
    text-decoration: none;
    color: white;
    background-color: var(--id-primary-clr);
    border: 1px solid var(--id-primary-clr);
    border-radius: .35rem;
    transition: .2s ease-in-out;
}

a.badge:hover, button.badge:hover, .badge:hover{
    color: var(--id-body-text);
    background-color: var(--id-secondary-clr);
    border: 1px solid var(--id-secondary-clr);
    transition: .2s ease-in-out;
}

a.badge, .badge {
    color: var(--id-body-text);
    background-color: var(--id-secondary-clr);
    border: 1px solid var(--id-secondary-clr);
}

a.badge--primary, .badge--primary {
    color: white;
    background-color: var(--id-secondary-clr);
    border: 1px solid var(--id-secondary-clr);
}

a.badge--primary:hover, .badge--primary:hover {
    color: var(--id-secondary-20);
    background-color: var(--id-secondary-50);
    border: 1px solid var(--id-secondary-50);
}

a.badge--secondary, .badge--secondary {
    color: white;
    background-color: var(--id-primary-clr);
    border: 1px solid var(--id-primary-clr);
}

a.badge--secondary:hover, .badge--secondary:hover {
    color: white;
    background-color: var(--id-primary-50);
    border: 1px solid var(--id-primary-50);
}

a.badge--outlined-primary, .badge--outlined-primary{
    color: var(--id-primary-clr);
    background-color: transparent;
    border: 1px solid var(--id-primary-clr);
/*    border: 1px solid var(--id-primary-30);*/
}

a.badge--outlined-primary:hover, .badge--outlined-primary:hover{
    color: var(--id-primary-50);
    background-color: transparent;
    border: 1px solid var(--id-primary-50);
/*    border: 1px solid var(--id-primary-20);*/
}

a.badge--outlined-secondary, .badge--outlined-secondary{
    color: var(--id-secondary-70);
    background-color: transparent;
    border: 1px solid var(--id-secondary-50);
}

a.badge--outlined-secondary:hover, .badge--outlined-secondary:hover{
    color: var(--id-secondary-60);
    background-color: transparent;
    border: 1px solid var(--id-secondary-40);
}

a.badge--light, .badge--light {
    color: var(--id-primary-clr);
    background-color: var(--id-primary-10);
    border: 1px solid var(--id-primary-10);
}

a.badge--light:hover, .badge--light:hover {
    color: var(--id-primary-50);
    background-color: var(--id-secondary-10);
    border: 1px solid var(--id-secondary-10);
}



/* Card Styles */

.card {
    gap: 1rem;
    /*padding: 1rem;*/
    padding: 0;
    bottom: 0;
    background-color: transparent;
    border: 0px solid transparent;
    border-radius: 0rem;
    overflow: hidden;
    transition: all .2s ease-in-out, bottom .2s ease-in-out;
}

.card:hover{
    bottom: 0px;
    box-shadow: 0px 3px 5px transparent;
    transition: all .2s ease-in-out, bottom .2s ease-in-out; 
}

.card--main::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 2px;
    right: 0;
    left: 0;
    border-radius: 0.35rem;
    box-shadow: 0 2px 0 var(--id-primary-clr);
    pointer-events: none;
}

.card--main-lg{
    min-height: 140px;
    justify-content: center;
}

.card--main-lg .card__body{
    max-width: 900px;
}

.card--purple{
    background-color: var(--id-primary-clr);
}

.card--purple::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0.35rem;
    box-shadow: 0 2px 0 var(--id-body-clr);
    pointer-events: none;
}

.card--purple *{
    color: white;
}

.card--white{
    background-color: white;
}

.card--text-overlay{
    overflow: hidden;
    position: relative;
    padding: 0;
    background: rgba(0, 0, 0, 1);
}

.card__text-overlay .card__copy, .card__text-overlay .card-copy {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    overflow: auto;
    z-index: 2;
}
.card__text-overlay .card__copy p.tag-texts, .card__text-overlay .card-copy p.tag-texts {
    font-size: 0.875rem;
}

.card__text-overlay .card__teaser, .card__text-overlay .card__teaser p {
    color: var(--id-secondary-40) !important;
}

.card--text-overlay .btn--outlined-secondary{
    color: white;
}

.card--text-overlay .thumb-image {
    height: auto;
}

.card--text-overlay .thumb-image::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.81) 25%, rgba(0, 0, 0,0.7) 40%, rgba(0, 0, 0,0.1) 85%, rgba(0, 0, 0,0) 100%);
    transition: .2s ease-in-out;
    opacity: 1;
}

.card__header{
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: .5rem;
    align-items: center;
    padding: 0;
}

.card__header--lg{
    align-items: flex-end;
    grid-gap: 1rem;
}

.card__header--lg .card__header-dashed-line{
    height: 22px;
    position: relative;
    bottom: 10px;
    background-size: 215px;
}

.card__header-title{
    margin-bottom: 1rem;
}

.card__header-title.sm{
    margin-bottom: 0;
    font-size: 1.125rem;
    font-weight: 500;
}

.card__header-dashed-line{
    display: block;
    height: 14px;
    background-image: url("https://jadpro-v3.useast01.umbraco.io/media/x2wa1gkp/dashed-line-gray.png");
    background-repeat: repeat-x;
    background-size: 120px;
    background-position: left center;
}

.card__header-dashed-line--white{
    display: block;
    height: 14px;
    background-image: url("https://jadpro-v3.useast01.umbraco.io/media/2aupfl4m/dashed-line-white.png");
    background-repeat: repeat-x;
    background-size: 120px;
    background-position: left center;
}

.card__body {
    width: 100%;
    padding: 0;
    overflow: auto;
}

.card__body--2-col{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
}

.card__body--2-col__l-col, .card__body--2-col__r-col{
    display: flex;
    flex-direction: column;
}

.card__teaser, .card__teaser p, .card__teaser p *{
    font-size: 1rem;
    margin-bottom: .5rem;
    color: var(--id-secondary-70) !important;
}

.card__author{
    color: var(--id-secondary-60);
}

.card__author-list{
    display: flex;
    flex-wrap: wrap;
    font-size: .75rem;
    line-height: 1;
    margin: 0 0 1rem 0; 
    position: relative;
    left: -.5rem;
    overflow: hidden;
    color: var(--id-secondary-60);
    max-width: 100%;
}

.card__author-name{
    color: var(--id-secondary-60);
    margin: 0 0 5px .5rem;
    padding: 0;
    line-height: 1;
    font-size: inherit;
    break-inside: avoid-column;
    font-weight: 300;
    min-width: max-content;
}

/*
.card__author-name:nth-last-child(2) {
    margin-right: 35px;
}
*/

.card--thumb-top .card__teaser{
    color: var(--id-secondary-60);
/*    margin-bottom: 1.5rem;*/
    font-weight: 300;
}

.card__author-et-al{
    display: flex;
    align-items: flex-start;
    height: 100%;
    font-size: .75rem;
    line-height: 1;
    font-weight: 300;
    break-inside: avoid-column;
    margin: 0 0 5px 0;
    color: var(--id-secondary-60);
    padding: 0 0 0 5px;
    position: relative;
    /*position: absolute;*/
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    background: linear-gradient(-90deg, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
}

.card__body .list-item:first-child{
    margin-top: 0;
}

.card__body .list-item:last-child{
    border-bottom: 1px solid transparent;
}

/*
.card--thumb-top .card__copy{
    padding: .5rem;
}
*/

.card--main .thumb-image{
    z-index: 2;
    cursor: pointer;
    flex: 1 1 200px;
}

.card--thumb-top .card__copy{
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.card--main .card__copy .badge-row{
    margin-bottom: .5rem;
}

.card--main .card__copy .badge{
    pointer-events: auto;
}

.card--main .card__copy .card__title a, .card--main .card__copy .card__title span{
    cursor: pointer;
    pointer-events: auto;
}

.card--main .card__copy .card__title span:hover{
    color: var(--id-primary-clr);
    transition: .2s ease-in-out;
}

.card__bottom-btns{
    display: flex;
    gap: 1rem;
}

.card__body--2-col .card__bottom-btns{
    width: 100%;
}

.card__footer {
    padding: 0;
}

.card--thumb-left__thumbnail{
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    right: auto;
    bottom: 1.5rem;
    max-width: 240px;
}

.card--thumb-left .card__header, .card--thumb-left .card__body, .card--thumb-left .card__footer{
    margin-left: calc(240px + 1.5rem);
    width: auto;
}

.card--thumb-left__thumbnail .thumb-image:hover img {
    transform: scale(1.03);
    transition: .25s ease-in-out;
}

.thumb-image:hover .content-icon, .thumb-image:hover .vid-icon {
  transform: scale(1.05);
  transition: .2s ease-in-out;
}

.card--thumb-left-podcast{
    min-height: calc(200px + 3rem);
}

.card--thumb-left-podcast .card--thumb-left__thumbnail {
    max-width: 200px;
}

.card--thumb-left-podcast .thumb-image, .card--thumb-left-podcast .list-thumb {
    aspect-ratio: 1/1;
}

.card--thumb-left-podcast .card__header, .card--thumb-left-podcast .card__body, .card--thumb-left-podcast .card__footer {
    margin-left: calc(200px + 1.5rem);
    width: auto;
}

@media (max-width: 650px) { 
    .card--thumb-left__thumbnail{
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        max-width: 100%;
    }

    .card--thumb-left .card__header, .card--thumb-left .card__body, .card--thumb-left .card__footer {
        margin-left: 0;
    }
}

.card--stretched-link .stretched-link{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
}

.card--stretched-link *{
    pointer-events: none;
}

.card--stretched-link .stretched-link::after{
    content: none;
}

.card--stretched-link .thumb-image, .card--stretched-link .badge, .card--stretched-link .card__title a, .card--stretched-link .card__title span,  .card--stretched-link .btn{
    position: relative;
    pointer-events: auto;
    cursor: pointer;
    z-index: 2;
}

.card--thumb-bottom{}


.grid__sidebar-col .card--thumb-bottom .thumb-image{
    order: 3;
}

@media (max-width: 768px) {
    .grid__sidebar-col .card--thumb-bottom{
        display: block;
    }

    .grid__sidebar-col .card--thumb-bottom .thumb-image {
        float: right;
        max-width: 175px;
        margin: 0 0 .5rem 1rem;
    }

    .grid__sidebar-col .card--thumb-bottom .card__body {
        display: inline;
    }

    .grid__sidebar-col .card--thumb-bottom .badge-row{
        width: calc(100% - 175px - 1rem);
    }
}








/* Unique card styles */
.grid > .list-item{
    margin-top: 0;
    margin-bottom: 0;
}



.list-item .card__copy{
    padding: 0;
}

.section--browse-topics .card__header hr{
    width: 1.5px;
    height: 100%;
    background-color: var(--id-secondary-30);
    border-radius: 1rem;
    margin: 5px .5rem 5px 1rem;
}

.section--browse-topics .btn--sm{
    font-size: .9rem;
    position: initial;
}

.section--browse-topics .dropdown-menu{
    position: absolute;
    inset: 4rem 1.25rem auto 1.25rem !important;
    left: 0;
    top: 100%;
    transform: none !important;    
}

.card--main-lg.card--current-iss{
    min-height: 348px;
}

.card--main-lg .cover-widget{
    position: absolute;
    max-width: 300px;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
}

.sidebar-column .card--current-iss .cover-widget{
    position: relative;
}

.card--current-iss .grid--2col{
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}

.card--current-iss .card__header, .card--current-iss .card__body, .card--current-iss .card__footer{
    margin-left: 300px;
    width: auto;
}

.sidebar-column .cover-widget{
    height: auto;
}

.sidebar-column .cover-widget__top{
   
}

.card--current-iss .card__body, .card--current-iss .card__footer{
    width: auto;
}

.sidebar-column .card--current-iss .card__header, .sidebar-column .card--current-iss .card__body, .sidebar-column .card--current-iss .card__footer{
    margin-left: auto;
    width: 100%;
}

.sidebar-column .card--current-iss .card__header{
    width: 100%;
    padding: 1rem 1rem 0 1rem;
    background-color: white;
}

.sidebar-column .card--current-iss .card__header h3{
    border-bottom: 1px solid var(--id-secondary-30);
    width: 100%;
    padding-bottom: 1rem;
}

.sidebar-column .card--current-iss .card__body{
    padding: 1rem 1rem 0 1rem;
    background-color: white;
}

.card--current-iss .card__body .list-item:last-child {
    border-bottom: 1px solid var(--id-primary-30);
}

.card--current-iss .card__bottom-btns{
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 0 .5rem;
    gap: .5rem;
}

.card--current-iss .card__bottom-btns .btn{
    padding-left: 0;
    padding-right: 0;
}



.header-card, .card.header-card{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    padding: 0 0 1.5rem 0;
    border-radius: 0;
    border-bottom: 1px solid var(--id-secondary-40);
    overflow: visible;
}

.card__l-col, .card__c-col, .card__r-col{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.card__l-col, .card__r-col{
    flex: 0 0 auto;
    flex-direction: row;
}

.card__c-col{
    /* flex: 1 1 auto; */
    flex: 1 1 450px;
    flex-direction: column;
}

.card__r-col{
    order: 3;
}

.card__header {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 3rem;
    align-items: center;
    padding: 0;
}

.cover-widget {
    display: grid;
/*    grid-template-rows: 1fr auto;*/
    grid-template-rows: auto auto auto;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    height: auto;
    max-height: 100%;
    width: 100%;
    max-width: 290px;
}

.cover-widget__spec-iss{
    background-color: var(--id-primary-clr);
    display: flex;
    padding: .125rem 1rem;
    z-index: 2;
}

.cover-widget__spec-iss p{
    margin: 0 auto;
    text-transform: uppercase;
    color: white;
    font-size: .85rem;
    letter-spacing: .05rem;
}

.current-iss-module{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--id-primary-clr);
    background-position: center;
    position: relative;
    border-radius: .35rem;
    overflow: hidden;
    padding: 1.5rem;
    background-size: cover;
    background-repeat: no-repeat;
}

.current-iss-module::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    filter: blur(2px);
    z-index: 1;
}

.current-iss-module *{
    position: relative;
    z-index: 2;
}
.current-iss-module .cover-widget{
    border: 1px solid var(--id-primary-90);
}



.list-card, .card.list-card{
    display: flex;
    flex-direction: row;
    gap: 1rem 1.5rem;
    padding: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--id-secondary-40);

    /*background-color: white;*/
}

.list-card .card__l-col .thumb-image{
    max-width: 240px;
}

.list-card .card__r-col .thumb-image{
    max-width: 400px;
}

.content-column .list-card:last-of-type {
    border-bottom: 1px solid transparent;
}

.sidebar-column .card--current-iss{
    gap: 0;
}

@media (max-width: 768px) {
    .card.list-card--image{
        display: block;
    }

    .card.list-card--image .card__r-col {
        float: right;
        max-width: 200px;
        margin: 0 0 .5rem 1.5rem;
    }

    .card.list-card--image .card__c-col {
        display: inline;
    }

    .card.list-card--image .card__body {
        width: 100%;
        padding: 0;
        overflow: initial;
    }

    .card.list-card--image .badge-row{
        width: calc(100% - 200px - 1.5rem);
    }
}




@media (max-width: 1100px) {
    .sidebar-column .card--current-iss .cover-widget{
        position: absolute;
    }
    
    .sidebar-column .cover-widget__top {
        max-height: 100%;
    }
    
    .sidebar-column .card--current-iss .card__header, .sidebar-column .card--current-iss .card__body, .sidebar-column .card--current-iss .card__footer{
        margin-left: 300px;
        width: calc(100% - 300px);
    }
}


@media (max-width: 700px) { 
    .sidebar-column .card--current-iss {
        align-items: center;
        background: white;
        padding-top: 1.5rem !important;
    }
    
    .sidebar-column .card--current-iss .cover-widget {
        position: relative;
        width: auto;
        left: auto;
        right: auto;
        bottom: auto;
        height: auto;
        box-shadow: 0 0 .75rem rgba(0,0,0,.125);
    }
    
    .sidebar-column .card--current-iss .cover-widget__top {
        min-height: 200px;
    }
    
    .card--current-iss .card__header, .card--current-iss .card__body, .card--current-iss .card__footer {
        margin-left: 0;
    }
    
    .card--current-iss > *:nth-child(2) {
        margin-top: 0;
    }
    
    .sidebar-column .card--current-iss .card__header, .sidebar-column .card--current-iss .card__body, .sidebar-column .card--current-iss .card__footer {
        margin-left: 0;
        width: 100%;
    }
}

.sidebar-column .card--current-iss .card__bottom-btns{
    flex-direction: column;
    align-items: flex-end;
    padding: 1rem;
}

.card--man-submit{
    justify-content: flex-end;
}

.card--man-submit .card__header{
    align-items: flex-end;
}

.card--man-submit .title--d3{
    color: var(--id-primary-clr);
    padding-right: 14rem;
}

.card--man-submit .card__header .icon, .card--news-subscribe .card__header .icon{
    margin-left: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1.75);
    z-index: 1;
    height: 100%;
}

.card--man-submit .card__header .icon{
    right: 4.25rem;
      
}

.card--news-subscribe .card__header .icon{
    right: 3.8rem;
}


.card--man-submit .fill--clr-1{
    color: var(--id-primary-clr);
    opacity: .075;
}

.card--man-submit__body{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.card--man-submit__body p{
    flex: 1 1 230px;
}

.card--man-submit__body .btn{
    flex: 0 1 auto;
}

.card--news-subscribe .card__header .fill--clr-1{
    fill: white;
    opacity: .065;;
}

.card--news-subscribe .form--news-alerts{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.card--news-subscribe .form-item--email{
    flex: 1 1 230px;
}

.form-btn-row{
    flex: 0 1 100px;
}

.form--news-alerts #btnSubmit {
    height: 100%;
    margin: 0;
    color: var(--id-body-text);
    background-color: var(--id-secondary-clr);
    border: 1px solid var(--id-secondary-clr);
}

.form--news-alerts #btnSubmit:hover {
    color: var(--id-primary-clr);
    background-color: white;
    border: 1px solid white;
    box-shadow: var(--shadow-sm);
    transition: .2s ease-in-out;
}

.section--featured-ed .card__body--2-col, .section--featured-events .card__body--2-col{
    grid-template-columns: 5fr 7fr;
}

.section--featured-events .card--text-overlay{
    height: 100%;
    min-height: 500px;
}

/*
.body--2-col__r-col .card__bottom-btns{
    margin-top: auto;
    justify-content: flex-end;
}
*/
.card__featured-li{
    flex-wrap: wrap;
    border-bottom: 0px solid transparent;
}

.card__featured-li .list-thumb {
    flex: 1 1 auto;
    order: 1;
    margin: 0 0 1.5rem 0;
}

.card__featured-li .card__copy {
    flex: 1 1 auto;
    order: 2;
    margin-bottom: 0;
}

.card--conexiant-news .card__header{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 200px;
    padding: 1.5rem;
    background-color: var(--primary-blue-60);
    border-radius: .5rem;
    overflow: hidden;
}

.card--conexiant-news .card__header::before, .card--conexiant-news .card__header::after {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: .5rem;
}

.card--conexiant-news .card__header::before {
    background-image: url("https://conexiant.com/media/rkbbrzy1/x-outlined-single.png");
    background-repeat: repeat;
    background-size: 43px;
    background-position: center left;
    opacity: .5;
    z-index: 1;
}

.card--conexiant-news .card__header::after {
    background-image: -webkit-linear-gradient(144deg, rgba(15,67,108,1) 0%, rgba(18,80,128,.85) 55%, rgba(24,105,168,0) 100%);
    background-image: -o-linear-gradient(144deg, rgba(15,67,108,1) 0%, rgba(18,80,128,.85) 55%, rgba(24,105,168,0) 100%);
    background-image: linear-gradient(144deg, rgba(15,67,108,1) 0%, rgba(18,80,128,.85) 55%, rgba(24,105,168,0) 100%);
    z-index: 2;
}

.card--conexiant-news .card__header *{
    position: relative;
    z-index: 3;
}

.card--conexiant-news img{
    width: 100%;
    max-width: 160px;
}

.card--conexiant-news .title--d5{
    color: white;
}

.card--conexiant-news .card__header hr{
    height: 2px;
    border: 0;
    width: 75px;
    background-color: var(--primary-clr-2);
    margin: 0;
    padding: 0;
}

.card--conexiant-news .card__body{
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 2rem !important;
}

.card--apsho{
    display: flex;
    flex-direction: column;
    border-radius: .5rem;
    padding: 0rem;
    background-color: #E0EDF7;
    overflow: hidden;
}

.top-image{
    width: 100%;
}

.card--apsho-logo{
    margin-top: 0rem;
    margin-bottom: 1.5rem;
    background-color: #E0EDF7;
}

a.btn--apsho, .btn--apsho{
    color: white;
    background-color: #A61A6F;
    border: 2px solid #A61A6F;
}

a.btn--outlined-apsho, .btn--outlined-apsho{
    color: #A61A6F; 
    background-color: transparent;
    border: 2px solid #A61A6F;
}

.btn--apsho:hover, a.btn--apsho:hover, .btn--outlined-apsho:hover, a.btn--outlined-apsho:hover{
    color: white;
    background-color: #3A2B7A;
    border: 2px solid #3A2B7A;
}

.card--topic-list .card--main-lg__topic-icon{
    display: grid;
    align-items: flex-start;
    position: absolute;
    max-width: 250px;
    top: 1.5rem;
    left: auto;
    bottom: 1.5rem;
    right: 1.5rem;
}

.card--main-lg__topic-icon .icon{
    height: 240px;
    max-height: 100%;
    aspect-ratio: 1/1;
    margin: 0 auto;
}

.card--main-lg__topic-icon .icon .fill--clr-1{
    fill: var(--id-primary-30);
}

.card--topic-list .card__header, .card--topic-list .card__body, .card--topic-list .card__footer{
    margin-right: calc(250px + 1rem);
    width: auto;
}

@media (max-width: 700px) { 
    .card--topic-list .card--main-lg__topic-icon{
        max-width: 100%;
        top: auto;
        left: 1.5rem;
    }
    
    .card--topic-list .card__header, .card--topic-list .card__body, .card--topic-list .card__footer {
        margin-right: 0;
    }
    
    .card--topic-list > *:nth-last-child(2) {
        margin-bottom: calc(240px + 1.5rem);
    }
}


.card--current-iss .grid--2col{
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}




.card--recent-issues .cover-widget{
    border-radius: .5rem;
}

@media (max-width: 1200px) {
    .card--recent-issues .grid--4col{
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .card--recent-issues .cover-widget__top {
        max-height: 300px;
    }
}

@media (max-width: 750px) {
    .card--recent-issues .grid--4col{
        grid-template-columns: 1fr !important;
    }
}




.additional-info-wrapper{
    margin: 1rem 0 0 0;
    overflow: hidden;
}

.additional-info{
    display: inline-flex;
    flex-wrap: wrap;
    gap: .5rem .25rem;
    position: relative;
    left: calc(-1rem - 1px);
}

.additional-info .tag-texts {
    margin: 0 0 0 .5rem;
    padding: 0 0 0 .5rem;
    color: var(--id-secondary-60);
    border-left: 1px solid var(--id-secondary-40);
    line-height: 1;
    font-size: 0.875rem;
    break-inside: avoid-column;
    text-transform: none;
    font-weight: 300;
    display: inline-flex;
    gap: .5rem;
    align-items: center;
}

.additional-info .fill--clr-1 {
    fill: var(--id-secondary-60);
}








.cover-widget{
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;   
    /*height: 100%;*/
    text-decoration: none;
}

.cover-widget:hover{
    text-decoration: none;
}

.cover-widget__top{
    display: flex;
    position: relative;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.cover-widget__top-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    padding: 0;
    margin: auto;
    position: relative;
/*    position: absolute;*/
    z-index: 2;
}

.cover-widget .card__header {
    padding: 0;
}

.cover-widget .card__header-title{
    color: white;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.85));
}

.cover-widget__cover-image{
    width: 100%;
    transition: .2s ease-in-out;
}

.cover-widget:hover .cover-widget__cover-image{
    transform: scale(1.02);
    transition: .2s ease-in-out;
}

.cover-widget__cover-bg{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;  
    height: 100%;
    z-index: 1;
    background-color: var(--id-primary-clr);
    overflow: hidden;
}

.cover-widget__cover-bg::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;  
    height: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.60) 100%);
}

.cover-widget__cover-bg-img{
    position: relative;
    z-index: 1;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    transform: scale(1.65);
    transition: .25s ease-in-out;
    border-radius: .5rem .5rem 0 0;
}

.cover-widget__info{
    display: flex;
    gap: .5rem;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    font-family: var(--id-body-font);
    background-color: var(--id-primary-clr);
}

.cover-widget__info span{
    font-size: .9rem;
}

.cover-widget__info span, .cover-widget__info-item{
    color: white;
    margin: 0;
    padding: 0 0 0 .5rem;
    border-left: 1px solid white;
    line-height: 1;
    break-inside: avoid-column;
    text-align: center;
}

.cover-widget__info-item{
    font-size: .875rem;
}

.cover-widget__info span:first-child, .cover-widget__info p:first-child{
    margin: 0;
    padding: 0 ;
    border-left: 0px solid transparent;
}


.grid--covers.grid--12col{
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}




/* Toggle Switch Styles */
.toggle-switch{
    
}




/* Browse By Module Styles */
.browse-by-module{
            
}





/* Tabbed Header Styles */

.tab-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 5rem;
    margin-bottom: 1rem;
}

.tab-header:first-of-type {
    margin-top: 0;
}

.tab-header__title{
    font-weight: 600;
    color: var(--id-body-font);
    padding: 0 0 .5rem 0;
    margin: 0;
}

.tab-header .tab-header__hr{
    width: 100%;
    height: 2px;
    margin: 0;
    border: 0px;
    background-color: var(--id-primary-clr);
    border-radius: 3rem;
    position: relative;
}

.tab-header--top .tab-header__title{
    order: 1;
    border-radius: .5rem .5rem 0 0;
}

.tab-header--top .tab-header__hr{
    order: 2;
    bottom: 1px;
}

.tab-header--bottom .tab-header__title{
    order: 2;
    border-radius:  0 0 .5rem .5rem;
}

.tab-header--bottom .tab-header__hr{
    top: 1px;
}

    



/* Breadcrumb Styles */

.breadcrumb__link {
    color: var(--id-primary-clr);
    text-decoration: underline;
}

.breadcrumb__link:hover {
    color: var(--id-primary-50);
    text-decoration: underline;
}

.breadcrumb__current {
    color: var(--id-primary-clr);
    text-decoration: none;
}

.breadcrumb__current:hover {
    color: var(--id-primary-clr);
    text-decoration: underline;
}

    



/* Video Container Styles */

.video-embed-container {
    position: relative;
    box-shadow: none;
    background: var(--id-body-text);
    border-radius: .5rem;
    overflow: hidden;
}

.video-embed-container .card{
    position: absolute;
    width: calc(100% - 2rem);
    height: max-content;
    max-width: 600px;
    max-height: calc(100% - 2rem);
    overflow-y: scroll;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: .35rem;
    padding: 2rem 0;
    background-color: white;
    z-index: 3
}

.video-embed-container .card .card__header{
    padding: 0 1.5rem .5rem 1.5rem;
    border-bottom: 1px solid var(--id-secondary-30);
}

.video-embed-container .card .card__body{
    padding: 0 1.5rem;
    overflow: visible;
}

.video-embed-container .gating-form{
    display: flex;
    flex-direction: column;
}

.video-embed-container .form-group{
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    margin-bottom: 1rem;
}

.form-group label{
    line-height: 1;
}
    



/* Pagination Styles */

.page-item{
    flex: 1 1 auto;
    text-align: center;
}

.page-link{
    padding: .5rem .5rem;
}

.page-item a.page-link {
    color: var(--id-body-text);
    text-decoration: none;
    background-color: white;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    border-right: 2px solid var(--id-bg-clr);
    border-left: 2px solid var(--id-bg-clr);
    margin-left: calc(var(--bs-border-width) * -2);
    transition: all .15s ease-in-out;
}

.page-item:not(:first-child) .page-link {
    margin-left: calc(var(--bs-border-width) * -2);
}

.page-item a.page-link:hover {
    color: white;
    background-color: var(--id-primary-clr);
    border-color: var(--id-primary-clr);
    text-decoration: none;
}

.page-item:first-child .page-link{
    border-left: 2px solid transparent;
}

.page-item:last-child .page-link{
    border-right: 2px solid transparent;
}

.pagination__dots{
    margin-left: calc(var(--bs-border-width) * -2);
    color: var(--id-body-text);
    text-decoration: none;
    background-color: white;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid var(--id-bg-clr);
    border-left: 2px solid var(--id-bg-clr);
}

.page-item.active .page-link {
    cursor: default;
    pointer-events: none;
    z-index: 3;
    color: white;
    background-color: var(--id-primary-clr);
    border-color: var(--id-primary-clr);
}

.page-item.active .page-link:hover {
    background-color: var(--id-primary-clr);
    border-color: var(--id-primary-clr);
    text-decoration: none;
}

.page-item.disabled .page-link {
    color: var(--id-primary-20);
}

@media (max-width: 900px) {nav.max-width .pagination .page-item:nth-last-child(12){display: none;}}
@media (max-width: 850px) {nav.max-width .pagination .page-item:nth-last-child(11){display: none;}}
@media (max-width: 800px) {nav.max-width .pagination .page-item:nth-last-child(10){display: none;}}
@media (max-width: 750px) {nav.max-width .pagination .page-item:nth-last-child(9){display: none;}}
@media (max-width: 700px) {nav.max-width .pagination .page-item:nth-last-child(8){display: none;}}
@media (max-width: 650px) {nav.max-width .pagination .page-item:nth-last-child(7){display: none;}}
@media (max-width: 600px) {nav.max-width .pagination .page-item:nth-last-child(6){display: none;}}
@media (max-width: 550px) {nav.max-width .pagination .page-item:nth-last-child(5){display: none;}}







/* Lead Gen Styles */

        .lead-gen-wrapper{
            background-color: white;
        }

        .lead-gen{
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            gap: 1.5rem;
            align-items: center;
            background-color: white;
            padding: 1.5rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .lead-gen__content{
            flex: 1 1 896px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            gap: 1.5rem;
            align-items: center;
        }

        .lead-gen .thumb-image{
            flex: 1 1 350px;
        }

        .lead-gen .card__body{
            flex: 3 1 300px;

        }

        .lead-gen .badge--secondary:hover {
            color: var(--id-body-text);
            background-color: var(--id-secondary-clr);
            border: 1px solid var(--id-secondary-clr);
        }

        .lead-gen .lead-gen__form{
            flex: 1 1 250px;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .lead-gen .form-group{
            flex: 1 1 200px;
            margin-bottom: 0;
        }

        .lead-gen .form-control{
            display: block;
            width: 100%;
            padding: .375rem .75rem;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            color: #212529;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid #ced4da;   
            border-radius: .35rem;
        }

        .lead-gen .btn{
            flex: 1 1 max-content;
        }

        @media (max-width: 1250px) {
            .lead-gen__content{
                align-items: flex-start;
            }
        }

        @media (max-width: 1100px) {
            .lead-gen .thumb-image{
        /*        flex: 1 1 350px;*/
                flex: 1 1 210px;
            }
        }

        @media (max-width: 768px) {
            .lead-gen .form-group{
                flex: 1 1 150px;
                margin-bottom: 0;
            }
        }

        @media (max-width: 600px) {
            .lead-gen .thumb-image{
                flex: 1 1 100%;
            }

            .lead-gen .form-group{
                flex: 1 1 100%;
                margin-bottom: 0;
            }
        }




/* Browse By Section Styles */

.card--outlined{
    padding: 1.5rem;
    border: 1px solid var(--id-secondary-40);
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

a.card--outlined:hover{
    background-color: white;
    text-decoration: none;
}

.browse-topics{
    background-color: var(--id-primary-clr);
}

.browse-topics a.card--outlined{
    border: 1px solid white;
}

.browse-topics a.card--outlined:hover{
    background-color: white;
    text-decoration: none;
}

.browse-topics h2, .browse-topics h3, .browse-topics p{
    color: white;
    text-decoration: none;
}

.browse-topics .card--outlined:hover h2, .browse-topics .card--outlined:hover h3, .browse-topics .card--outlined:hover p{
    color: var(--id-primary-clr);
    text-decoration: none;
}

.browse-sections h2, .browse-sections h3, .browse-sections p{
    color: var(--id-body-text);
    text-decoration: none;
}

.browse-sections a.card--outlined:hover{
    background-color: var(--id-body-text);
    text-decoration: none;
}

.browse-sections .card--outlined:hover h2, .browse-sections .card--outlined:hover h3, .browse-sections .card--outlined:hover p{
    color: white;
    text-decoration: none;
}

.browse-sections .btn--outlined-secondary, .browse-topics .btn--outlined-secondary{
    color: white;
    border: 1px solid var(--id-secondary-20);
}

.browse-sections .btn--outlined-secondary:hover, .browse-topics .btn--outlined-secondary:hover{
    border: 1px solid var(--id-secondary-60);
}

.browse-sections .btn--outlined-secondary .fill--clr-1, .browse-topics .btn--outlined-secondary .fill--clr-1 {
  fill: var(--id-secondary-20);
}

@media (max-width: 850px) {
    .browse-topics .grid--3col, .browse-sections .grid--3col{
        grid-template-columns: repeat(2, 1fr) !important;
    }  
}

@media (max-width: 650px) {
    .browse-topics .grid--3col, .browse-sections .grid--3col{
        grid-template-columns: repeat(1, 1fr) !important;
    }  
}








/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* Layout Styles */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */

.grid{display: grid;}

.grid--2col{grid-template-columns: repeat(2, 1fr) !important;}
.grid--3col{grid-template-columns: repeat(3, 1fr) !important;}
.grid--4col{grid-template-columns: repeat(4, 1fr) !important;}
.grid--6col{grid-template-columns: repeat(6, 1fr) !important;}
.grid--9col{grid-template-columns: repeat(9, 1fr) !important;}
.grid--12col{grid-template-columns: repeat(12, 1fr) !important;}

.grid-span--1col{grid-column: span 1;}
.grid-span--2col{grid-column: span 2;}
.grid-span--3col{grid-column: span 3;}
.grid-span--4col{grid-column: span 4;}
.grid-span--5col{grid-column: span 5;}
.grid-span--6col{grid-column: span 6;}
.grid-span--7col{grid-column: span 7;}
.grid-span--8col{grid-column: span 8;}
.grid-span--9col{grid-column: span 9;}
.grid-span--10col{grid-column: span 10;}
.grid-span--11col{grid-column: span 11;}
.grid-span--12col{grid-column: span 12;}

.grid--12col__1-3{grid-column: 1/3;}
.grid--12col__1-4{grid-column: 1/4;}
.grid--12col__3-7{grid-column: 3/7;}
.grid--12col__4-7{grid-column: 4/7;}
.grid--12col__7-13{grid-column: 7/13;}

.gap-1 {gap: .25rem !important;}
.gap-2 {gap: .5rem !important;}
.gap-3 {gap: 1rem !important;}
.gap-4 {gap: 1.5rem !important;}
.gap-4 {gap: 1.5rem !important;}
.gap-5 {gap: 2rem !important;}
.gap-6 {gap: 2.5rem !important;}
.gap-7 {gap: 3rem !important;}
.gap-8 {gap: 3.5rem !important;}
.gap-9 {gap: 4rem !important;}

.col-gap-3{column-gap: 1rem !important;}


.col-count-2{
    column: 2 250px;
/*    column-count: 2;*/
    column-gap: 1.5rem;
}

.col-count-3{
    columns: 3 250px;
    column-gap: 1.5rem;
}

.grid__content-col .grid{
    align-items: flex-start;
}

.grid--1fr-400{grid-template-columns: 1fr 350px;gap: 2rem;align-items: flex-start;}
.grid--300-1fr{grid-template-columns: 300px 1fr;gap: 2rem;align-items: flex-start;}

@media (max-width: 750px) { 
    .col-count-2{
        column-count: 1;
    }
}












/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* Navigation Styles */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */



/* All Pub Sites Structural Styles */




/* All Pub Sites Nav Styles */

nav {
  position: relative;
  top: auto;
  background: none;
}

.nav{
    display: flex;
    width: 100%;
}

.navbar{
    width: 100%;
}

.navbar > .container-fluid{
    flex-wrap: wrap;
    position: relative;
    align-items: initial;
}

.navbar__logo a{
    display: inline-block;
}

.navbar__logo-img{
    display: block;
    max-width: min-content;
}

.navbar__left{
    display: flex;
    align-items: center;
    column-gap: 1rem;
    margin: auto 0;
}

.navbar__right{
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.navbar-toggler--hamburger{
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    z-index: 3;
}

.navbar-toggler--hamburger::before, .navbar-toggler--hamburger::after  {
    content: '';
    display: block;
    width: 20px;
    position: absolute;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

.navbar-toggler--hamburger::before {
    height: 2px;
    background: #BCBEC0;
}

.navbar-toggler--hamburger::after {
    border-top: 2px solid #BCBEC0;
    border-bottom: 2px solid #BCBEC0;
    height: 14px;
}

.navbar-toggler:focus{
    box-shadow: none;
}

.navbar-toggler--hamburger.menu-open::before, .navbar-toggler--hamburger.menu-open::after {
    width: 19px;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

.navbar-toggler--hamburger.menu-open::before {
    background: #3B3B3C;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navbar-toggler--hamburger.menu-open::after {
    border: 0;
    height: 2px;
    border-top: 0px solid transparent;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar-toggler--hamburger:hover::before, .navbar-toggler--hamburger.menu-open::before {
    background: #3B3B3C;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

.navbar-toggler--hamburger:hover::after {
    border-top: 2px solid #3B3B3C;
    border-bottom: 2px solid #3B3B3C;
}

.navbar-collapse.show{
    display: flex;
}

.navbar-nav .dropdown-menu ul{
    list-style: none;
    padding-left: 0;
}

.navbar--megamenu{
    position: relative;
}

.navbar--megamenu > .container-fluid, .navbar--megamenu .navbar__left, .navbar--megamenu .navbar-collapse, .navbar--megamenu .navbar-nav, .navbar--megamenu .navbar-nav .nav-item{
    position: initial;
    height: 100%;
}

.navbar--megamenu .navbar-nav{
    width: 100%;
}

.navbar--megamenu .navbar-nav .nav-link{
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar--megamenu .navbar-nav .dropdown-menu--megamenu{
    width: 100%;
    border-radius: 0;
    border: 0;
    max-height: calc(100svh - 80px - 44.2px);
    overflow-y: scroll;
}

.dropdown-menu__megamenu-section{
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}





/* Umbrella Nav Styles */

.umbrella-nav{
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    background: #EAEBEB;
    border-bottom: 1px solid #BCBEC0; 
    z-index: 1250;
    position: relative;
}

.umbrella-nav__specialty-logo{

}

.umbrella-nav .navbar__logo{
    margin: auto;
}

.umbrella-nav .navbar__logo-img{
    width: 100px;
}

.umbrella-nav .specialties-menu-toggle{
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--secondary-gray-90);
    font-weight: 300; 
    margin: auto;
    gap: 0;
    padding: .25rem .5rem;
    min-width: 31px;
    min-height: 31px;
}

.umbrella-nav .specialties-menu-toggle:hover, .umbrella-nav .specialties-menu-toggle.show{
    color: var(--primary-clr-1);
}

.umbrella-nav .specialties-menu-toggle.dropdown-toggle::after {
    top: auto;
}

.umbrella-nav .btn__sign-in, .umbrella-nav .btn__sign-in a{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--secondary-gray-90);
    font-weight: 300;
    text-decoration: none;
}

.umbrella-nav .btn__sign-in:hover, .umbrella-nav .btn__sign-in:hover > a{
    color: var(--id-primary-clr);
    text-decoration: none;
}

.umbrella-nav .btn__sign-in path{
    transition: .2s ease-in-out;
}

.umbrella-nav .btn__sign-in:hover path{
    fill: var(--id-primary-clr);
    transition: .2s ease-in-out;
}

.umbrella-nav .btn__sign-in .dropdown-toggle::after{
    content: none;
}

.btn__sign-in.dropdown{
    color: var(--id-body-text);
}

.btn__sign-in.dropdown:hover .dropdown-toggle{
    color: var(--id-primary-clr);
}

.btn__sign-in.dropdown:hover .btn_sign-in-icon path{
    fill: var(--id-primary-clr);
}

.btn__sign-in.dropdown .dropdown-menu {
    padding: 0;
    top: 99%;
    right: 0;
    margin-top: 0;
    left: auto;
    min-width: 100%;
    border: 1px solid #BCBEC0;
    overflow: hidden;
}

.btn__sign-in.dropdown:hover .dropdown-menu {
    display: block;
}

.btn__sign-in.dropdown .dropdown-menu .dropdown-item{
    padding: .25rem .5rem;
    min-width: 31px;
    min-height: 31px;
}

.umbrella-nav .btn--advertise{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--secondary-gray-90);
    font-weight: 300;
    text-decoration: none;
    border-left: 1px solid var(--secondary-gray-40);
    border-radius: 0;
    padding: .85rem .5rem .85rem 1.5rem;
    height: 100%;
}

.umbrella-nav .btn--advertise:hover{
    border-left: 1px solid var(--secondary-gray-40);
    text-decoration: none;
}

.specialties-menu {
    font-family: "Poppins", sans-serif;
    z-index: 1240;
    padding: 4rem 2rem 4.5rem 2rem;
    border-top: 1px solid #BCBEC0;
    border-bottom: 1px solid #BCBEC0;
}

.specialties-menu.show {
    top: 100%;
}

.specialties-menu__list{
    column-count: 3;
    margin-bottom: 0;
}



/* Pub Nav Styles */

.brand-nav{
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--id-primary-clr);
    border-bottom: 1.5px solid var(--id-primary-clr);
    position: sticky;
    top: 0;
    z-index: 1230;
}

.brand-nav .navbar, .brand-nav .navbar__left{
    min-height: 80px;
}

.brand-nav .navbar__logo-img{
    width: 150px;
}

.brand-nav .navbar-toggler--hamburger::before {
    height: 2px;
    background: var(--id-primary-30);
}

.brand-nav .navbar-toggler--hamburger::after {
    border-top: 2px solid var(--id-primary-30);
    border-bottom: 2px solid var(--id-primary-30);
    height: 14px;
}

.brand-nav .navbar-toggler--hamburger:hover::before, .brand-nav .navbar-toggler--hamburger.menu-open::before {
    background: var(--id-primary-10);
}

.brand-nav .navbar-toggler--hamburger:hover::after {
    border-top: 2px solid var(--id-primary-10);
    border-bottom: 2px solid var(--id-primary-10);
}

.brand-nav .navbar-toggler--hamburger.menu-open::after{
    border-top: 0px solid transparent;
    border-bottom: 2px solid var(--id-primary-10);
    height: 2px;
}

.brand-nav .navbar-toggler--hamburger.menu-open:hover::before {
    background: white;
}

.brand-nav .navbar-toggler--hamburger.menu-open:hover::after {
    border-bottom: 2px solid white;
}

.navbar-toggler__icon::after {
    background-color: var(--id-light-clr);
    border-radius: .5rem;
}

.brand-nav .navbar-toggler .fill--clr-1{
    fill: var(--id-body-clr);
    transition: .2s ease-in-out;
}

.brand-nav .navbar-toggler:hover .fill--clr-1{
    fill: var(--id-primary-clr);
    transition: .2s ease-in-out;
}

/* This is overriding umbrella styles. Adjust umbrella html/css to have custom class for original styles so the following is  */
.navbar-toggler__icon-inner::before, .navbar-toggler__icon-inner::after {
    content: none;
}

.brand-nav .navbar-nav .nav-link{
    font-family: var(--id-body-font);
    font-size: 1rem;
    color: var(--id-primary-30);
    padding: .5rem 1rem;
    min-height: 24px;
    text-decoration: none;
}

.brand-nav .navbar-nav .nav-link:hover, .brand-nav .navbar-nav .dropdown-toggle.show{
    color: var(--id-primary-10);
    text-decoration: none;
}

.dropdown-toggle::after {
    display: inline-block;
    color: var(--id-primary-clr);
    font-size: .75rem;
    margin-left: .15em;
    vertical-align: .255em;
    font-family: 'Material Icons';
    content: "\e5cf";
    border: none;
    line-height: 0;
    position: relative;
    top: auto;
    opacity: .5;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.dropdown-menu[data-bs-popper] {
    top: 99%;
    left: 0;
    margin-top: 0;
}

.dropdown-item{
    display: flex;
    align-items: center;
    column-gap: .5rem;
    white-space: wrap;
}

.brand-nav .dropdown-toggle::after {
    color: var(--id-primary-40);
    opacity: 1;
    top: 1px;
}

.brand-nav .dropdown-toggle:hover::after, .dropdown-toggle.show::after {
    color: var(--id-primary-10);
    opacity: 1;
    transition: all 0.25s ease-in-out;
}

.brand-nav .navbar-nav .dropdown-menu {
    padding: 2.5rem 0;
    background-color: var(--id-secondary-10);
    border-bottom: 1.5px solid var(--id-primary-clr);
}

.brand-nav .dropdown-menu--megamenu > *{
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(242px, 1fr));
}

.dropdown-menu__megamenu-section ul {
    padding: .5rem 0;
}

.dropdown-menu__megamenu-section-header{
    display: flex;
    column-gap: .5rem;
    align-items: center;
    padding-bottom: .25rem;
/*    border-bottom: 2px solid var(--id-secondary-clr);*/
    text-decoration: none;
}

.dropdown-menu__megamenu-section-header:hover{
    color: inherit;
    text-decoration: none;
}

.dropdown-menu__megamenu-section-header--empty{
    border-bottom: 0px solid transparent;
}

.dropdown-menu__megamenu-title{
    color: var(--id-primary-clr);
    margin-bottom: 0.125rem;
}

.brand-nav .navbar-nav .dropdown-menu ul{

}

.brand-nav .dropdown-item {
    display: inline-flex;
    width: auto;
    padding: .5rem 1.5rem;
    color: var(--id-body-text);
}

.brand-nav .dropdown-item .fill--clr-1{
    fill: var(--id-body-text);
}

.brand-nav .dropdown-item:hover .fill--clr-1{
    fill: var(--id-primary-clr);
}

.brand-nav .dropdown-item:hover {
    color: var(--id-primary-clr);
    background-color: transparent;
    text-decoration: none;
}

.brand-nav .dropdown-item:hover span {
    text-decoration: underline;
}

.dropdown-item--view-all::after {
    display: inline-block;
    color: var(--id-primary-clr);
    font-size: .75rem;
    margin-left: .15em;
    vertical-align: .255em;
    font-family: 'Material Icons';
    content: "\e5cf";
    border: none;
    line-height: 0;
    position: relative;
    top: auto;
    opacity: .5;
    text-decoration: none;
    transform: rotate(-90deg);
    transition: all 0.25s ease-in-out;
}

.dropdown-item--view-all:hover::after {
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.brand-nav .btn--search {
    color: var(--id-primary-30);
    text-decoration: none;
}

.brand-nav .btn--search:hover {
    color: var(--id-primary-10);
    text-decoration: none;
}

 .mobile-search-cta{
    display: flex;
    justify-content: space-between;
    width: calc(100% - 2rem);
    padding-top: 1rem;
    margin: 0 1rem 1rem 1rem;
    border-top: 1px solid var(--id-primary-20);
}

.mobile-search-cta .btn--search {
    color: var(--id-dark-clr);
}

.brand-nav .btn--light:hover{
    color: white;
    background-color: var(--id-dark-clr);
    border: 1px solid var(--id-dark-clr);
}


@media (min-width: 992px) {
/*
    .brand-nav .navbar-nav .dropdown-menu {
        box-shadow: var(--shadow-sm);
    }
*/
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-nav {
        position: inherit;
    }
}

@media (min-width: 576px){
    .mobile-search-cta{
        display: none;
    }
}

@media (max-width: 1280px) { 
    .brand-nav .navbar__left{
        width: 100%;
        position: relative;
        border-bottom: 1px solid var(--id-primary-50);
    }

    .brand-nav .navbar-nav .dropdown-menu--megamenu {
        width: calc(100% + 1.5rem);
        margin: 0 -.75rem;
    }

    .brand-nav .navbar__right{
        width: calc(100% + 1.5rem);
        background-color: var(--id-primary-clr);
        /*padding: .5rem .75rem;*/
        padding: 0 .75rem;
        margin: 0 -.75rem;
        justify-content: space-between;
    }

    .brand-nav .btn--search {
        color: white;
        text-decoration: none;
        background: transparent;
    }

/*
    .brand-nav .btn--search:hover {
        color: var(--id-secondary-clr);
    }
*/

    .brand-nav .navbar__right .btn, .mobile-search-cta .btn{
        /*
        padding: .25rem .5rem;
        min-height: 24px;
        font-size: .85rem;
        */
        min-height: 24px;
        padding: .25rem 0;
    }

    .brand-nav .navbar__right .btn__span, .mobile-search-cta .btn__span{
        padding: .125rem .35rem;
        font-size: .85rem;
        border-radius: .35rem;
        transition: .2s ease-in-out;
    }

    .navbar__right .btn--light:hover {
        color: var(--id-primary-clr);
    }

    .brand-nav .navbar__right .btn--light, .brand-nav .navbar__right .btn--primary{
        background-color: transparent;
        border: 0px solid transparent;
    }
    
    .brand-nav .navbar__right .btn--light .btn__span{
        background-color: var(--id-light-clr);
        border: 1px solid var(--id-light-clr);
    }

    .brand-nav .navbar__right .btn--primary .btn__span{
        background-color: var(--id-secondary-clr);
        border: 1px solid var(--id-secondary-clr);
    }

    .brand-nav .navbar__right .btn--light:hover .btn__span, .brand-nav .navbar__right .btn--primary:hover .btn__span{
        color: var(--id-primary-clr);
        background-color: white;
        border: 1px solid white;
        box-shadow: var(--shadow-sm);
        transition: .2s ease-in-out;
    }
}

@media (max-width: 992px) {
    .brand-nav  .grid-span--1col, .brand-nav .grid-span--2col, .brand-nav .grid-span--3col, .brand-nav .grid-span--4col, .brand-nav .grid-span--5col, .brand-nav .grid-span--6col, .brand-nav .grid-span--7col, .brand-nav .grid-span--8col, .brand-nav .grid-span--9col, .brand-nav .grid-span--10col, .brand-nav .grid-span--11col, .brand-nav .grid-span--12col{
        grid-column: span 12;
    }

    .brand-nav .col-count-2, .brand-nav .col-count-3{
        column-count: 1;
    }

    .brand-nav .navbar__left{
        width: 100%;
        justify-content: space-between;
    }

    .brand-nav .navbar-collapse {
        flex-direction: column;
        align-items: flex-start;
        width: calc(100% + 1.5rem);
        height: auto;
        margin: 0 -.75rem;
        position: absolute;
        top: 80px;
        background: var(--id-primary-70);
        border-bottom: 1.5px solid var(--id-primary-clr);
        transition: all .2s ease-in-out;
    }

    .white-bottom-overlay{
        width: 100%;
        position: relative;
        transition: all .2s ease-in-out;
    }

    .white-bottom-overlay::after {
        /*content: '';*/
        height: 2rem;
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        background: linear-gradient(rgba(144,23,42,0.0), rgba(144,23,42,1));
        pointer-events: none;
        transition: all .3s ease-in-out;
    }

    .white-bottom-overlay::before {
        /*content: '';*/
        height: 2rem;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        background: linear-gradient(rgba(144,23,42,1), rgba(144,23,42,0));
        pointer-events: none;
        transition: all .2s ease-in-out;
    }

    .brand-nav .navbar-nav{
        display: flex;
        align-items: flex-start;
        height: auto;
        max-height: calc(70vh - 55px);
        overflow-y: auto;
        padding: 0.5rem 0 1.5rem 0;
    }

    .brand-nav .navbar-nav .nav-item{
        width: 100%;
    }

    .brand-nav .navbar-nav .dropdown-menu {
        padding: 1rem 0;
        border-bottom: 1.5px solid transparent;
    }

    .brand-nav .navbar-nav .dropdown-menu--megamenu {
        width: 100%;
        margin: 0;
        background-color: var(--id-primary-80);
/*        border-bottom: 1px solid var(--id-primary-50);*/
    }

    .brand-nav .dropdown-menu--megamenu > * {
        grid-template-columns: 1fr !important;
    }
    
    .brand-nav .dropdown-menu--megamenu .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .dropdown-menu__megamenu-section-header--empty{
        display: none;
    }
    
    .dropdown-menu__megamenu-title {
        color: var(--id-primary-30);
        font-size: 1.125rem;
    }
    
    .brand-nav .dropdown-item {
        color: var(--id-primary-30);
    }
    
    .brand-nav .dropdown-item:hover {
        color: var(--id-primary-10);
    }
    
    .brand-nav .dropdown-item .fill--clr-1 {
        fill: var(--id-primary-40);
    }
    
    .brand-nav .dropdown-item:hover .fill--clr-1 {
        fill: var(--id-primary-10);
    }
}

@media (max-width: 576px){
    .brand-nav .navbar__left{
        border-bottom: 0px solid transparent;
    }
    
    .brand-nav .navbar__right {
        display: none;
    }
    
    .brand-nav .btn--search {
        color: var(--id-primary-30);
    }
}





/* Pub Search Modal Styles */

.modal-backdrop {
    background: linear-gradient(180deg, rgba(2, 10, 16,.97) 10%, rgba(2, 10, 16,.6) 100%);
    z-index: 1290 !important;
}

#searchModal form{
    padding: 0;
    color: white;
    background-color: transparent;
/*
    border: 0px solid rgb(255, 255, 255);
    border-bottom: 1px solid rgb(255, 255, 255);
*/
}

#searchModal .form-control {
    padding: .375rem 0.25rem .375rem 0;
    color: white;
    background-color: transparent;
    border: 0px solid rgb(255, 255, 255);
    border-bottom: 1px solid rgb(255, 255, 255);
    border-radius: 0;
    transition: .2s ease-in-out;
}

#searchModal .form-control:active, #searchModal .form-control:focus-within {
    border-bottom: 1px solid var(--id-secondary-clr);
    color: rgb(255, 255, 255);
    transition: .2s ease-in-out;
}

#searchModal form button{
    border: none;
    background: none;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    min-width: 24px;
    padding: 0;
    margin: 0;
}

#searchModal form svg:hover path {
    fill: var(--id-secondary-clr);
}

#searchModal .btn--advanced-search{
    position: absolute;
    top: 105%;
    left: 0;
    color: white;
    padding-left: 0;
    padding-right: 0;
    opacity: .5;
    text-decoration: underline;
    font-size: .85rem;
}

#searchModal .btn--advanced-search:hover{
    color: var(--id-secondary-clr);
    opacity: 1;
}

#searchModal .btn-close {
    border-radius: 5rem;
    min-width: 24px;
    min-height: 24px;
    padding: 0;
    background-color: transparent;
    border: transparent;
    color: white;
}

#searchModal .btn-close:hover {
    background-color: var(--id-primary-10);
    transition: .2s ease-in-out;
}

#searchModal .btn-close span {
    color: white;
    transition: .2s ease-in-out;
}

#searchModal .btn-close:hover span {
    color: var(--id-primary-clr);
    transition: .2s ease-in-out;
}











/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* Footer Styles */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */

footer {
    background: var(--id-dark-clr);
    color: var(--id-secondary-40);
}

.footer__main, .footer-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 2.5rem 7.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--id-secondary-80);
}

.footer__logo-image {
  width: 100%;
  max-width: 300px;
}

.footer__right{
    display: flex;
    gap: 2rem;
    align-items: flex-start;
/*    flex-wrap: wrap;*/
}

.footer__info{
    flex: 1 1 auto;
}

.footer-nav{
    padding-left: 1.5rem;
    border-left: 1px solid var(--id-secondary-80);
    margin-bottom: 2rem;
}

.footer-nav-list li a {
    color: var(--id-secondary-40);
}

.footer-nav-list li a:hover {
    color: var(--id-secondary-10);
}

.footer__ad{
    flex: 0 0 240px;
    margin: 0 auto;
}

.footer__title{
    color: var(--id-secondary-30);
    font-size: 1.25rem;
}

footer a.btn--outlined-secondary{
    color: var(--id-secondary-40);
}

footer a.btn--outlined-secondary:hover .fill--clr-1, footer .btn--outlined-secondary:hover .fill--clr-1 {
    fill: white;
}


@media (max-width: 1100px) {
    .footer__main{
        grid-template-columns: 1fr;
        grid-gap: 2.5rem 2.5rem;
    }
    
    .footer__logo{
        padding-bottom: 1rem;
        margin-bottom: auto;
/*
        padding-bottom: 2.5rem;
        margin-bottom: auto;
        border-bottom: 1px solid var(--id-secondary-80);        
*/
    }
}

@media (max-width: 770px) {
    .footer__right{
        flex-wrap: wrap;
    }
}

@media (max-width: 468px) {
    .footer-nav {
        padding-left: 0;
        border-left: 0;
        margin-bottom: 1.75rem;
        border-top: 1px solid var(--id-secondary-80); 
    }
}











/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* Homepage Styles */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */

/* homepage updates 12.22.24 */
.hero__grid--3-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.5rem;
    align-items: flex-start;
}

.hero__grid--4-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1.5rem;
    align-items: flex-start;
}

.hero__grid--3-items .hero__primary-article{
    grid-column: 1/3;
}

.hero__grid--4-items .hero__primary-article{
    grid-column: 1/5;
}

.hero__grid--3-items .featured-article{
    overflow: hidden;
    width: 100%;
    height: fit-content;
    align-self: stretch;
    position: relative;
}

.hero__grid--3-items .hero-secondary{
    grid-column: 3/4;
    grid-template-rows: auto auto;
}

.hero__grid--4-items .hero-secondary {
    grid-column: 1/5;
    grid-template-columns: auto auto auto;
}


.hero-secondary-card{
    height: auto;
}

.hero--home .hero-secondary-card .card__title, .hero__bottom .card__title{
    font-size: 1.375rem;
}


.hero--home .hero__bottom .thumb-image{
    aspect-ratio: 1.27/1;
}

.hero--home .hero__bottom .thumb-image img{
    height: 100%;
}



.card__teaser, .card__teaser p, .card__teaser p * {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--id-body-text) !important;
}

.grid--3fr-1fr{grid-template-columns: 3fr 1fr;align-items: flex-start;}


.card--thumb-top {
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
}


.card--thumb-side{
    display: grid;
    grid-template-columns: 21fr 11fr;
    width: 100%;
    background-color: white;
    border: 1px solid #E6E6E6;
}

.hero__grid--4-items .card--thumb-side .thumb-image{
    width: 100%;
    overflow: hidden;
}

.hero__grid--4-items .card--thumb-side .card__copy {
    
}

.hero__grid--3-items .hero-secondary-card {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--id-secondary-30);
}

.hero__grid--3-items .hero-secondary-card:last-child {
    padding-bottom: 0;
    border-bottom: 0px solid var(--id-secondary-30);
}

.section--currentIss-featCats .btn--outlined-secondary{
    color: white;
    border: 1px solid white;
}

.section--currentIss-featCats .btn--outlined-secondary .fill--clr-1{
    fill: rgba(255, 255, 255, .75);
}

.absolute--top-right{
    position: absolute;
    top: -.25rem;
    right: 0;
}



@media (max-width: 1100px) {
    .grid-content-sidebar .hero__primary-article.sticky-top {
        position: sticky;
    }
    
    .section--ce .grid--4col {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 900px) {
    .hero__grid--3-items .hero__primary-article {
        grid-column: 1/4;
    }
    
    .hero__grid--4-items .hero__primary-article {
        grid-column: 1/5;
    }
    
    
    
    .hero__grid--3-items .hero-secondary {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 1rem;
    }
    
    .card--thumb-side{
        grid-template-columns: 1fr;
    }
    
    .hero__grid--4-items .hero-secondary {
        grid-column: 1/5;
        grid-template-columns: auto;
    }
    
    .hero__grid--3-items .hero-secondary, .hero__grid--4-items .hero-secondary {
        margin-top: 1rem;
    }
    
    .hero__grid--4-items .hero-secondary-card{
        display: block;
        min-height: auto;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--id-secondary-30);
    }
    
    .hero__grid--4-items .hero-secondary-card .thumb-image{
        float: right;
        max-width: 300px;
        margin: 0 0 .5rem 1rem;
    }
    
    .hero__grid--4-items .hero-secondary-card .card__copy {
        display: inline;
    }
    
    .hero__grid--4-items .hero-secondary-card .badge-row {
        width: calc(100% - 1rem - 300px);
    }
    
    .hero__grid--3-items .hero-secondary-card:last-child {
        padding-bottom: 3rem;
        border-bottom: 2px solid var(--id-secondary-30);
    }
    
    .hero__bottom .grid--4col{
        grid-template-columns: 1fr !important;
    }
    
    .hero__bottom .card--thumb-top{
        display: block;
        min-height: auto;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--id-secondary-30);
    }
    
    .hero__bottom .card--thumb-top .thumb-image{
        float: right;
        max-width: 300px;
        margin: 0 0 .5rem 1rem;
    }
    
    .hero__bottom .card--thumb-top .card__copy {
        display: inline;
    }
    
    .hero__bottom .card--thumb-top .badge-row {
        width: calc(100% - 1rem - 300px);
    }
    
    
    
    .section--ce .grid--3fr-1fr {
        grid-template-columns: 1fr !important;
    }
    
}

@media (max-width: 768px) {
    .hero__grid--4-items .hero-secondary-card .thumb-image{
        max-width: 150px;
    }
    
    .hero__grid--4-items .hero-secondary-card .badge-row {
        width: calc(100% - 1rem - 150px);
    }
    
    .hero__bottom .card--thumb-top .thumb-image{
        max-width: 150px;
    }
    
    .hero__bottom .card--thumb-top .badge-row {
        width: calc(100% - 1rem - 150px);
    }
    
    .absolute--top-right{
        position: relative;
        top: auto;
        right: auto;
    }

    .section--currentIss-featCats{
        grid-template-columns: 1fr !important;
    }
}
/* homepage updates 12.22.24 */

.card--thumb-top{
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
}

.home-features .grid__sidebar-col{
    
}

.featured-articles{
    align-items: flex-start;
}

.featured-articles__secondary-wrapper{
    
}


.featured-articles__secondary{
    height: 100%;
}

.online-first .card__header{
    padding: 0 .5rem 1rem .5rem;
}

.online-first .card__body, .online-first .card__footer{
    padding: 0;
}

.online-first .list-item {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 1.5rem 0;
    padding: 0 0 1.5rem 0;
    align-items: flex-start;
    overflow: auto;
    gap: 1rem;
}

.online-first .list-item .list-thumb {
    margin: 0;
    order: 1;
    flex: 1 1 200px;
}

.online-first .list-item .card__copy {
    width: auto;
    order: 2;
    margin-bottom: 0;
    padding: 0 .5rem 0 .5rem;
    flex: 2 1 300px;
    overflow: auto;
}

.section--current-issue__grid{
    display: grid;
    grid-template-columns: auto 1fr 300px;
    gap: 3rem;
    align-items: flex-start;
}

@media (max-width: 880px) {
    .home-top-features .grid--9col {
        grid-template-columns: 1fr !important;
    }
    
    .online-first.grid-span--3col, .featured-articles.grid-span--6col{
        grid-column: span 1;
    }
    
    .online-first.sticky-top, .featured-articles.sticky-top{
        position: relative;
        top: 0px;
    }
    
    .featured-articles{
        order: 1;
    }
    
    .online-first{
        order: 2;
    }
    
    .featured-articles__primary.grid-span--6col{
        grid-column: span 6;
    }

    .featured-articles__secondary-wrapper.grid-span--6col{
        grid-column: span 6;
    }
    
    .featured-articles__secondary.grid-span--3col{
        grid-column: span 3;
    }
    
    .online-first .list-item {
        padding: 0 0.5rem 1.5rem 0.5rem;
    }
    
    .online-first .list-item .list-thumb {
        order: 2;
    }
    
    .online-first .list-item .card__copy {
        order: 1;
        padding: 0;
    }

}

@media (max-width: 730px) {
    .featured-articles__primary.grid-span--6col {
        position: relative;
        top: 0;
        grid-column: span 6;
    }
    
    .featured-articles__secondary-wrapper.grid-span--6col {
        position: relative;
        top: 0;
        grid-column: span 6;
    }
    
    .featured-articles__secondary.grid-span--3col {
        grid-column: span 6;
        gap: 1rem;
    }
    
    .featured-articles__secondary .thumb-image {
      order: 2;
    }

    .featured-articles__secondary .card__copy {
        flex: 1 1 300px;
        order: 1;
    }
}

@media (max-width: 587px) {
     .online-first .list-item .list-thumb {
        order: 1;
      }
    .online-first .list-item .card__copy {
        order: 2;
      }
}

@media (max-width: 571px) {
    .featured-articles__secondary .thumb-image {
      order: 1;
    }

    .featured-articles__secondary .card__copy {
        order: 2;
    }
}


@media (max-width: 900px) {
    .section--submit-subscribe .grid-span--6col{
        grid-column: span 12;
    }
}



.section--featured-ed .card__body--2-col, .section--featured-events .card__body--2-col{
    grid-template-columns: 5fr 7fr;
}

@media (max-width: 900px) {
  .section--featured-ed .card__body--2-col, .section--featured-events .card__body--2-col{
        grid-template-columns: 1fr;
    }  
    
    .card__featured-li {
        padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--id-primary-30);
    }
}








.featured-article{
    gap: 0;
}

.featured-article .card__body{
    padding: 2rem;
    background-color: var(--id-secondary-80);
    border-bottom: 3px solid var(--id-secondary-90);
}

.featured-article .card__title a, .featured-article .card__author, .featured-article .additional-info .tag-texts{
    color: white;
}

.featured-article .card__title a:hover{
    color: var(--id-secondary-50);
}

.featured-article .additional-info .tag-texts{
    border-left: 1px solid var(--id-secondary-60);
}

.featured-article .additional-info .fill--clr-1 {
    fill: var(--id-secondary-40);
}

.home-features .recommended-items .card__body{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.featured-article a.badge--outlined-secondary {
    color: white;
    background-color: transparent;
    border: 1px solid var(--id-secondary-50);
}

.featured-article a.badge--outlined-secondary:hover {
    color: var(--id-secondary-40);
    border: 1px solid var(--id-secondary-60);
}

.home-features .recommended-items .list-item{
    border-right: 1px solid var(--id-secondary-40); 
    border-bottom: 1px solid transparent;
    margin-top: 0;
    padding-right: 1.5rem;
}

.home-features .recommended-items .list-item:last-child {
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.card .thumb-image img{
    height: auto;
}

.section--current-issue{

}

.section--current-issue .cover-widget{
    max-width: 300px;
    margin: 0 auto;
}

.list .list-item {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 0;
    margin-top: 0;
}

.list .list-item a {
    color: var(--id-secondary-80);
    text-decoration: none;
}

.list .list-item a:hover {
    color: var(--id-primary-clr);
    text-decoration: underline;
}

.list .list-card{
    padding: 1rem 1.5rem;
    background-color: white;
    border-radius: .35rem;
    border-bottom: 0;
    color: var(--id-primary-clr);
    text-decoration: none;
}

.list .list-card:hover{
    text-decoration: underline;
    box-shadow: var(--shadow-sm);
}

.section--ce .grid__main-col{
    min-width: 0;
}

.section--ce .next_prev_buttons{
    display: none;
}

.section--ce .card--thumb-top{
    padding: 1rem;
    background-color: white;
    border-radius: .35rem;
}

.section--ce .card--thumb-top:hover{
    box-shadow: var(--shadow-sm);
}

.section--ce .list-card{
    align-items: flex-start;
}

.section--ce .list-card .thumb-image{
    max-width: 250px;
}

.section--more-content .list-card .thumb-image {
    max-width: 300px;
}

.absolute--top-right{
    position: absolute;
    top: -.25rem;
    right: 0;
}

@media (max-width: 1100px){
    .grid__main-col.sticky-top{
        position: initial;
        margin-bottom: 1.5rem;
    }

    .section--ce .grid__main-col .grid--3col, .section--ce .grid--4col{
        display: flex;
        overflow-x: scroll;
        width: 100%;
    }
    
    .section--ce .next_prev_buttons{
        display: block;
    }

    .section--ce .card--thumb-top{
        display: flex;
        flex: 0 0 auto;
        width: 90%;
        max-width: 305px;
       flex-wrap: wrap;
    } 

    .absolute--top-right {
      position: relative;
      top: auto;
      right: auto;
    }
    
    .section--more-content .list-card .thumb-image {
        max-width: 200px;
    } 
}

@media (max-width: 1000px) {
    .home-features .grid--1fr-400{
        grid-template-columns: 1fr;
    }

    

    .grid__sidebar-col article{
        flex-direction: row;
    }

    .grid__sidebar-col article .card__body{
        flex: 1 1 auto;
    }

    .grid__sidebar-col article .thumb-image{
        flex: 1 2 auto;
    }

    .section--ce .browse-by-module.sticky-top{
        position: initial;
    }
    
    .section--more-content .grid--1fr-400 {
        grid-template-columns: 1fr;
    }

    .section--more-content .list-card .thumb-image {
        max-width: 300px;
}
}

@media (max-width: 900px) {
    .section--current-issue__grid {
        grid-template-columns: auto 1fr;
    }

    .section--current-issue .browse-by-module{
        grid-column: span 2;
    }

    .browse-by-module .list{
        columns: 2 350px;
    }

    .section--ce .grid--300-1fr{
        grid-template-columns: 1fr;
    }

    .section--ce .card--thumb-top .thumb-image{
        width: auto;
    }
}

@media (max-width: 850px) {
    .home-features .recommended-items .card__body{
        grid-template-columns: 1fr;
    }

    .home-features .recommended-items .list-item{
        border-right: 1px solid transparent; 
        border-bottom: 1px solid var(--id-secondary-40);
        margin-top: 0;
        padding-right: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .home-features .recommended-items .list-item:last-child {
        border-right: 1px solid transparent;
        border-bottom: 1px solid var(--id-secondary-40);
    }


}

@media (max-width: 750px) {
    .section--more-content .list-card .thumb-image {
        max-width: 200px;
    }    
}


@media (max-width: 650px) {
    .section--current-issue__grid {
        grid-template-columns: 1fr;
    }

    .section--current-issue .browse-by-module{
        grid-column: span 1;
    }

    .section--ce .card--thumb-top .thumb-image{
        order: 1;
        width: 100%;
    }

    .section--ce .card--thumb-top .card__body{
        order: 2;
    }
    
    .section--ce .list-card{
        flex-wrap: wrap;
    }

    .section--ce .list-card .card__r-col{
        order: 1;
        width: 100%;
    }

    .section--ce .list-card .card__c-col{
        order: 2;
    }

    .section--ce .list-card .thumb-image {
        max-width: 100%;
    }
    
    .section--more-content .list-card{
        flex-wrap: wrap;
    }

    .section--more-content .list-card .card__r-col{
        order: 1;
        width: 100%;
    }

    .section--more-content .list-card .card__c-col{
        order: 2;
    }

    .section--more-content .list-card .thumb-image {
        max-width: 100%;
    }
}



/* Homepage Additions 11.25.24 : START  */

.home-features .grid--300-1fr-300 .grid__sidebar-col article, .grid__first-col .card.card--stretched-link{
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--id-secondary-30);
}

.home-features .grid--300-1fr-300 .grid__sidebar-col article:last-child, .grid__first-col .card.card--stretched-link:last-child{
    padding-bottom: 0rem;
    border-bottom: 0px solid transparent;
}

.grid--300-1fr-300{
    grid-template-columns: 300px 1fr 300px;
    align-content: flex-start;
}

.grid__first-col .card--thumb-side{
    display: block;
    border-bottom: 1px solid var(--id-secondary-30);
}

.grid__first-col .card.card--stretched-link .thumb-image{
    aspect-ratio: 1.27/1;
}

.grid__first-col .card--thumb-side .card__c-col {
    display: inline;
}

.grid__first-col .card--thumb-side .card__body {
    overflow: initial;
}

.grid__first-col .card--thumb-side .badge-row {
    width: calc(100% - 125px - 1rem);
}

.grid__first-col .card--thumb-side .card__r-col{
    float: right;
    max-width: 125px;
    margin: 0 0 .5rem 1rem;
}

@media (max-width: 1100px) {
    .grid--300-1fr-300{
        grid-template-columns: 300px 1fr;
        row-gap: 2rem !important;
    }
    
    .home-features .grid--300-1fr-300 .grid__sidebar-col {
        grid-column: 1/3;
        border-top: 3px solid var(--id-secondary-30);
        padding-top: 4rem !important;
        
    }
    
    .home-features .grid__sidebar-col .section-title{
        display: none;
    }
    
    .home-features .grid--300-1fr-300 .grid__sidebar-col article {
        flex-direction: row;
        padding-bottom: 2rem;
    }
}

@media (max-width: 850px) {
    .grid--300-1fr-300{
        grid-template-columns: 1fr;
        gap: 4rem !important;
    }
    
    .home-features .grid--300-1fr-300 .grid__main-col {
        grid-column: 1/2;
        order: 1;
    }
    
    .home-features .recommended-items{
        padding-top: 2rem !important;
    }
    
    .home-features .grid--300-1fr-300 .grid__first-col {
        grid-column: 1/2;
        order: 3;
    }
    
    .home-features .grid--300-1fr-300 .grid__sidebar-col {
        grid-column: 1/2;
        order: 2;
        padding-bottom: 4rem !important;
        border-bottom: 3px solid var(--id-secondary-30);
        
    }
    
    .grid__first-col .card--thumb-side, .grid__first-col .card.card--stretched-link{
        display: flex;
        flex-direction: row;
    }

    .grid__first-col .card--thumb-side .card__c-col {
        display: flex;
    }

    .grid__first-col .card--thumb-side .card__body {
        overflow: initial;
    }

    .grid__first-col .card.card--stretched-link .card__body {
        order: 1;
        overflow: auto;
        width: auto;
    }

    .grid__first-col .card--thumb-side .badge-row {
        width: 100%;
    }

    .grid__first-col .card--thumb-side .card__r-col, .grid__first-col .card.card--stretched-link .thumb-image{
        flex: 0 0 250px;
        max-width: 100%;
        order: 2;
    }
}

@media (max-width: 768px) {
    .grid__first-col .card--thumb-side, .grid__first-col .card.card--stretched-link {
        display: block;
    }

    .grid__first-col .card--thumb-side .card__c-col, .grid__first-col .card.card--stretched-link .card__body {
        display: inline;
    }
    
    .grid__first-col .card--thumb-side .card__r-col{
        max-width: 175px;
    }

    .grid__first-col .card.card--stretched-link .thumb-image{
        max-width: 175px;
        float: right;
        margin: 0 0 .5rem 1rem;
    }
    
    .grid__first-col .card--thumb-side .badge-row {
        width: calc(100% - 175px - 1rem);
    }

    .grid__first-col .card.card--stretched-link .badge-row {
        width: calc(100% - 175px - 1rem);
    }
    
    .grid__sidebar-col .card--thumb-bottom .thumb-image {
        float: right;
        max-width: 175px;
        margin: 0 0 .5rem 1rem;
    }
}

 /* Homepage Additions 11.25.24 : END */
















/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* Subpage Styles */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */



/* Article Page Styles */

.article {
    background-color: transparent;
    border-radius: 0.35rem;
    border: 0px solid transparent;
    padding: 0rem;
    position: relative;
}

article p {
    color: var(--id-body-text);
}

.article__header{
    padding-top: 0.5rem;
}

.actions-bar{
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    padding: .5rem 0;
    border-top: 1px solid var(--secondary-clr-1-50);
    overflow-x: auto;
}

.article__aside-actions-bar{
    display: grid;
    grid-gap: .5rem;
}

.article__header .badge-row{
    padding-right: 200px;
}

.article__header-socials{
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: flex-start;
    position: absolute;
    top: 0;
    right: 0;
    margin-bottom: 1rem;
}

.article__header-badges{
    display: flex;
    gap: .5rem
}

.authors-list {
    margin: 1.25rem 0 1.5rem 0;
    line-height: 31px;
    font-size: .75rem;
}

.author {
    margin: 0 .75rem 0 0;
    line-height: inherit;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--id-secondary-60);
}

.author-name, .author-name p, p.author-name, p.author-name.tag-texts {
    color: var(--id-secondary-60);
    font-weight: 400;
    font-size: 0.75rem;
    margin-bottom: auto;
    line-height: 1.2;
    text-transform: none;
}

.article__header .author-name, .article__header a.author-name {
    color: var(--id-secondary-60);
    margin-bottom: 0;
}

.article__header a.author-name:hover {
    color: var(--id-primary-clr);
}

/* Override styles : START */
/* These are overriding styles on umbrella.css. Fix specificity war and then remove these */
.article-container .article-header button.btn--light {
    line-height: 1;
    font-size: .75rem;
    padding: .25rem .5rem;
    color: var(--id-body-text);
    background-color: var(--id-light-clr);
    border: 1px solid var(--id-light-clr);
}

.article-container .article-header button.btn--light:hover {
    color: white;
    background-color: var(--id-primary-clr);
    border: 1px solid var(--id-primary-clr);
}

.article-container .article-header .authors-list button.btn--link {
    line-height: 1;
    font-size: .75rem;
    padding: .25rem .5rem;
    color: var(--id-primary-clr);
    background-color: transparent;
    border: 1px solid transparent;
}

.article-container .article-header .authors-list button.btn--link:hover {
    background-color: transparent;
}
/* Override styles : END */

.article__header-title{
    font-size: 2.75rem;
    font-family: var(--id-header-font);
    font-weight: 700;
    margin-top: .75rem;
}

.article__teaser {
    font-size: 1.25rem;
}

.additional-info-row{
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

@media (max-width: 650px) {
    .article__header .badge-row{
        padding-right: 0;
    }

    .article__header-socials {
        position: relative;
    }
    
    .article-aside, .article__aside {
        padding: 1rem 1.75rem 0 0;
        border-bottom: 1px solid transparent;
    }
}



.article-content h2, .article-content h2.article__title, .bodytext.heading1, .bodytext.subhead1 {
    font-size: 2rem;
    font-family: var(--id-header-font);
    font-weight: 700;
    margin-top: 2.5rem;
}

.article-content h3, .article-content h3.article__title {
    font-size: 1.5rem;
    font-family: var(--id-header-font);
    font-weight: 700;
    margin-top: 1.5rem;
}

.bodytext strong{
    margin-bottom: .5rem;
}

.article-content h4, .article-content h4.article__title {
    font-size: 1.125rem;
    font-family: var(--id-body-font);
    font-weight: 800;
    margin-top: 2rem;
}

.article-content h5, .article-content .article__title h5{
    font-size: 1rem;
    font-family: var(--id-body-font);
    font-weight: 800;
    margin-top: 1.5rem;
}

.article-content p{
    font-size: 1rem;
    margin-bottom: 1rem;
}

.article-content hr{
    margin: 1rem 0;
}

.article__callout {
    border: 1px solid transparent;
    border-top: 1.5px solid var(--id-secondary-40);
    border-bottom: 1.5px solid var(--id-secondary-40);
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0;
    border-radius: 0;
}

.article__callout h2:first-child, .article__callout h3:first-child, .article__callout h4:first-child, .article__callout h5:first-child, .article__callout p:first-child, .article__callout ul:first-child {
  margin-top: 0;
}

.article-content figcaption, .figure__caption, .article__caption {
    font-size: .85rem;
    color: var(--id-secondary-60);
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 0;
    border-bottom: 1px solid var(--id-secondary-30);
}

.article__info-section .article__title {
    padding-top: 2rem;
    border-top: 1px solid var(--id-secondary-30);
    line-height: 1;
    margin-bottom: 1rem;
}

.hscroll, .o-table-container {
    background: 
      linear-gradient(
          to right, 
          rgba(249, 249, 250, 1), 
          rgba(249, 249, 250, 1), 
          rgba(249, 249, 250, 0) 
          calc(20px * 2)), 
        radial-gradient(
            farthest-side at 0 0%, 
            rgba(81,91,100, 0.15), 
            rgba(249, 249, 250, 0)), 
        linear-gradient(
            to left, 
            rgba(249, 249, 250, 1), 
            rgba(249, 249, 250, 1), 
            rgba(249, 249, 250, 0) 
            calc(20px * 2)), 
        radial-gradient(
            farthest-side at 100% 50%, 
            rgba(81,91,100, 0.15), 
            rgba(249, 249, 250, 0)) 
        100%;
    background-color: rgba(249, 249, 250, 1);
    background-repeat: no-repeat;
    background-attachment: local, scroll, local, scroll;
    background-size: 100% 100%, 20px 200%, 100% 100%, 20px 200%;
}


.article__reference-list {
    padding: 0;
    list-style: none;
    
}

/* Not styled yet. Work on when there is extra time */
.article__reference-list--numbers li::before{
    padding: 1.5rem;
    list-style: none;
}

.article__reference-list--numbers li::before{

}
/* Not styled yet. Work on when there is extra time */

.article__reference{
    position: relative;
    overflow: hidden;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--id-secondary-30);
}

.article__reference:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0px solid transparent;
}

.article__reference .article__reference-content{
    margin-bottom: 0;
}

.article__reference-buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 0 .25rem;
    margin: .75rem 0 0 0;
    position: relative;
    left: calc(-1rem - 1px);
    overflow: hidden;
}

.article__reference-button{
    margin: 0 0 0 .5rem;
    padding: 0 0 0 .5rem;
    border-left: 1px solid var(--id-secondary-30);
    line-height: 1;
    break-inside: avoid-column;
    display: inline-flex;
    gap: .5rem;
    align-items: center;
}



.article__author-card {
    display: flex;
    flex-direction: row;
    grid-gap: 1rem;
    min-height: 20px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--id-primary-10);
    border: 0px solid transparent;
}









.additional-links{
    display: flex;
    align-items: center;
    gap: 1rem;
}



.card--more-from .list-thumb--md, .card--more-from .list-thumb.list-thumb--md {
    width: 450px;
}

@media (max-width: 650px) {
    .card--more-from .list-thumb--md, .card--more-from .list-thumb.list-thumb--md {
        width: 200px;
    }
}




.list-item--podcast{
    gap: 1rem;
}

.list-item--podcast .card__copy{
    order: 2;
    overflow: auto;
}

.list-item--podcast .list-thumb {
    order: 1;
    margin: 0 0 1.5rem 0rem;
    transition: .2s ease-in-out;
}

.list-item--podcast .list-thumb {
    aspect-ratio: 1/1;
}

.list-item--podcast .list-thumb img, .list-item--podcast .thumb-image img {
  border-radius: 0.25rem;
  width: 100%;
  aspect-ratio: 1/1;
  transition: .2s ease-in-out;
}



.additional-info-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* overflow: hidden; */
    overflow-x: clip;
    overflow-y: visible;
    position: relative;
    padding-bottom: 1rem;
    gap: 1.5rem 1rem;
}

.pub-date-issue-page-container {
    display: block;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.pub-date-issue-page {
    display: flex;
    flex-wrap: wrap;
    /* font-size: .65rem; */
    font-size: .75rem;
    text-transform: unset;
    letter-spacing: 0rem;
    color: var(--id-secondary-60);
    margin-bottom: 0;
    position: relative;
    left: calc(-1rem - 1px);
    /* overflow: hidden; */
    overflow-x: clip;
    overflow-y: visible;
    gap: 5px 0;
    line-height: 1;
}

.pub-date-issue-page span {
    margin: 2px 0 0 .5rem;
    padding: 1px 0 0 .5rem;
    border-left: 1px solid #CCCCCC;
    font-size: inherit;
    break-inside: avoid-column;
}

.supporter-info{
    display: flex;
    gap: 1rem;
    align-items: center;
}

.supporter-info .supporter-info__label *{
    color: var(--id-secondary-60);
    font-size: .75rem;
}

.supporter-info__logo{
    max-width: 125px;
    max-height: 250px;
}

.pub-date-issue-page{
    align-items: center;
}



.ebook-content{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0 0 0;
    justify-content: center;
}

.ebook-content__left-col{
    flex: 0 1 250px;
}

.ebook-content__center-col{
    flex: 1 1 300px;
}

.ebook-content__right-col{
    flex: 1 1 250px;
}

.ebook-form .btn, .ebook-form #btnSubmit{
    width: 100%;
}

.rule-word-rule{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: .5rem;
    align-items: center;
}

.rule-word-rule p{
    padding-bottom: .125rem;
}



/* Product Page Styles */

 /* General styling for each section container */
.section-container {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background-color: #f9f9f9; /* Light background color for visibility */
    margin-bottom: 24px;
    opacity: 1;
}

/* Product image styling */
.product-image {
    /*width: 500px;
    height: 500px;
    object-fit: cover;*/
    border-radius: 8px;
    display: flex;
    height: 200px;
}

/* Thumbnail styling */
.product-thumbnail {
    width: 58px;
    height: 58px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-right: 8px;
}

/* Section title styling */
/*
.section-title {
    font-family: raleway;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 16px;
}
*/

 /* General Info Container Styling */
.general-info-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 0 0;
}

/* Badge styling */
.category-badge {
    display: flex;
    padding: 0.2625rem 0.4875rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.25rem;
    background: var(--Gray-700, #515B64);
    color: #FFF;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 0.75rem;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* General Info Header Styling */
.product-header {
    color: #212529;
    font-family: "Frank Ruhl Libre", serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.4rem; /* 120% of font size */
}

/* Styling for the product origin text */
.product-origin {
    color: #343A40;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem; /* 150% of font size */
    margin-top: 8px;
}

 /* Product description styling */
.product-description {
    display: flex;
    padding-top: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    align-self: stretch;
}

 /* Styling for the Description header */
.product-description h4 {
    color: #1C2023;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2rem; /* 120% of font size */
    margin: 0;
}

/* Styling for the Description text */
.product-description p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    align-self: stretch;
    overflow: hidden;
    color: #212529;
    text-overflow: ellipsis;
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3125rem; /* 150% of font size */
    margin: 0;
}

 /* List styling */
.section-container ul {
    list-style-type: disc;
    padding-left: 20px;
}

.section-container li {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    margin-bottom: 8px;
}

 /* Styling for items with strong tag (website/contact) */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    margin-top: 10px;
}

.contact-info i {
    margin-right: 8px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
    border: 1px solid #DEE2E6;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    padding: 1rem;

    display: flex;
    /*width: 16.89581rem;*/
    height: 28.9rem;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    gap: 1rem;
}

.product-card:hover {
    box-shadow: 0px 8px 16px 0px #00000026;
    transform: translateY(-5px);
}

/*.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}*/

/*.product-image img {
    width: 270px;
    height: 200px;
    object-fit: cover;
}*/

/*
.product-info .badge {
    background-color: #515B64;
    color: #ffffff;
    border-radius: 5px;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
}
*/

.product-info h5 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.product-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.product-info .product-brand {
    font-style: italic;
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}


.btn--outlined-secondary.dropdown-toggle{
    column-gap: .25rem;
}

.btn--outlined-secondary.dropdown-toggle.show{
    color: white;
    background-color: var(--id-secondary-60);
    border: 1px solid var(--id-secondary-60);
}

.btn--outlined-secondary.dropdown-toggle::after {
    color: var(--id-secondary-clr);
}

.btn--outlined-secondary.dropdown-toggle:hover::after, .btn--outlined-secondary.dropdown-toggle.show::after {
    color: var(--id-secondary-10);
}