body.home:not(.page-template-news) #content {
    padding-bottom: 3rem
}

body.home:not(.page-template-news) #content,
body.home:not(.page-template-news) #content .container {
    padding: 0;
    max-width: unset;
    width: 100%
}

p a[href] {
    word-break: break-word;
}

/* this is the grid system for each frontpage section. it creates a 3-column layout of:

-----[left edge of page]
- flexible left "gutter", no smaller than 6% viewport height, but otherwise stretches to fill available space
-----[inner left edge of frontpage section]
- flexible content area, no smaller than 50% of viewport width, but otherwise stretches until 1200px wide
-----[inner right edge of frontpage section]
- flexible left "gutter", same as left gutter
-----[right edge of page]

and 3 rows of:

-----------------[top of section]
- padding row, 8% of minimum dimension of viewport (height on desktop, width on mobile).
  we use minimum viewport dimension (vmin) so that desktop isn't too bunched, and mobile also doesn't have too much space.
-----------------[top of inner "content" area]
- flexible content area, can take on height of content
-----------------[bottom of inner "content" area]
- padding row, same 8% as described above
-----------------[bottom of section]
.frontpage__section,
.frontpage section {
    display: grid;
    grid-template-columns:  [edge-l]
                            minmax(6vmin,1fr)
                            [inner-l]
                            minmax(50vw,100rem)
                            [inner-r]
                            minmax(6vmin,1fr)
                            [edge-r];
    grid-template-rows:     [section-top]
                            8vmin
                            [inner-top]
                            auto
                            [inner-bottom]
                            8vmin
                            [section-bottom];
}
*/

.frontpage {
    display: grid;
    grid-template-columns: minmax(6vmin,1fr) repeat(20, minmax(auto,5rem)) minmax(6vmin,1fr);
    justify-content: center;
}

.frontpage__section,
.frontpage section {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(6vmin,1fr) minmax(auto,100rem) minmax(6vmin,1fr);
    padding: 8vmin 0;
    text-align: center;
}

/* this adds spacing "columns" on either side of content to ensure full stripe lines around content */

.frontpage section:before,
.frontpage section:after {
    content: '';
}

/* using grid, we want the inner content wrapper to default to the content box,
   from "inner-l" to "inner-r" columns, and from "inner-top" to "inner-bottom" rows.

   formatted the OPPOSITE DIRECTION as margins, borders, etc, TOP / LEFT / BOTTOM / RIGHT.
   think of it as define the top, define the left, define the bottom, then define the right.

.frontpage__section--inner {
    padding: 0;
    grid-area: inner-top / inner-l / inner-bottom / inner-r;
    margin: 0;
    text-align: center;
}
*/

/* fallback padding for some devices that don't support grid, so they don't completely break, like safari 9 on ipad */
@supports not (display: grid) {
    .frontpage__section--inner {
    /*
        max-width: 100rem;
        padding: calc(3rem + 3vw) 3rem;
        padding: calc(1.5rem + 3.5vw) calc(1.25rem + 2vw);
        margin: 0 auto;
    */
        padding: 5rem 6vmin;
    }
}

.frontpage section a {
    text-decoration: none
}

.frontpage section h2, .frontpage section .section-title {
	font-size: calc(1.375rem + 1.375vmin);
    display: inline-block;
    position: relative;
    border-bottom: 4px solid var(--color-gold);
/*    padding: 0 0 calc(0.75rem + 0.125vw);*/
    padding: 0 0 calc(0.25rem + 0.75vmin);
	
	font-family: 'greycliff_semibold';
    line-height: 1;
    margin-bottom: 1.25em;
    letter-spacing: -0.025vmax;
	color: var(--color-blue-med);
}

.frontpage section h2 a, .frontpage section .section-title a {
    position: relative;
    color: var(--color-blue-med);
}

/* side arrow for h2 links */
.frontpage section h2 a:after, .frontpage section .section-title a:after {
    content: '';
    display: inline-block;
    position: absolute;
    height: calc(0.5em - 0.25vmax);
    width: calc(0.5em - 0.25vmax);
    border-top: 0.125em solid;
    border-right: 0.125em solid;
    transform: rotate(45deg);
    top: unset;
    bottom: calc(0.125em + 0.375vmax);
    margin-left: calc(0.125em + 0.375vmax);
}

.frontpage section h2 a:hover, .frontpage section .section-title a:hover {
    border-color: var(--color-blue-light);
    transition: .2s ease all;
}

/* failsafe for two adjacent sections with same background color */
/*
.white + .white .frontpage__section--inner,
.nobg + .nobg .frontpage__section--inner,
.gold + .nobg .frontpage__section--inner,
.nobg + .gold .frontpage__section--inner {
    grid-row-start: 1;
}
*/

.frontpage .white + .white,
.frontpage .ltblue + .ltblue,
.frontpage .blue + .blue,
.frontpage .dkblue + .dkblue,
.frontpage .nobg + .nobg,
.frontpage .gold + .nobg,
.frontpage .nobg + .gold {
    padding-top: 0;
}

/* failsafe for non-grid */
@supports not (display: grid) {
	.white + .white .frontpage__section--inner,
	.ltblue + .ltblue .frontpage__section--inner,
	.blue + .blue .frontpage__section--inner,
	.dkblue + .dkblue .frontpage__section--inner,
	.nobg + .nobg .frontpage__section--inner,
	.gold + .nobg .frontpage__section--inner,
	.nobg + .gold .frontpage__section--inner {
		padding-top: 0;
	}
}

section.blue {
    background: var(--color-blue-med)
}

section.dkblue {
    background: var(--color-blue-dark)
}

section.ltblue {
/*    background: var(--color-blue-light);*/
	background: #c7e3ff;
}

section.white {
    background: #fff;
    color: var(--color-blue-med);
}

section.blue,
section.blue h2,
section.blue h2 a,
section.blue .section-title,
section.blue .section-title a,
section.blue h3,
section.blue h3 a,
section.dkblue h2,
section.dkblue h2 a,
section.dkblue .section-title,
section.dkblue .section-title a
/*
section.ltblue,
section.ltblue h2,
section.ltblue h2 a 
*/
{
    color: #fff
}
section.ltblue,
section.ltblue h2,
section.ltblue h2 a,
section.ltblue .section-title,
section.ltblue .section-title a {
	color: var(--color-blue-dark);
}

section.nobg h3,
section.nobg h3 a {
    color: var(--color-blue-med);
    margin-bottom: 0
}

section.nobg h2,
section.gold h2,
section.nobg .section-title,
section.gold .section-title {
    color: var(--color-blue-med);
    border-bottom: 4px solid var(--color-gold);
}

section.gold,
section.gold h3 a {
    color: var(--color-blue-dark);
}

section.blue .linea-svg-inner {
    background: var(--color-blue-light);
}
section.blue .slick-arrow .linea-svg-inner {
    background: transparent;
}

section.blue .linea-svg svg {
    stroke: #fff
}

section.white h3,
section.white h3 a {
    color: var(--color-blue-med);
}

/*
section.half {
    width: 46%;
    display: inline-block;
    vertical-align: top
}

section.left {
    margin-right: 4%
}

section.right {
    margin-left: 4%
}
*/





ul.overview-links {
    line-height: 27.5px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'greycliff_semibold';
    letter-spacing: -.25px
}

ul.overview-links li:before {
    content: "\2022";
    margin-right: 1rem
}







/* section (2x2) ||||||||||||||||||||||||||||||||||||||||||||||| */

.section-2x .items {
    padding: 0 1rem;
    max-width: 72rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vmin 4vmax;
    margin: 4vmin auto;
    margin: 0 auto;
	  color: var(--color-blue-dark);
    text-align: left;
}

.section-2x.wide .items {
    padding: 0;
    max-width: 72rem;
    margin: 0 auto;
    grid-template-columns: auto;
}

.section-2x .item {
    margin: 0;
    display: flex;
    padding: 0;
}

.section-2x.wide .item {
    width: 100%;
    padding: calc(1rem + 3vmin);
    border-radius: 2rem;
}

.section-2x.wide .item {
    background: var(--color-gray-light);
}

.section-2x.nobg .item {
	background: #fff;
}

/* this gives the gold warning box */
.section-2x.gold .item {
    background: var(--color-gold-pale);
}

.section-2x .item.description {
    width: 100%;
    grid-column: span 2;
}

.section-2x .item.description .item-text {
    flex-basis: 100%;
}

.section-2x .item-img,
.section-2x .item-icon {
    margin-right: calc(1rem + 3vmin);
}

.section-2x .item-img img {
    display: block;
	max-height: 24vmax;
}

.section-2x .description a,
.section-2x p a {
    text-decoration: underline;
    font-family: 'greycliff_semibold';
    color: var(--color-blue-med);
}

.section-2x .item-desc p:last-of-type {
    margin: 0;
}

.testimonial .linea-svg-inner,
.section-2x .linea-svg-inner {
    background: var(--color-gray-light);
    border-radius: 10rem;
    display: flex;
    padding: 1rem;
    width: calc(4rem + 2vmin) !important;
    height: auto;
}

.section-2x.wide.white .linea-svg-inner {
    background: #fff;
}

.section-2x h3 a {
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.125rem;
    line-height: 1.5;
}

/* this center-aligns the titles if there is no description present */
.section-2x .no-desc h3 {
    margin: 0;
}

.section-2x .no-desc {
    align-self: center;
}

.section-2x.gold {
    background: transparent
}

.section-2x.gold .linea-svg-inner {
    background: var(--color-blue-dark)
}

.section-2x.gold .item a {
    color: inherit
}

.section-2x.gold a:hover {
    color: var(--color-blue-med)
}

.section-2x.gold .item-desc p {
    font-family: 'greycliff_semibold';
    color: var(--color-blue-dark)
}

/* section (information) ||||||||||||||||||||||||||||||||||||||||||||||| */

.info-section .items {
	padding: 0 1rem;
	max-width: 72rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6vmin 4vmax;
	margin: 4vmin auto;
	margin: 0 auto;
	color: var(--color-blue-dark);
	text-align: left;
}

.info-section.wide .items {
    padding: 0;
    max-width: 72rem;
    margin: 0 auto;
/*    grid-template-columns: auto;*/
}

.info-section .item {
    margin: 0;
    display: flex;
    padding: 0;
}

.info-section.wide .item {
    width: 100%;
    padding: calc(1rem + 3vmin);
    border-radius: 2rem;
}
.info-section.wide.nobg.text-ltgray .item,
.info-section.wide.white.text-white .item,
.info-section.wide.ltblue.text-ltblue .item,
.info-section.wide.blue.text-blue .item,
.info-section.wide.dkblue.text-dkblue .item {
    padding: 0;
}

.info-section.wide .item {
    background: var(--color-gray-light);
}

.info-section.nobg .item {
	background: #fff;
}

.info-section.text-white .item {
	background: #fff;
}
.info-section.text-ltgray .item {
	background: var(--color-gray-light);
}
.info-section.text-pgold .item {
	background: var(--color-gold-pale);
	color: var(--color-blue-dark);
}
.info-section.text-ltblue .item {
	background: #c7e3ff;
	color: var(--color-blue-dark);
}
.info-section.text-blue .item {
	background: var(--color-blue-med);
	color: white;
}
.info-section.text-dkblue .item {
	background: var(--color-blue-dark);
	color: white;
}



.info-section .item-title {
	margin-bottom: 1.25em;
}
.info-section .item-title a,
.info-section .item-title span {
	font-size: calc(1.25rem + 0.5vmin);
	font-family: 'greycliff_semibold';
    color: var(--color-blue-med);
    letter-spacing: -0.025vmax;
/*	border-bottom: 2px solid var(--color-gold);*/
    padding-bottom: 0.125rem;
    line-height: 1.5;
}
.info-section .item-title a{
	border-bottom: 2px solid var(--color-gold);
}
.info-section.text-ltblue .item-title a, 
.info-section.text-ltblue .item-title span {
	color: var(--color-blue-dark);
}
.info-section.text-blue .item-title a,
.info-section.text-blue .item-title span,
.info-section.text-dkblue .item-title a,
.info-section.text-dkblue .item-title span {
	color: white;
}
.info-section.text-blue .item-desc a,
.info-section.text-dkblue .item-desc a {
	color: var(--color-gold);
} 
.info-section.text-pgold .item-desc a {
	color: var(--color-blue-dark);
}
.info-section .item-desc a:hover {
	color: var(--color-blue-light);
}
/* this gives the gold warning box */
.info-section.gold .item {
    background: var(--color-gold-pale);
}

.info-section .item.description,
.info-section .item.full {
    width: 100%;
    grid-column: span 2;
}

.info-section .item.description .item-text,
.info-section .item.full .item-text {
    flex-basis: 100%;
}

.info-section .item-img,
.info-section .item-icon {
    margin-right: calc(1rem + 3vmin);
}

.info-section .item.imgcenter {
    align-items: center;
}

.info-section .item-img img {
    display: block;
	max-height: 24vmax;
	border-radius: 0.5rem;
}

.info-section .description a,
.info-section p a {
    text-decoration: underline;
    font-family: 'greycliff_semibold';
    color: var(--color-blue-med);
}

.info-section .item-desc p:last-of-type {
    margin: 0;
}
.info-section .item-desc ul {
	background: #e6f2fe;
    margin: 1.75rem 0;
    padding: 0.25rem 4rem;
    border-radius: 1rem;
    list-style-type: disc;
}
.info-section .item-desc ul > li::marker {
	color: var(--color-blue-dark); 
}
.info-section.text-dkblue .item-desc ul > li::marker {
	color: var(--color-blue-light); 
}
.info-section.text-ltgray .item-desc ul {
	background: var(--color-gold-pale);
}
.info-section.text-pgold .item-desc ul,
.info-section.text-ltblue .item-desc ul,
.info-section.text-blue .item-desc ul,
.info-section.text-dkblue .item-desc ul {
	background: white;
}
.info-section.text-white .item-desc ul a {
	color: var(--color-blue-dark);
	text-decoration: underline;
}
.info-section.text-blue .item-desc ul a,
.info-section.text-dkblue .item-desc ul a {
	color: var(--color-blue-dark);
}
.info-section.text-white .item-desc ul a:hover,
.info-section.text-blue .item-desc ul a:hover,
.info-section.text-dkblue .item-desc ul a:hover {
	color: var(--color-blue-light);
}
.info-section .item-desc li {
	margin: 1.25em 0;
    position: relative;
    letter-spacing: -0.025vmax;
}

.info-section .linea-svg-inner {
    background: var(--color-gray-light);
    border-radius: 10rem;
    display: flex;
    padding: 1rem;
    width: calc(4rem + 2vmin) !important;
    height: auto;
}
.info-section.wide.white .linea-svg-inner {
/*    background: #fff;*/
}
.info-section.text-pgold .linea-svg-inner {
	background: var(--color-blue-dark);
}
.info-section.text-ltgray .linea-svg-inner, 
.info-section.text-ltblue .linea-svg-inner,
.info-section.text-blue .linea-svg-inner,
.info-section.text-dkblue .linea-svg-inner,
.info-section.text-pgold .ud_circle .linea-svg-inner{
	background: #fff;
}

.info-section.text-dkblue .linea-svg-inner {
	background: var(--color-gold);
}
.info-section.text-pgold .linea-svg svg {
	stroke: white;
}
.info-section.text-dkblue .linea-svg svg {
	stroke: var(--color-blue-dark);
}
.info-section.text-ltgray .linea-svg svg, 
.info-section.text-ltblue .linea-svg svg,
.info-section.text-blue .linea-svg svg {
	stroke: var(--color-blue-med);
}
.info-section.text-white .linea-svg-inner {
	background: var(--color-gray-light);
}
.info-section.text-white .linea-svg svg {
	stroke: var(--color-blue-med);
}


.info-section h3 a {
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.125rem;
    line-height: 1.5;
}

/* this center-aligns the titles if there is no description present */
.info-section .no-desc h3 {
    margin: 0;
}

.info-section .no-desc {
    align-self: center;
}

.info-section.gold {
    background: transparent
}

.info-section.gold .linea-svg-inner {
    background: var(--color-blue-dark)
}

.info-section.gold .item a {
    color: inherit
}

.info-section.gold a:hover {
    color: var(--color-blue-med)
}

.info-section.gold .item-desc p {
    font-family: 'greycliff_semibold';
    color: var(--color-blue-dark)
}





/* section (action buttons / lozenges ) ||||||||||||||||||||||||||||||||||||||||||||||| */

section.action {
    text-align: center;
}

section:first-of-type.action {
    padding: 5vmin 0;
/*
    grid-template-rows:     [section-top]
                            6vmin
                            [inner-top]
                            auto
                            [inner-bottom]
                            6vmin
                            [section-bottom];
*/
}

.action ul {
    display: flex;
    justify-content: center;
    margin: 0 auto
}

.action-button {
    margin: 0.75rem;
    font-size: 1.5rem;
    background: var(--color-blue-med);
    border-radius: 3rem;
    padding: 0;
}

.action-button.btn:hover {
    background: var(--color-blue-light)
}

.dkblue .action-button, .blue .action-button {
	background: var(--color-gold);
}
.dkblue .action-button a, .blue .action-button a {
	color: var(--color-blue-dark);
}
.dkblue .action-button a:hover, .blue .action-button a:hover {
	color: #fff;
}

.action.bar .action-button a {
    height: 5rem;
}

.action-button .attach-size {
    font-size: .8em;
    display: block
}

.action-button a {
    color: #fff;
    font-weight: 500;
    font-family: 'greycliff_semibold';
    line-height: 1.75rem;
    line-height: calc(1.5rem + 0.25vw);
    border-radius: 6rem;
    letter-spacing: 0;
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 2.25rem;
}






/* section (events + news) ||||||||||||||||||||||||||||||||||||||||||||||| */

/* events (and other potential double-wide sections) gets its own internal grid!
   since it sometimes shares with news, but sometimes not,
   we need to account for both. this sets up a two-column system that keeps a gap between the two sections,
   and also gives them a width-limit so that if they wrap to the next line, they still keep that same distance
   between them. neat! */

section.double .frontpage__section--inner {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(45%,1fr));
    grid-gap: 10vmin;
    padding: 0;
/*    grid-area: inner-top / inner-l / inner-bottom / inner-r; */
    margin: 0;
}

/* fallback for non-grid devices */
@supports not (display: grid) {
    section.double .frontpage__section--inner {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        min-width: 72rem;
    }
    .side-by-side {
        flex-basis: 50%;
        padding: 0 3rem;
        flex-grow: 1;
        max-width: 72rem;
    }
}

section.events a {
    color: var(--color-blue-med)
}

section.events .events-more {
    display: none;
}

.side-by-side {
    max-width: 60rem;
    justify-self: center;
}

.frontpage .news .news-date {
    background: #fff;
    border-radius: 1rem 0 0 1rem;
    position: relative;
    overflow: hidden;
}

.frontpage .news .news-date:after {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg,transparent,#fff);
    width: 50%;
    right: 0;
    top: 0;
}





/* section (featured) ||||||||||||||||||||||||||||||||||||||||||||||| */

.featured .items {
	display: flex;
    padding: calc(1rem + 3vw);
    background: #fff;
    border-radius: 2rem;
    margin: 0 calc(1rem + 3vw);
	align-items: center;
}
.white.featured .items {
    background: #c7e3ff;
	background: #e4f2ff;
}

.featured .item-image {
	position: relative;
	transition: 0.3s ease all;
}

.featured .item-image img {
    height: auto;
    border-radius: 1rem;
}

.featured .item-meta {
    padding-left: calc(1rem + 3vw);
    color: var(--color-blue-dark)
}
.featured .item-title {
	font-family: 'greycliff_semibold';
	font-size: calc(1.25rem + 0.5vmin);
    color: var(--color-blue-med);
    line-height: 1;
    margin-bottom: 1.25em;
    letter-spacing: -0.025vmax;
}
.featured .item-desc {
    margin-bottom: calc(1rem + 1.5vw);
    text-align: left;
}
.white.featured .item-title h3, .white.featured .item-title {
	color: var(--color-blue-dark);
}
.white.featured .item-desc {
	color: black;
}







/* section (flexible slider) ||||||||||||||||||||||||||||||||||||||||||||||| */
.button.db-button:last-child {
    margin-bottom: 0;
}
/*
section.carousel {
    padding: 6rem calc((100vw - 1200px)/2) 7rem;
    padding: 0;
}
*/
.carousel .slick-track {
	display: flex;
}
.card {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.img{}
.slider-inner, .slider-inner > a {
	display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.no-flex-grow {
    flex-grow: 0 !important;
}
.carousel .slick-slide {
    margin: 0 1.25rem;
    border-radius: 1.5rem;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
    box-shadow: none;
    background: #fff;
	
	display: flex !important;
	flex-direction: column;
}
.carousel .slick-slide .button.db-button {
/*    margin-bottom: 1rem;*/
}
.slider-inner > a:focus-visible {
	outline: 5px solid var(--color-gold) !important;
    border: 5px solid var(--color-gold) !important;
}

.carousel .slick-slide.view-all {
    background: transparent;
    box-shadow: none
}

.carousel .view-all svg {
    width: 200px;
    height: auto
}

/* for sliders that end up with a single slide by accident */
.carousel[data-slides-shown="1"] .slick-slide {
    opacity: 1;
    transform: none;
    margin: 0 auto;
    float: none;
    max-width: 60rem;
    width: 100% !important;
}

.carousel[data-slides-shown="5"] .slider-image {
    max-height: 220px;
    max-height: calc(14rem + 10vmin);
/*    max-height: 40vh; */
    overflow: hidden;
    position: relative;
	
/*
	display: flex;
    aspect-ratio: auto 4/4;
    overflow: hidden;
    align-items: center;
    border-radius: 1rem;
*/
}

/* fade overlay for chopped slide images */
.carousel[data-slides-shown="5"] .slider-image:after {
    content: '.';
    position: absolute;
    bottom: 0;
    display: block;
    background: linear-gradient(transparent, #fff);
    width: 100%;
    height: 75%;
  	opacity: 0;
}

.carousel .slider-title {
    padding: 1.5rem 4.5rem;
/*    padding: 1.75rem calc(0.75rem + 0.25vw);*/
    padding: 1.2rem calc(0.75rem + 0.25vw);
    font-weight: 500;
    font-family: 'greycliff_semibold';
    letter-spacing: -.025vmax;
    line-height: 1.625rem;
    line-height: 2rem;
    font-size: 1.5rem;
    background: #fff;
    color: var(--color-blue-med);
    word-break: break-word;
	
	flex-grow: 1;
	display: flex;
    flex-direction: column;
    justify-content: center;
	
/*
	display: flex;
    aspect-ratio: auto 3/1;
    overflow: hidden;
    align-items: center;
    border-radius: 1rem;
*/
}
.flexibleslide-desc p {
	font-size: inherit;
	line-height: inherit;
}
.flexibleslide-desc p:last-of-type {
	margin: 0;
}

:not(.flexibleslide-notitle) + .flexibleslide-desc {
    background: #c7e3ff;
	background: var(--color-gold-pale);
    color: var(--color-blue-dark);
    font-weight: 500;
    font-family: 'greycliff_semibold';
    letter-spacing: -.25px;
    font-size: 13px;
    line-height: 15px;
    padding: 1rem 1rem
}

:not(.flexibleslide-notitle) + .flexibleslide-desc a {
    color: #fff;
    text-decoration: underline!important
}

.flexibleslide-notitle + .flexibleslide-desc {
    padding: 2.5rem 3rem;
    text-align: left
}
.flexibleslide-notitle + .flexibleslide-desc h3 {
	margin-bottom: 1.25em;
    color: var(--color-blue-dark);
    border-bottom-color: var(--color-gold);
    border-bottom-width: 2px;
    border-bottom-style: solid;
    padding-bottom: .5rem;
}

.flexibleslide-notitle + .flexibleslide-desc ul li:before {
    content: '\2022';
    padding-right: 0.75rem;
    font-size: 2rem;
    color: var(--color-blue-med);
}

.flexibleslide-notitle + .flexibleslide-desc a {
    color: var(--color-blue-med);
    font-family: 'greycliff_semibold';
}

.flexibleslide-notitle + .flexibleslide-desc a:hover {
    color: var(--color-blue-dark);
    text-decoration: underline
}







/* section (inline) ||||||||||||||||||||||||||||||||||||||||||||||| */

.inline .items {
    padding: 0;
    display: flex;
    width: 100%;
    justify-content: center;
}

.inline .item {
    text-align: center;
    padding: 0 3rem;
    flex-basis: 25%;
}

.inline .item a,
.inline .item a:focus {
    display: block;
    text-decoration: none
}

.inline .item-title {
	font-size: calc(1.25rem + 0.5vmin);
	font-family: 'greycliff_semibold';
	color: var(--color-blue-med);
	line-height: 1;
	letter-spacing: -0.025vmax;
	margin: 0;
}
.inline.ltblue .item-title {
	color: var(--color-blue-dark);
}
.inline.blue .item-title, .inline.dkblue .item-title {
	color: white;
}

.inline .item:focus .item-title,
.inline .item:hover .item-title {
    text-decoration: underline
}

.inline .item-icon {
    padding: 0 0 1.5rem
}

.inline .linea-svg-inner {
    background: var(--color-blue-light);
    border-radius: 7rem;
    display: flex;
    padding: calc(1.125rem + 0.75vw);
    box-sizing: border-box;
    width: calc(5.5rem + 2.75vw) !important;
}
.inline .dkblue .linea-svg-inner {
	background: var(--color-blue-dark);
}
.inline .dkblue .linea-svg-inner:hover, .inline .blue .linea-svg-inner:hover {
	background: var(--color-blue-light);
}
.inline .blue .linea-svg-inner {
	background: var(--color-blue-med);
}
.inline .ltblue .linea-svg-inner {
	background: var(--color-blue-light);
}

.inline.blue .linea-svg-inner {
    background: var(--color-blue-light)
}

.inline a:focus .linea-svg-inner,
.inline a:hover .linea-svg-inner {
/*    background: rgba(52,116,177,1);*/
	background: #00a0df;
}

.inline a:focus .linea-svg-inner svg,
.inline a:hover .linea-svg-inner svg {
    stroke: #fff
}

.inline.blue a:focus .linea-svg-inner,
.inline.blue a:hover .linea-svg-inner,
.inline.dkblue a:focus .linea-svg-inner,
.inline.dkblue a:hover .linea-svg-inner {
    background: var(--color-gold);
}

.inline.blue a:hover .linea-svg-inner svg,
.inline.dkblue a:hover .linea-svg-inner svg{
    stroke: var(--color-blue-dark)
}

.inline .linea-svg svg {
    padding: 0.5rem
}







/* section (spotlight) ||||||||||||||||||||||||||||||||||||||||||||||| */

.spotlight-inner {
    transition: ease 0.4s all;
    position: relative
}

.spotlight-wrapper,.spotlight-gradients {
    position: relative;
    width: 100%;
    /* max-height: 410px */
}

.spotlight-inner>a {
    width: 100%;
    height: 100%;
    display: block
}

.spotlight-image {
    display: block;
    margin: 0 auto;
  	width: 100% !important;
    max-width: calc(100% - 12rem);
    max-width: 60rem;
    /* max-height: 405px; */
    transition: 0.4s ease all;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
    margin-bottom: 4px;
}
.spotlight-image a:focus-visible {
   	display: block;
    width: 100%;
    height: 100%;
    border: 5px solid var(--color-gold);
}
/*
.slick-arrow .linea-svg svg:focus-visible {
	stroke-width: 10px !important;
	stroke: gold;
}
*/

.spotlight-img {
    width: 100%;
    height: auto;
    display: block;
}

.spotlight-slide.slick-active {
    opacity: .35
}

.spotlight-slide.slick-current {
    opacity: 1
}

.expand-wrap {
    width: 100%;
    position: absolute;
    bottom: 3rem
}

.hide-overlay {
    display: none
}

.spotlight-overlay {
    background: #fff;
    padding: 2rem 4rem;
    margin: 0 25%;
    border-radius: 1.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
    text-align: center;
    letter-spacing: -.25px
}

.spotlight-overlay h3 {
    margin: 0;
}
.spotlight-overlay .spot-title {
    font-size: calc(1.25rem + 0.5vmin);
}

.spotlight-overlay a {
    color: var(--color-blue-med) !important;
}

.spotlight-overlay.open {
    padding: 2rem 4rem
}

.spotlight-open {
    display: none
}

.spotlight-open div {
    transition: all 0.4s ease
}

.spotlight-subtitle {
    text-align: center;
    margin-top: 2rem;
}

.spotlight-subtitle .meta-separator {
    padding: 0 7px
}

.spotlight-subtitle .meta-venue {
    display: block
}

.spotlight-description {
    margin-top: 1.375rem;
}

.spotlight-description p {
    line-height: 1.5rem;
    color: #000;
    margin-bottom: 0
}

.spotlight button.expand {
    font-size: 0;
    position: absolute;
    top: -1.5rem;
    right: 50%;
    transform: translateX(50%);
    width: 3rem;
    height: 3rem;
    background: none;
    border: 0;
    cursor: pointer
}

.spotlight .expand svg {
    position: absolute;
    top: 0;
    left: 0
}

.exhibit-info.open .expand-plus,.spotlight-overlay.open .expand-plus {
    display: none
}

.spotlight button:hover svg circle {
    fill: var(--color-blue-light)
}

/* fix for one solitary spotlight image (like ILL map) showing up off-center */
.spotlight-slides[data-slides-total='1'] .spotlight-slide {
    width: auto !important;
}

.slick-dots li {
    opacity: .35;
    padding: 6px!important
}

.slick-dots li.slick-active {
    opacity: 1
}

.slick-dots .dot {
    display: block;
    background: var(--color-blue-med);
    height: 100%;
    width: 100%;
    border-radius: 100%
}

.dkblue .slick-dots .dot,
.blue .slick-dots .dot {
    background: #dddfe0
}

.dkblue .slick-arrow svg {
    stroke: #dddfe0
}







/* section (testimonials) ||||||||||||||||||||||||||||||||||||||||||||||| */

.quote-blurb {
    font-style: italic;
}

.quote-author {
    text-align: right;
    justify-content: flex-end;
}

.quote {
    display: flex;
    max-width: 72rem;
    margin: calc(1rem + 1vmin) auto;
    align-items: flex-start;
    position: relative;
    text-align: left;
}

.quote__icon {
    margin: 0 auto calc(1rem + 2vmin);
}

.quote__icon polygon:first-of-type {
    fill: var(--color-gold-pale);
}

.testimonial .linea-svg-inner {
    background: #fff;
    border: 0.25rem solid var(--color-gold);
}
blockquote span, blockquote .quote-by {
	border-radius: 0.2rem;
}






/* section (video embed) ||||||||||||||||||||||||||||||||||||||||||||||| */
.frontpage section.embed.full-width {
    padding: 0px;
    grid-template-columns: auto;
}

.frontpage section.embed .frontpage__section--inner {
    max-width: 100rem;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.frontpage section.embed.full-width .frontpage__section--inner {
    max-width: none;
}

.frontpage section.embed.full-width h2 {
    margin-top: 8vmin;
}

.frontpage section.embed .video {
    position: relative;
    width: 100%;
    /* padding-bottom: 56.5%; */
    border-radius: 1.5rem;
    overflow: hidden;
}

.frontpage section.embed.full-width .video {
    border-radius: 0px;
    padding-bottom: 0px;
}

.frontpage section.embed .video iframe {
    border-radius: 1.5rem;
/*    position: absolute;
    width: 100%;
    height: 100%;
    left: 0
*/
}

.frontpage section.embed.full-width .video iframe {
    border-radius: 0px;
    height: inherit;
}




/* ================================================================================ */
/*                                                          max-width: 1366         */
/* ================================================================================ */

@media screen and (max-width: 1366px) {

    [data-viewport=desktop] .frontpage .carousel,
    [data-viewport=desktop] .frontpage section:not(.widget-left) + .spotlight {
        grid-template-columns: minmax(6vmin,1fr) minmax(auto,88vw) minmax(6vmin,1fr);
    }

}





/* ================================================================================ */
/*         min-width: 1200                                                          */
/* ================================================================================ */

/* possible styling for desktop side-by-side spotlight and action buttons. add "side-spot" class to .frontpage */

@media screen and (min-width:1200px) {

  section.widget-left {
      /* background: cyan; */
      grid-column: 2 / span 8;
      grid-template-columns: 100%;
      width: 78%;
  }

  section.widget-left + section {
      grid-column: span 12 / -2;
      /* background: coral; */
      grid-template-columns: 100%;
      align-content: start;
  }

  section.widget-left + section .frontpage__section--inner {
      /* grid-column: 1 / -1; */
  }

  section.grid-half {
      /* background: cyan; */
      grid-column: 2 / span 9;
      grid-template-columns: 100%;
      align-content: start;
  }

  .frontpage section.grid-half + .grid-half {
      grid-column: span 9 / -2;
      /* background: coral; */
      grid-template-columns: 100%;
      padding-top: 8vmin;
  }

  section.widget-left + section .slick-slider,
  .widget-right .slick-slider {
      margin: 0;
  }

  section.widget-left + section .slick-dots,
  .widget-right .slick-dots {
      bottom: 1rem;
      bottom: -2.25rem;
  }

/*
    .frontpage .carousel,
    .frontpage .spotlight {
        text-align: center;
        grid-template-columns: 100%;
    }

    .frontpage.side-widget,
    .frontpage.side-spot {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .side-widget section,
    .side-spot section {
        flex-basis: 100%;
    }

    .side-widget .spotlight .frontpage__section--inner,
    .side-spot .spotlight .frontpage__section--inner {
        padding-left: 0;
        padding-right: 0;
    }

    .side-widget .action:first-of-type,
    .side-spot .action:first-of-type {
        flex-basis: 33rem;
    }

    .side-spot .action:first-of-type ul {
        flex-direction: column;
        height: 410px;
        justify-content: space-between;
    }

    .side-spot .action-button a {
        padding: 2rem 3.25rem;
    }

    .side-widget .spotlight,
    .side-spot .spotlight {
        max-width: 67rem;
    }

    .switch .spotlight {
        order: -1;
    }

    .side-by-side {
        padding: 0;
    }

    .side-by-side + .side-by-side {
        margin-left: calc(2.5rem + 2.5vw);
    }

    section.events .frontpage__section--inner {
        flex-wrap: nowrap;
    }

    */
}





/* ================================================================================ */
/*                                                          max-width: 1200         */
/* ================================================================================ */

@media screen and (max-width: 1200px) {

    .frontpage .carousel,
    .frontpage .spotlight {
        grid-template-columns: minmax(6vmin,1fr) minmax(auto,88vw) minmax(6vmin,1fr);
    }

    [data-viewport=desktop] .frontpage .grid-half {
        grid-column: 4 / -4;
    }

}




/* ================================================================================ */
/*                                                          max-width: 1024         */
/* ================================================================================ */

@media screen and (max-width: 1024px) {

    .action ul {
        flex-wrap: wrap;
    }

    .inline .item {
        padding: 0 1rem;
    }

    section.db-content,
    section.db-bottom-content {
        padding: 2.5rem;
        padding-bottom: 0
    }

    .frontpage .carousel,
    .frontpage .spotlight {
        display: block;
        width: 100%;
    }

    .carousel:not([data-slides-shown='1']) .frontpage__section--inner,
    .spotlight .frontpage__section--inner {
/*        grid-column-start: 	edge-l;
    		grid-column-end:	edge-r;
*/
        grid-column: 1 / -1;
  	}

    @supports not (display: grid) {
      .carousel:not([data-slides-shown='1']) .frontpage__section--inner,
      .spotlight .frontpage__section--inner {
          padding-left: 	0;
          padding-right:  0;
      }
    }

    .carousel[data-slides-shown="5"] .slider-image {
        max-height: 40vh;
    }

    .carousel .slider-slides {
        padding: 0;
    }

    .slick-slider .slick-slide,
    .carousel .slick-slide {
        margin: 0 0.5vmin;
        transition: 0.3s ease all;
    }

    .spotlight .slick-slide:not(.slick-center),
    .carousel:not([data-slides-shown='1']) .slick-slide:not(.slick-center) {
        opacity: 0.5;
        transform: scale(0.9);
    }

    .slick-arrow.slick-prev,
    .slick-arrow.slick-next {
        width: 5.5rem
    }

}





/* ================================================================================ */
/*         min-width: 1024                                                          */
/* ================================================================================ */

@media screen and (min-width: 1024px) {

    .slick-slider .slick-prev {
        left: 0;
        left: -6vmin;
    }

    .slick-slider .slick-next {
        right: 0;
        right: -6vmin;
    }

}




/* ================================================================================ */
/*         min-width: 768                                                           */
/* ================================================================================ */

@media screen and (min-width: 768px) {

    body.home:not(.page-template-news) #sidebar,
    .frontpage-submenu {
        display: none !important
    }

    .carousel.no-arrows .slider-slides {
        padding: 0
    }

    .spotlight-slides .slick-prev,
    .spotlight-slides .slick-next {
        width: 6vmin
    }

    .slick-prev .slick-arrow-icon {
        left: 0
    }

    .slick-next .slick-arrow-icon {
        right: 0
    }

}






/* ================================================================================ */
/*                                                          max-width: 767          */
/* ================================================================================ */

@media screen and (max-width: 767px) {

    body.home:not(.page-template-news) #content,
    body.home:not(.page-template-news) #content .container {
        padding:0
    }

/*
    .frontpage section {
        margin: 0;
        padding: 0;
    }
*/

    .frontpage-submenu {
        display: none
    }

    section h2 + .items, section .section-title + .items,
    section .items {
/*        padding: 44px 3rem;*/
		padding: 11px 3rem;
        margin: 0
    }

    .section-2x.wide .item,
    .section-2x .item {
        width: 100%;
    }
	
	.info-section.wide .item,
    .info-section .item {
        width: 100%;
    }

    .frontpage .spotlight .slick-arrow {
        width: 4.75rem
    }

    .frontpage .slick-arrow .linea-svg svg {
        height: 3vmax;
        border-radius: 3vmax;
        width: 3vmax;
        background: var(--color-gray-light);
        opacity: 0.5;
        stroke-width: 0.375rem;
        margin: 0 auto;
        stroke: var(--color-blue-dark);
    }

    .slick-prev {
        left: 0
    }

    .slick-next {
        right: 0
    }

    .spotlight .slick-prev {
        left: 6vmin;
    }

    .spotlight .slick-next {
        right: 6vmin;
    }

    .slick-prev .slick-arrow-icon {
        left: 50%
    }

    .slick-next .slick-arrow-icon {
        right: 50%
    }

    .spotlight-image {
        width: 100% !important;
    }

    .spotlight-slide {
        margin: 0 6vmin;
        border-radius: 1.5rem;
        overflow: hidden;
    }

    .spotlight-overlay {
        padding: 1.375rem 4rem;
        margin: 0 15%;
        box-shadow: none
    }

    .spotlight-overlay.open {
        padding: 2.25rem 3rem
    }

    .spotlight-subtitle {
        margin-top: 1.375rem;
    }

    .slider-title {
        padding: 1rem 1.375rem;
    }

    section.half {
        width: 100%;
        margin-left: 0;
        margin-right: 0
    }

    .featured .items {
        flex-direction: column;
    		margin: 0;
    }

    .featured .item-image {
        max-height: 50vmin;
    		overflow: hidden;
    		position: relative;
    }

  	.featured .item-image:not(:hover):not(:focus):after {
  	    content: '.';
  	    position: absolute;
  	    bottom: 0;
  	    display: block;
  	    background: linear-gradient(transparent, #fff);
  	    width: 100%;
  	    height: 75%;
  	}

  	.featured .item-image:hover,
  	.featured .item-image:focus {
  		  max-height: unset;
  	}

    .featured .item-image img {
        display: block
    }

    .featured .item-meta {
        padding: 0;
        margin-top: calc(1rem + 3vw);
    }

    .featured .item-title h3 {
        text-align: center;
    }

/* this seems to make all action buttons full width.. not sure if desired yet - RPN 2021.04.14
    .action:not(.bar) ul {
        flex-direction: column;
        display: block
    }

    .action:not(.bar) ul li {
        margin: 0
    }
*/

    .action.bar ul li {
        flex-basis: calc(24rem - 4vw);
        flex-basis: 44%;
    }

    .inline .items {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .inline .item {
        flex-basis: calc(100% / 3);
    }

    .inline .item a {
        width: 100%;
        display: inline-block;
        margin: 1.5rem 0
    }

    .inline .item-icon {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0 0 1.25rem
    }

    .inline .item-title {
        display: inline-block;
        vertical-align: top;
        padding-left: 0;
        max-width: 20vw
    }

    .mobile-meta {
        width: 100%
    }

}





/* ================================================================================ */
/*                                                          max-width: 640          */
/* ================================================================================ */

@media screen and (max-width: 640px) {

    .frontpage .carousel h2.section-title, .frontpage .carousel .section-title {
        margin-left: 6vmin;
        margin-right: 6vmin;
    }

  	.section-2x:not(.wide) .items {
  	    grid-template-columns: 1fr;
  	}

    .section-2x .item.description {
        grid-column: auto;
    }

    .section-2x.wide .item {
        flex-direction: column;
    }

  	.section-2x .item-img,
    .section-2x.wide .item-icon {
        margin: 0 auto 4.5vmin;
    }

  	.section-2x .single .item-text h3 {
  		text-align: center;
  	}
	
	.info-section:not(.wide) .items {
  	    grid-template-columns: 1fr;
  	}
	
	.info-section .item.half {
		grid-column: span 2;
	}

    .info-section .item.description {
        grid-column: auto;
    }

    .info-section.wide .item {
        flex-direction: column;
    }

  	.info-section .item-img,
    .info-section.wide .item-icon {
        margin: 0 auto 4.5vmin;
    }

  	.info-section .single .item-text h3 {
  		text-align: center;
  	}

    .spotlight-wrapper,
    .spotlight-gradients {
        max-height: unset;
    }

    .spotlight-inner a {
        display: block
    }

    .spotlight-image {
        max-width: unset;
        border-radius: 0;
        margin: 0;
        box-shadow: none;
    }

    .hide-overlay {
        display: block
    }

    .expand-wrap {
        width: 100%;
        position: relative;
        display: block;
        margin: 0;
        bottom: unset;
    }

    .spotlight-open,
    .spotlight-description,
    button.expand {
        display: none
    }

    .spotlight-overlay {
        margin: 0;
        padding: 1.75rem calc(1rem + 1.5vw);
        border-radius: 0;
    }

    .spotlight-img {
        padding: 0
    }

    .spotlight .slick-dots {
        bottom: -3rem;
        height: 2rem;
        left: 50%;
        padding: 1px 2px!important;
        transform: translateX(-50%);
        border-radius: 4rem;
    }

    .slick-dots li button:before {
        font-size: 0.75rem !important
    }

    .spotlight.white {
        background: none;
        box-shadow: none
    }

    .slick-dots li button:before {
        font-size: 0.75rem !important
    }

    .carousel .slider-slides {
        padding: 0
    }

    .carousel .slick-slide {
        margin: 0 0.5vmin;
    }

    .inline .items {
        padding: 0;
    }

    .action ul {
        flex-direction: column;
    }

    .action-button {
        margin: 0.375em;
    }

    .action.bar .action-button a {
        height: auto;
        padding: 1em;
    }

    .action-attach {
        width: auto;
        padding: 1rem 0!important
    }

    .action.bar a {
        font-size: calc(1rem + 1vw);
        line-height: calc(1.5rem + 0.25vw);
    }

    .action-button .btn.btn-lg {
        font-size: 1.375rem;
        line-height: 1.5rem
    }

    .action-button .btn-file.btn-lg .attach-size {
        font-size: .75em
    }

    .action-button a span {
        display: block
    }

    .front-news-thumb img {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .quote {
        flex-direction: column;
    }
}





/* ================================================================================ */
/*                                                          max-width: 480          */
/* ================================================================================ */

@media screen and (max-width: 480px) {

    .section-2x .single .item-text h3 {
        text-align: center;
    }
	.info-section .single .item-text h3 {
        text-align: center;
    }

    .inline .item {
        flex-basis: 100%;
        padding: 0 calc(1rem + 2vw);
    }

    .inline .item a {
        display: flex;
        justify-content: space-between;
        margin: 1rem 0;
        align-items: center;
    }

    .inline .item-icon {
        width: auto;
        padding: 0;
    }

    .inline .item-title {
        max-width: none;
        flex-grow: 1;
        text-align: left;
		
		margin: 0;
        padding-left: 2rem;
    }

    .inline .linea-svg-inner {
        width: calc(4rem + 2.75vw) !important;
        padding: calc(.5rem + 0.5vw);
    }

    .featured .items {
        margin: 0 calc(1rem + 1vw)
    }
	.featured .item-title {
		font-size: 1.375rem;
	}

    .action-button .btn-file .linea-svg {
        padding-right: 1.375rem
    }

    .slick-arrow-icon .linea-svg-inner {
        padding: 0 5.5px
    }

    .slick-arrow .linea-svg-inner {
        width: 100% !important
    }

    .slick-arrow .linea-svg svg {
        stroke-width: 0.375rem;
    }

}
