/*
Theme Name: Global South Studies
Theme URI: https://www.3n.design
Description: This is a custom theme for Global South Studies designed and developed by 3n Design.
Author: 3n Design
Author URI: https://www.3n.design
Version: 1.0
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Variables
	2.	Typography
	3. 	Layout Base
	4. 	UI Elements
	5. 	Site Header
	6. 	Menu Modal
	7. 	Grid Model 
	8.  Band Model
	9.	List Model
    10. Page Templates
    11. Post Templates
	12. Entry Content
	13. Blocks
	14. Site Pagination
	15. Site Footer
    16. Transitions
	17. Accessibility

-------------------------------------------------------------- */

/* --------------------------------------------------------------
= 0. CSS Reset
-------------------------------------------------------------- */

html,
body {
	border: none;
	margin: 0;
	padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}

blockquote::before,
blockquote::after {
	content: "";
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
* {
	-webkit-tap-highlight-color: transparent !important;
}
button,
input,
textarea {
	-webkit-appearance: none;
}
address {
    display: inline;
    font-style: normal;
}
time {
    display: inline;
}

/* --------------------------------------------------------------
= 1. Variables
-------------------------------------------------------------- */

:root {
	--gss--color--primary: #000000;
	--gss--color--secondary: #bfbfbf;
	--gss--color--background: #ffffff;
    --gss--color--pink: #eb68ad;
    --gss--color--blue: #19b5fe;
    --gss--color--green: #70bf64;
    --gss--color--salmon: #fb6267;
    --gss--color--teal: #26aaa1;
    --gss--color--yellow: #fffc7f;
    --gss--color--orange: #f27935;
	--gss--logo-height: 60px;
    --gss--menu-height: 40px;
	--gss--gutter: 10px;
	--gss--margin: 10px;
	--gss--section--gap: 60px;
	--gss--block--gap: 1.5em;
}
@media ( min-width: 48em ) {
    :root {   
        --gss--logo-height: 90px;
        --gss--gutter: 15px;
        --gss--margin: 15px;
        --gss--section--gap: 80px;
    }
}
@media ( min-width: 64em ) {
    :root {   
        --gss--logo-height: 150px;
        --gss--gutter: 20px;
        --gss--margin: 20px;
    }
}
@media ( min-width: 80em ) {
    :root {   
        --gss--logo-height: 150px;
        --gss--menu-height: 50px;
        --gss--gutter: 25px;
        --gss--margin: 25px;
        --gss--section--gap: 100px;
    }
}

/* --------------------------------------------------------------
= 2. Typography
-------------------------------------------------------------- */

body {
    font-family: "franklin-gothic-urw", sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
i, em {
    font-weight: 400;
    font-style: italic;
}
b, strong {
    font-weight: 500;
    font-style: normal;
}
b i, b em,
i b, i strong,
strong i, strong em,
em b, em strong {
    font-weight: 500;
    font-style: italic;
}
h1, h2, h3, h4, h5 {
    font-weight: 700;
    font-style: normal;
}
h6 {
    font-weight: 900;
    font-style: normal;
}
h2.entry-title,
h3.entry-title {
    font-weight: 700;
}
.arrow {
    font-family: "space-grotesk-variable", sans-serif;
    font-variation-settings: "wght" 375;
}

/* --------------------------------------------------------------
= 3. Layout Base
-------------------------------------------------------------- */

main {
    margin-bottom: var(--gss--section--gap);
    min-height: 50vh;
    padding-top: var(--gss--menu-height);
}
.inner {
	margin: 0 auto;
	max-width: 1700px;
	padding-left: var(--gss--gutter);
    padding-right: var(--gss--gutter);
	position: relative;
}
.pad {
    padding: 0 var(--gss--margin);
}
body.menu--active {
	overflow: hidden;
}
.hide-in-mobile {
    display: none;
}
@media all and (min-width: 48em) {
    .hide-in-mobile {
        display: inline;
    }
}

/* --------------------------------------------------------------
= 4. UI Elements
-------------------------------------------------------------- */

/* Logo + Icon ----------------------------------------------- */

.logo,
.icon { 
    display: inline-block;
    overflow: visible 
}
.logo .trns,
.icon .trns { transition: all 300ms ease }
.logo .trns.black,
.icon .trns.black { fill: var(--gss--color--primary) }
a:hover .logo .trns.black,
a:hover .icon .trns.black { fill: var(--gss--color--primary) }

/* Hamburger ------------------------------------------------- */

#hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: block;
	height: 38px;
    position: relative;
    width: 20px;
	vertical-align: bottom;
	-webkit-appearance: none;
}
#hamburger > span {
    height: 16px;
	position: absolute;
        top: 11px;
        left: 0;
    width: 20px;
}
#hamburger > span:before,
#hamburger > span:after {
	content: '';
}
#hamburger > span:before,
#hamburger > span:after,
#hamburger > span span {
	background-color: var(--gss--color--primary);
	display: block;
	height: 2px;
	position: absolute;
		right: 0;
	width: 20px;
	transition: all 300ms ease;
}
#hamburger > span:hover:before,
#hamburger > span:hover:after,
#hamburger > span:hover span {
	background-color: var(--gss--color--secondary);
}
#hamburger > span:before {
	top: 0px;
}
#hamburger > span span {
	top: 7px;
}
#hamburger > span:after {
	top: 14px;
}
.menu--active #hamburger > span:before {
	transform: rotate(-45deg);
}
.menu--active #hamburger > span:after {
	transform: rotate(45deg);
}
.menu--active #hamburger > span:before,
.menu--active #hamburger > span:after {
    top: 7px;
	background-color: var(--gss--color--primary);
}
.menu--active #hamburger > span span,
.menu--active #hamburger > span:hover span {
	background-color: transparent;
}
.menu--active #hamburger > span:hover:before,
.menu--active #hamburger > span:hover:after {
	background-color: var(--gss--color--secondary);
}
@media all and (min-width: 80em) {
    #hamburger {
        height: 48px;
    }
    #hamburger > span {
        top: 16px;
    }
}

/* Magnifying Glass ------------------------------------------ */

#magnifying-glass {
    background: transparent;
    border: none;
    cursor: pointer;
    display: block;
	height: 38px;
    position: relative;
    width: 20px;
	vertical-align: bottom;
	-webkit-appearance: none;
}
#magnifying-glass > span {
    height: 20px;
	position: absolute;
        top: 9px;
        left: 0;
    width: 20px;
}
#magnifying-glass span:before {
	border: 2px solid var(--gss--color--primary);
    border-radius: 8px;
    content: '';
    height: 16px;
    position: absolute;
        top: 0;
        left: 0;
	width: 16px;
    transition: all 100ms ease;
}
#magnifying-glass span:after {
	background-color: var(--gss--color--primary);
    content: '';
    height: 8px;
	position: absolute;
        top: 12px;
        left: 16px;
    transform: rotate(-45deg);
	width: 2px;
    transition: all 100ms ease;
}
#magnifying-glass:hover span:before,
#magnifying-glass:focus span:before {
	background-color: transparent;
	border-color: var(--gss--color--secondary);
}
#magnifying-glass:hover span:after,
#magnifying-glass:focus span:after {
	background-color: var(--gss--color--secondary);
}
.search--active #magnifying-glass > span:before {
    border: none;
    border-radius: 0;
	transform: rotate(45deg);
}
.search--active #magnifying-glass > span:before,
.search--active #magnifying-glass > span:after {
    top: 9px;
	background-color: var(--gss--color--primary);
    display: block;
	height: 2px;
	position: absolute;
		left: 0;
	width: 20px;
}
.search--active #magnifying-glass > span:hover:before,
.search--active #magnifying-glass > span:hover:after {
	background-color: var(--gss--color--secondary);
}
@media all and (min-width: 80em) {
    #magnifying-glass {
        height: 48px;
    }
    #magnifying-glass > span {
        top: 14px;
    }
}

/* Button ---------------------------------------------------- */

.btn,
.dkpdf-button-container a {
    background-color: var(--gss--color--background);
    border: 1px solid var(--gss--color--secondary);
    border-radius: 5px;
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.875rem;
    padding: 0 !important;
    text-align: center;
    text-decoration: none !important; 
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 300ms ease !important;
}
.dkpdf-button-container {
    float: none !important;
    padding: 0 !important;
}
.dkpdf-button-container a {
    display: block;
    text-decoration: none !important;
    width: 100%;
}
.btn:hover,
.dkpdf-button-container a:hover,
.btn.mixitup-control-active {
    background-color: var(--gss--color--secondary); 
    border-color: var(--gss--color--secondary);
    color: var(--gss--color--background) !important;
}
.dkpdf-button-icon {
    display: none;
}

/* Tab ------------------------------------------------------- */

.taxonomy-tab {
    background-color: var(--gss--color--secondary);
    border-radius: 5px;
    color: var(--gss--color--background);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.875rem;
    padding: 0 !important;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 300ms ease !important;
}

/* More ------------------------------------------------------ */

.read-more {
    color: var(--gss--color--primary);
    font-size: 1.125em;
    font-weight: 700;
    line-height: 1.5em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 300ms ease;
}
.read-more .arrow {
    font-variation-settings: "wght" 500;
    vertical-align: bottom;
}

/* --------------------------------------------------------------
= 5. Site Header
-------------------------------------------------------------- */

#site-header {
    background-color: var(--gss--color--background);
}
#site-header--wrapper {
    height: var(--gss--logo-height);
    position: relative
}
#site-title {
    position: absolute;
        top: 50%;
        left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
#site-title svg {
    height: auto;
    width: auto;
}
@media all and (min-width: 393px) {
    #site-title svg {
        height: 20px;
         width: auto;
    }
}
@media all and (min-width: 48em) {
    #site-title svg {
        height: 30px;
    }
}
@media all and (min-width: 64em) {
    #site-title svg {
        height: 40px;
    }
}

/* --------------------------------------------------------------
= 6. Menu Modal
-------------------------------------------------------------- */

#site-banner {
    background-color: var(--gss--color--background);
    position: absolute;
    width: 100%;
    z-index: 2000;
}
.banner-sticky #site-banner {
    position: fixed;
        top: 0;
        left: 0;
}
#site-banner--wrapper {
    border-top: 1px solid var(--gss--color--primary);
    border-bottom: 1px solid var(--gss--color--primary);
}
#site-banner--wrapper .pad {
    display: flex;
}
#site-menu--wrapper {
    width: calc(100% - 80px);
}
#site-icon {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 200ms ease;
}
.banner-sticky #site-icon {
    max-width: 35px;
    opacity: 1;
}
#site-icon a {
    display: block;
    height: 38px;
    padding: 9px 15px 9px 0;
}
#site-icon svg {
    height: 20px;
    width: 20px;
}
#site-controls {
    display: flex;
    width: 80px;
}
#site-menu--open,
#site-search--open {
    margin-left: 20px;
}
#site-menu,
#search-form,
.search--active #site-icon,
.search--active #site-menu {
    display: none;
}
.search--active #search-form  {
    display: flex;
}
#search-form {
    width: 100%;
}
#search-form .search-field {
    background-color: transparent;
    border: none;
    font-size: 1em;
    height: 38px;
    line-height: 38px;
    width: calc(100% - 20px);
}
#search-form .search-field:focus {
    outline: 0;
}
#search-form .search-submit {
    background-color: transparent;
    font-size: 1.75em;
    height: 38px;
    line-height: 38px;
    width: 20px;
}
#search-form .search-submit svg {
    height: auto;
    width: 100%;
}
#site-menu--mobile {
    background-color: var(--gss--color--background);
    display: none;
    letter-spacing: 0.02em;
    height: calc(100vh - (var(--gss--logo-height) + var(--gss--menu-height)));
}
.banner-sticky #site-menu--mobile {
    height: calc(100vh - var(--gss--menu-height));
}
#site-menu--mobile ul {
    padding: 10px 0;
    text-align: left;
}
#site-menu--mobile ul li {
    padding: var(--gss--margin);
}
#site-menu--mobile ul li a {
    color: var(--gss--color--primary);
    font-size: 2.25em;
    font-weight: 700;
    line-height: 38px;
    text-decoration: none;
    transition: color 300ms ease;
}
#site-menu--mobile ul li a:hover {
    color: var(--gss--color--secondary);
}
#site-menu--mobile ul li a span {
    display: inline-block;
}
@media all and (min-width: 48em) {
    #site-menu--mobile ul li a span {
        display: inline;
    }
}
@media all and (min-width: 64em) {
    #site-menu--wrapper {
        display: flex;
        width: calc(100% - 40px);
    }
    #site-menu {
        display: block;
        width: calc(100% - 40px);
    }
    #site-menu menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .banner-sticky #site-icon {
        max-width: 40px;
    }
    #site-icon a {
        display: block;
        height: 38px;
        padding: 9px 20px 9px 0;
    }
    #site-menu menu li {
        display: inline-block;
        padding-right: 15px;
    }
    #site-menu menu li:last-child {
        padding-right: 0;
    }
    #site-menu menu li a {
        color: var(--gss--color--primary);
        font-size: 1em;
        font-weight: 700;
        line-height: 38px;
        text-decoration: none;
        transition: color 300ms ease;
    }
    #site-menu menu li a:hover {
        color: var(--gss--color--secondary);
    }
    #site-controls {
        width: 40px;
    }
    #site-search--open {
        margin-left: 20px;
    }
    #site-menu--open {
        display: none;
    }
}
@media all and (min-width: 80em) {
    #site-icon a {
        display: block;
        height: 48px;
        padding: 14px 20px 14px 0;
    }
    #site-menu menu li {
        padding-right: 20px;
    }
    #site-menu menu li a {
        font-size: 1.25em;
        line-height: 48px;
    }
    #search-form .search-field {
        font-size: 1.25em;
        height: 48px;
        line-height: 48px;
    }
    #search-form .search-submit {
        height: 48px;
        line-height: 48px;
    }
}

/* --------------------------------------------------------------
= 7. Grid Model 
-------------------------------------------------------------- */

.grid .inner {
    align-items: flex-start;
    border-bottom: 1px solid var(--gss--color--primary);
	column-gap: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    margin-top: -1px;
    margin-bottom: var(--gss--section--gap);
}
.grid .inner:after {
	display: block;
	content: '';
	flex: 999 999 auto;
}
@media all and (min-width: 48em) {
	.grid .card {
		width: calc(1/2 * 100%);
	}
}
@media all and (min-width: 64em) {
	.grid .card {
		width: calc(1/3 * 100%);
	}
}
@media all and (min-width: 100em) {
	.grid .card {
		width: calc(1/4 * 100%);
	}
}

/* Grid: Cell ------------------------------------------------ */

.card {
    margin-bottom: calc(var(--gss--section--gap) - 8px);
}
.card a {
    text-decoration: none;
}
.card .taxonomy-banner {
    background-color: var(--gss--color--secondary);
    border-top: 1px solid var(--gss--color--primary);
    color: var(--gss--color--background);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 3.125rem;
    margin-bottom: 17px;
    padding: 0 15px !important;
    text-transform: uppercase;
}
.card .entry-title {
    font-size: 2.25em;
    font-weight: 700;
    line-height: 1.125em;
}
.card .entry-title a {
    color: var(--gss--color--primary);
    transition: color 300ms ease;
}
.card .by-line {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5em;
    text-transform: uppercase;
}
.card .entry-excerpt {
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
    line-height: 1.5em;
    margin-top: 10px;
}
.card .by-line {
    margin-top: 10px;
}
.card .more-link {
    margin-top: 26px;
}

@media all and (min-width: 48em) {
    .card .entry-excerpt {
        line-height: 1.4em;
    }
}
@media all and (min-width: 64em) {
    .card .entry-excerpt {
        margin-top: 10px;
    }
}
@media all and (min-width: 80em) {
    .card .entry-excerpt {
        line-height: 1.3em;
    }
    .card .more-link {
        margin-top: 36px;
    }
}

/* --------------------------------------------------------------
= 8. Bands Model
-------------------------------------------------------------- */

.bands .band {
    border-bottom: 1px solid var(--gss--color--primary);
    position: relative;
}
.bands .band--wrapper {
    display: flex;
    margin: 0 auto;
    max-width: 1700px;
}
.bands .band .band--content {
    flex-grow: 1;
    padding: 32px calc(var(--gss--gutter) + var(--gss--margin)) 32px;
    width: calc(100% - var(--gss--gutter) + var(--gss--margin));
}
.bands .band .band--color {
    width: calc(var(--gss--gutter) + var(--gss--margin));
}
.bands .band--content-query {
    display: none;
}
#homepage-bands.bands .band:nth-child(odd) .band--content,
#homepage-bands.bands .band:nth-child(even) .band--color,
.bands .band:not(.odd):nth-child(even) .band--content,
.bands .band.even .band--content,
.bands .band:not(.even):nth-child(odd) .band--color,
.bands .band.odd .band--color { order: 1 }
#homepage-bands.bands .band:nth-child(even) .band--content,
#homepage-bands.bands .band:nth-child(odd) .band--color,
.bands .band:not(.odd):nth-child(even) .band--color,
.bands .band.even .band--color,
.bands .band:not(.even):nth-child(odd) .band--content,
.bands .band.odd .band--content {order: 2 }

.bands .band .taxonomy-tab {
    margin-bottom: 13px;
    max-width: 175px;
    width: calc(50% - 5px);
}
.bands .band--title,
.bands .entry-title {
    font-size: clamp(2.25rem, 1.125rem + 2.3438vw, 3rem);
    line-height: 1.125em;
    margin-bottom: 5px;
}
.bands .entry-title a {
    color: var(--gss--color--primary);
    text-decoration: none;
    transition: color 300ms ease;
}
.bands .date-location.lg {
    font-size: clamp(1.5rem, 1.1415rem + 1.3857vw, 2.25rem);
    line-height: 1.3em;
    margin-bottom: 4px;
    text-transform: none;
}
.bands .date-location.lg time {
    display: block;
    font-weight: 500;
}
.bands .band--excerpt {
    font-size: clamp(1.125rem, -0.5625rem + 3.5156vw, 2.25rem);
    line-height: 1.5em;
}
.bands .band--excerpt.lg {
    font-size: clamp(1.125rem, 0.75rem + 1.875vw, 2.25rem);
}
.bands .band--excerpt.sm {
    font-size: clamp(1.125rem, 0.9457rem + 0.6928vw, 1.5rem);
}
.bands .band--link {
    margin-top: 25px;
}

@media all and (min-width: 48em) {
    .bands .band--wrapper { padding: 0 var(--gss--gutter) }
    .bands .band .band--content { padding-right: 0 }
    #homepage-bands.bands .band:nth-child(odd) .band--content,
    .bands .band:not(.odd):nth-child(even) .band--content { 
        padding-left: var(--gss--margin);
        padding-right: calc(var(--gss--margin) + var(--gss--gutter));
    }
    .bands .band.even .band--content { padding-left: var(--gss--margin) }
    #homepage-bands.bands .band:nth-child(even) .band--content,
    .bands .band:not(.even):nth-child(odd) .band--content { 
        padding-left: calc(var(--gss--margin) + var(--gss--gutter));
        padding-right: var(--gss--margin); 
    }
    .bands .band.even .band--content { padding-right: var(--gss--margin) }
    .bands .band .band--content { width: calc(3 / 4 * 100% + var(--gss--margin)) }
    .bands .band .band--color { width: calc(1 / 4 * 100% - var(--gss--margin)) }
    .bands .band--excerpt { line-height: 1.4em }
    .bands .band .band--content { background-color: var(--gss--color--background) }
    #homepage-bands.bands .band:nth-child(odd):after,
    #homepage-bands.bands .band:nth-child(even):before,
    .bands .band:not(.even):nth-child(odd):before,
    .bands .band.odd:before,
    .bands .band:not(.odd):nth-child(even):after,
    .bands .band.even:after {
        content: '';
        display: block;
        height: 100%;
        position: absolute;
            top: 0;
        width: calc(1 / 3 * 100%);
        z-index: -1
    }
    #homepage-bands.bands .band:nth-child(odd):after,
    .bands .band:not(.odd):nth-child(even):after,
    .bands .band.even:after { right: 0 }
    #homepage-bands.bands .band:nth-child(even):before,
    .bands .band:not(.even):nth-child(odd):before,
    .bands .band.odd:before { left: 0 }
}
@media all and (min-width: 64em) {
    .bands .band .band--content { width: calc(2 / 3 * 100% + var(--gss--margin)) }
    .bands .band .band--color { width: calc(1 / 3 * 100% - var(--gss--margin)) }
    .bands .date-location.lg { line-height: 1.2em }
    .bands .band--excerpt,
    .bands .band--excerpt.sm { line-height: 1.3em }
}
@media all and (min-width: 80em) {
    .bands .band .band--content { padding: 38px calc(var(--gss--gutter) + var(--gss--margin)) 42px }
    .bands .band--title,
    .bands .entry-title { margin-bottom: 5px }
    .bands .band--excerpt { line-height: 1.2em }
    .bands .band--link { margin-top: 34px }
    .bands .band--content-query {
        display: block;
    }
    .bands .band--content-wrapper {
        display: flex;
        gap: calc(var(--gss--gutter) + var(--gss--margin));
    }
    .bands .band--content-details,
    .bands .band--content-query {
        width: 50%;
    }
    .bands .band--content-query ul {
        border-top: 1px solid var(--gss--color--primary);
    }
    .bands .band--content-query li {
        border-bottom: 1px solid var(--gss--color--primary);
        font-size: 1.125em;
        line-height: 1.3em;
        padding: 20px 0;
    }
    .bands .band--content-query li a {
        color: var(--gss--color--primary);
        text-decoration: none;
        transition: color 300ms ease;
    }
    .bands .date-location {
        text-transform: uppercase;
    }
}

/* --------------------------------------------------------------
= 9. List Modal
-------------------------------------------------------------- */

.list {
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 var(--gss--margin);
}
.list .list-item {
    border-bottom: 1px solid var(--gss--color--primary);
    padding-top: calc(var(--gss--margin) * 3);
    padding-bottom: calc(var(--gss--margin) * 3);
}
.list .list-item .taxonomy-tab {
    margin-bottom: 4px;
    max-width: 175px;
    width: calc(50% - var(--gss--margin))
}
.list .list-item .entry-title {
    font-size: 2.25em;
    font-weight: 700;
    line-height: 1.125em;
}
.list .list-item.type-post .entry-title,
.list .list-item .entry-title.author {
    font-style: normal;
}
.list .list-item .entry-title.author {
    margin-bottom: 5px;
}
.list .list-item .article-index--title {
    font-size: clamp(1.125rem, 0.9457rem + 0.6928vw, 1.5rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.3em;
}
.list .list-item .entry-title a,
.list .list-item .article-index--title a {
    color: var(--gss--color--primary);
    text-decoration: none;
    transition: color 300ms ease;
}
.list .list-item a:hover { 
    color: var(--gss--color--secondary) 
}
.list .list-item .by-line {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5em;
    text-transform: uppercase;
}
.list .list-item .by-line {
    margin-top: 5px;
}
@media all and (min-width: 48em) {
    .list {
        max-width: calc(3 / 4 * 100%);
    }
    .list .list-item {
        padding-top: calc(var(--gss--gutter) + var(--gss--margin));
        padding-bottom: calc(var(--gss--gutter) + var(--gss--margin));
    }
    .list .list-item .taxonomy-tab {
        margin-bottom: 8px;
    }
}
@media all and (min-width: 90em) {
    .list {
        max-width: calc(2 / 3 * 100%);
    }
}
@media all and (min-width: 100em) {
    .list {
        max-width: calc(1 / 2 * 100%);
    }
}

/* --------------------------------------------------------------
= 10. Page Template
-------------------------------------------------------------- */

#page-header {
    border-bottom: 1px solid var(--gss--color--primary);
}
h2.page-title,
h2.entry-title {
    font-size: clamp(2.25rem, 1.125rem + 2.3438vw, 3rem);
    line-height: 1.125em;
    margin-top: calc(var(--gss--gutter) + var(--gss--margin));
    margin-bottom: calc(var(--gss--gutter) + var(--gss--margin));
}
h2.page-title span {
    font-weight: 400;
}
#content {
    padding-top: var(--gss--section--gap);
}

/* Header: Centered ------------------------------------------ */

h2.page-title.is-centered {
    margin-left: auto !important;
    margin-right: auto !important;
}
@media all and (min-width: 48em) {
    h2.page-title.is-centered {
        max-width: calc(3 / 4 * 100%);
    }
}
@media all and (min-width: 90em) {
    h2.page-title.is-centered {
        max-width: calc(2 / 3 * 100%);
    }
}
@media all and (min-width: 100em) {
    h2.page-title.is-centered {
        max-width: calc(1 / 2 * 100%);
    }
}

/* Headers: Band --------------------------------------------- */

#page-header {
    border-bottom: 1px solid var(--gss--color--primary);
    position: relative;
}
#page-header .header--wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1700px;
}
#page-header.has-color--band .header--wrapper {
    flex-wrap: nowrap;
}
#page-header .header--wrapper .header--content {
    flex-grow: 1;
    padding: 0 calc(var(--gss--gutter) + var(--gss--margin)) 22px;
    width: calc(100% - var(--gss--gutter) + var(--gss--margin));
}
#page-header.has-no-author .header--wrapper .header--content {
    padding-bottom: calc(var(--gss--gutter) + var(--gss--margin));
}
#page-header.has-author .header--wrapper .header--content {
    padding-bottom: 0;
}
#page-header .header--color {
    width: calc(var(--gss--gutter) + var(--gss--margin));
}
#page-header .header--color figure {
    display: none;
}
#page-header .section--filter {
    padding: 0 calc(var(--gss--gutter) + var(--gss--margin)) 40px;
    width: 100%;
}
#page-header .header--wrapper .page-title,
#page-header.has-filters .page-title {
    font-size: clamp(2.25rem, 1.125rem + 2.3438vw, 3rem);
    line-height: 1.125em;
    margin-top: calc(var(--gss--gutter) + var(--gss--margin));
    margin-bottom: 5px;
}
#page-header .header--wrapper .header--excerpt {
    font-size: clamp(1.125rem, -0.5625rem + 3.5156vw, 2.25rem);
    line-height: 1.5em;
}
#page-header .header--wrapper .header--excerpt-sm {
    font-size: clamp(1.125rem, 0.9457rem + 0.6928vw, 1.5rem);
    line-height: 1.5em;
}
#page-header .header--wrapper .header--excerpt-sm time {
    display: block;
    font-weight: 500;
}
#page-header .header--wrapper .header--excerpt a,
#page-header .header--wrapper .header--excerpt-sm a {
    text-decoration: underline;
    transition: color 300ms ease;
}
#page-header.has-author .entry-meta {
    padding-top: calc(var(--gss--gutter) + var(--gss--margin));
    padding-bottom: 4px;
}
#page-header a {
    color: var(--gss--color--primary);
    text-decoration: none;
    transition: color 300ms ease;
}
@media all and (min-width: 48em) {
    #page-header .header--wrapper { padding: 0 var(--gss--gutter) }
    #page-header .header--wrapper .header--content { 
        background-color: var(--gss--color--background);
        padding-right: 0;
        padding-left: var(--gss--margin);
        max-width: calc(3 / 4 * 100% + var(--gss--margin)) 
    }
    #page-header.has-author .header--wrapper .header--content {
        padding-right: calc(var(--gss--gutter) + var(--gss--margin));
    }
    #page-header .header--color { 
        position: relative;
        width: calc(1 / 4 * 100% - var(--gss--margin)) 
    }
    #page-header .header--color figure {
        display: block;
        margin: calc(var(--gss--gutter) + var(--gss--margin)) var(--gss--margin) calc(var(--gss--gutter) + var(--gss--margin)) calc(var(--gss--gutter) + var(--gss--margin));
        position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
    }
    #page-header .header--color figure img {
        box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.5);
        cursor: zoom-in;
        display: block;
        height: auto;
        max-height: 100%;
        max-width: 100%;
        width: auto;
    }
    #page-header .header--wrapper .header--excerpt,
    #page-header .header--wrapper .header--excerpt-sm { line-height: 1.4em }
    #page-header .section--filter {
        padding: 0 var(--gss--margin) 40px;
    }
    .single-gss_convos #page-header:after,
    .single-gss_event #page-header:after,
    .page-template-page-events #page-header:after,
    .page-template-page-news #page-header:after,
    .single-gss_convos #page-header:after {
        content: '';
        display: block;
        height: 100%;
        position: absolute;
            top: 0;
            right: 0;
        width: calc(1 / 3 * 100%);
        z-index: -1
    }
}
@media all and (min-width: 64em) {
    #page-header .header--wrapper {
        flex-wrap: nowrap;
    }
    #page-header .header--wrapper .header--content { width: calc(3 / 5 * 100% + var(--gss--margin)) }
    #page-header .header--color,
    #page-header .section--filter { width: calc(2 / 5 * 100% - var(--gss--margin)) }
    #page-header .header--wrapper .page-title,
    #page-header.has-filters .page-title {
        margin-top: calc(var(--gss--gutter) + var(--gss--margin) - 12px);
    }
    #page-header .header--wrapper .header--excerpt,
    #page-header .header--wrapper .header--excerpt-sm { line-height: 1.3em }
}
@media all and (min-width: 80em) {
    #page-header .header--wrapper .header--content { 
        padding: 0 calc(var(--gss--gutter) + var(--gss--margin)) 42px var(--gss--margin);
        max-width: calc(2 / 3 * 100% + var(--gss--margin));
    }
    #page-header .header--color,
    #page-header .section--filter { width: calc(1 / 3 * 100% - var(--gss--margin)) }
    #page-header .header--wrapper .header--title { margin-bottom: 5px }
    #page-header .header--wrapper .header--excerpt { line-height: 1.2em }
    #page-header .section--filter {
        padding: 2px var(--gss--margin) 50px;
    }
}

/* Filters --------------------------------------------------- */

.section--filter .filter--title {
    font-size: 1.125em;
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}
.section--filter .filter--wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px calc(var(--gss--gutter) + var(--gss--margin));
}
.section--filter .filter--wrapper .btn {
    width: calc(50% - var(--gss--margin));
}
.section--filter .filter--wrapper .btn:focus {
    outline: none;
    box-shadow: none;
}
@media all and (min-width: 48em) {
    .section--filter .filter--wrapper .btn {
        width: calc(25% - (var(--gss--gutter) + var(--gss--margin) * 1 / 2));
    }
}
@media all and (min-width: 64em) {
    .section--filter .filter--wrapper {
        gap: 12px;
    }
    .section--filter .filter--wrapper .btn {
        width: calc(50% - 6px);
    }
}
@media all and (min-width: 80em) {
    .section--filter .filter--wrapper {
        gap: 12px calc(var(--gss--gutter) + var(--gss--margin));
    }
    .section--filter .filter--wrapper .btn {
        width: calc(50% - var(--gss--margin));
    }
}

/* Contact Form ---------------------------------------------- */

.wpcf7-form {
    background-color: var(--gss--color--secondary);
    line-height: normal;
    padding: calc(var(--gss--gutter) + var(--gss--margin) - 8px) calc(var(--gss--gutter) + var(--gss--margin)) calc(var(--gss--gutter) + var(--gss--margin));
}
.wpcf7-form p,
.wpcf7-form--no-margin {
    margin-bottom: 0 !important;
}
.wpcf7-not-valid-tip {
    font-size: 1.125rem !important;
    margin-top: 0.3rem !important;
    width: 100%;
}
.wpcf7-list-item,
.wpcf7-form-control-wrap {
    display: block !important;
    margin-left: 0 !important;
}
.wpcf7-list-item-label,
.wpcf7-form--field p {
    font-size: 1.125rem;
    line-height: 1.3em;
}
.wpcf7-form--field {
    margin-bottom: 1.25em !important;
}
.wpcf7-form--field label {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}
.wpcf7-form--field label span {
    color: var(--gss--color--orange);
    margin-left: 3px;
}
.wpcf7-form--field input[type="text"],
.wpcf7-form--field input[type="email"] {
    border: none;
    font-size: 1rem;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    width: 100%;
}
.wpcf7-form--field textarea {
    border: none;
    font-size: 1rem;
    height: 150px;
    line-height: 40px;
    margin-top: 0.3rem;
    padding: 5px 10px;
    width: 100%;
}
.wpcf7-form--field input[type="checkbox"], 
.wpcf7-form--field input[type="radio"] {
    border: 3px solid #fff;
    background-color: #fff;
    height: 17px;
    width: 17px;
    vertical-align: text-bottom;
}
.wpcf7-form--field input[type="checkbox"]:checked, 
.wpcf7-form--field input[type="radio"]:checked {
    background-color: #000;
}
.wpcf7-form--field input[type="text"]:focus,
.wpcf7-form--field input[type="email"]:focus,
.wpcf7-form--field textarea:focus,
.wpcf7-form--field input[type="checkbox"]:focus, 
.wpcf7-form--field input[type="radio"]:focus {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	outline: none;
}
.wpcf7-form--submit #mc_signup_submit {
    margin-top: 0;
    padding: 0 !important;
    width: 100% !important;
}
.wpcf7-form--submit input[type="submit"] {
    background-color: var(--gss--color--orange);
    border: none;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    height: 40px;
    line-height: 40px;
    text-transform: uppercase;
    transition: all 300ms ease;
    width: 100%;
}
.wpcf7-form--submit input[type="submit"]:hover {
    background-color: var(--gss--color--primary);
    color: var(--gss--color--background);
}
.wpcf7-form--submit form.sent .wpcf7-response-output {
    border-color: var(--gss--color--primary);
    margin: 2rem 0 1rem;
    padding: 0.2rem 0.5rem 0.1rem;
}
.wpcf7 form .wpcf7-response-output {
    margin: 2em 0 0 !important;
}
@media ( min-width: 48em ) {
    .wpcf7-form {
        padding: calc(var(--gss--gutter) + var(--gss--margin) - 8px) calc(var(--gss--gutter) + var(--gss--margin)) calc(var(--gss--gutter) + var(--gss--margin));
    }
    .wpcf7-form--name {
        display: flex;
        flex-wrap: wrap;
        gap: 0 calc(var(--gss--gutter) + var(--gss--margin));
    }
    .wpcf7-form--name .wpcf7-form--field {
        width: calc(50% - var(--gss--margin));
    }
    .wpcf7-form--field input[type="text"],
    .wpcf7-form--field input[type="email"] {
        height: 50px;
    }
    .wpcf7-form--field input[type="text"],
    .wpcf7-form--field input[type="email"] {
        font-size: 18px;
    }
    .wpcf7-form--submit input[type="submit"] {
        height: 50px;
        line-height: 50px;
        width: calc(50% - var(--gss--margin));
    }
}
@media ( min-width: 64em ) {
    .wpcf7-form {
        padding: calc(var(--gss--gutter) + var(--gss--margin) - 8px) calc(var(--gss--gutter) + var(--gss--margin)) calc(var(--gss--gutter) + var(--gss--margin));
    }
}

/* --------------------------------------------------------------
= 11. Post Templates
-------------------------------------------------------------- */

.type-band {
    background-color: var(--gss--color--secondary);
    color: var(--gss--color--background);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 3.125rem;
    text-transform: uppercase;
}
.type-band--inner {
    margin: 0 auto;
    padding: 0 calc(var(--gss--gutter) + var(--gss--margin));
}
.entry-meta {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5em;
    text-transform: uppercase;
}
.entry-meta--inner {
    margin: -5px auto 0;
    padding: 0 calc(var(--gss--gutter) + var(--gss--margin)) 4px;
}
.entry-meta .by-line {
    display: inline;
}

/* Essay ----------------------------------------------------- */

#citation {
    display: none; /* Hides the text */
}
.centry-controls {
    margin-bottom: calc(var(--gss--section--gap) / 3);
}
.centry-controls--inner {
    border-bottom: 1px solid var(--gss--color--primary);
    display: flex;
    gap: 0 calc(var(--gss--gutter) + var(--gss--margin));
    padding-bottom: 12px;
}
.centry-controls--inner .btn,
.centry-controls--inner .dkpdf-button-container {
    max-width: calc(1 / 2 * 100%);
    width: 100%;
}
.entry-authors-wrapper {
    margin-top: var(--gss--section--gap);
}
h5.author-title {
    background-color: var(--gss--color--secondary);
    border-top: 1px solid var(--gss--color--primary);
    color: var(--gss--color--background);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 3.125rem;
    margin-bottom: calc(var(--gss--section--gap) / 3) !important;
    padding: 0 15px !important;
    text-transform: uppercase;
}
@media all and (min-width: 48em) {
    .centry-controls--inner {
        flex-direction: row-reverse;
        gap: 0 12px;
    }
    .centry-controls--inner .btn,
    .centry-controls--inner .dkpdf-button-container {
        max-width: calc(1 / 3 * 100%);
    }
}
@media all and (min-width: 64em) {
    .centry-controls--inner .btn,
    .centry-controls--inner .dkpdf-button-container {
        max-width: calc(1 / 4 * 100%);
    }
}

/* Conversation ---------------------------------------------- */

.sub-header {
    border-bottom: 1px solid var(--gss--color--primary);
}
.sub-header--title {
    font-size: clamp(2.25rem, 1.8915rem + 1.3857vw, 3rem);
    line-height: 1em;
    padding-top: var(--gss--section--gap);
    padding-bottom: calc(var(--gss--gutter) + var(--gss--margin));
}

/* Lightbox 2 ------------------------------------------------ */

body.lb-disable-scrolling {
    overflow: hidden;
}
.lightboxOverlay {
    position: absolute;
        top: 0;
        left: 0;
    z-index: 9999;
    background-color: var(--gss--color--primary);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 1;
    display: none;
}
.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
    outline: none;
}
.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
}
.lightbox a img {
    border: none;
}
.lb-outerContainer {
    position: relative;
    *zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background-color: var(--gss--color--background);
}
.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
}
.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}
.lb-cancel {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 auto;
    background: url(https://dev2.3n.design/wp-content/themes/gss/inc/images/loading.gif) no-repeat;
    background-size: 16px 16px;
}
.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}
.lb-container > .nav {
    left: 0;
}
.lb-nav a {
    outline: none;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev, .lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
}
.lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(https://dev2.3n.design/wp-content/themes/gss/inc/images/prev.png) left 48% no-repeat;
    background-size: 25px 23px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
       -moz-transition: opacity 0.6s;
         -o-transition: opacity 0.6s;
            transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}
.lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(https://dev2.3n.design/wp-content/themes/gss/inc/images/next.png) right 48% no-repeat;
    background-size: 25px 23px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
       -moz-transition: opacity 0.6s;
         -o-transition: opacity 0.6s;
            transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}
.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    *zoom: 1;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
}
.lb-data {
    padding: 0 4px;
    color: #ccc;
}
.lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em;
}
.lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
}
.lb-data .lb-caption a {
    color: #4ae;
}
.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999999;
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 15px;
    height: 15px;
    background: url(https://dev2.3n.design/wp-content/themes/gss/inc/images/close.png) top right no-repeat;
    background-size: 15px 15px;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
       -moz-transition: opacity 0.2s;
         -o-transition: opacity 0.2s;
            transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

/* --------------------------------------------------------------
= 12. Entry Content
-------------------------------------------------------------- */

.entry-content {
    font-size: clamp(1.125rem, 0.75rem + 0.7813vw, 1.375rem);
	line-height: 1.5em;
    margin-bottom: var(--gss--section--gap);
}
.entry-content a {
	color: var(--gss--color--primary);
	text-decoration: underline;
	transition: color 300ms ease;
}
.entry-content a:hover {
	color: var(--gss--color--secondary);
}
.entry-content a:focus {
    font-weight: 700;
	outline: none;
}
.entry-content p,
.entry-content ul,
.entry-content dl,
.entry-content ol,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content blockquote,
.entry-content hr.wp-block-separator{
	margin-bottom: var(--gss--block--gap);
}
.entry-content h3,
.entry-content h4 {
    padding-top: var(--gss--block--gap);
}
.entry-content sup {
    font-size: 0.75em;
    line-height: 1;
    vertical-align: super;
}
.entry-content > *:last-child {
    margin-bottom: 0;
}
.entry-content ul {
	list-style: disc outside;
    padding-left: calc(var(--gss--margin) * 2);
}
.entry-content ul li {
}
.entry-content ul ul {
	list-style: circle outside;
	margin-bottom: 0;
}
.entry-content .has-text-align-center {
	text-align: center;
}
.entry-content blockquote {
    padding-left: calc(var(--gss--margin) * 3);
}
.entry-content blockquote p:only-child,
.entry-content blockquote p:nth-last-child(2) {
	margin-bottom: 0;
}
.entry-content blockquote cite {
	font-size: clamp(1rem, 0.9402rem + 0.2309vw, 1.125rem);
}
.entry-content hr.wp-block-separator {
	border-top: 1px solid var(--gss--color--primary);
	border-bottom: none;
	max-width: calc(100% - var(--gss--margin) * 2);
}
.entry-content iframe {
    display: block;
}
@media all and (min-width: 48em) {
    .entry-content h4 {
        margin-bottom: 1.3em;
        padding-top: 1.3em;
    }
    .entry-content h4,
	.entry-content .has-small-font-size {
		font-size: clamp(1rem, 0.9402rem + 0.2309vw, 1.125rem);
        line-height: 1.3em;
	}
    .entry-content .has-small-font-size > * {
        margin-bottom: 1.3em;
    }
	.entry-content hr.wp-block-separator {
		max-width: calc(3 / 4 * 100% - var(--gss--margin) * 2);
	}
}
@media all and (min-width: 64em) {
    .entry-content hr.wp-block-separator {
        max-width: calc(1 / 3 * 100% - var(--gss--margin) * 2);
    }
}
@media all and (min-width: 90em) {
    .entry-content hr.wp-block-separator {
        max-width: calc(2 / 3 * 100% - var(--gss--margin) * 2);
    }
}
@media all and (min-width: 100em) {
    .entry-content hr.wp-block-separator {
        max-width: calc(1 / 2 * 100% - var(--gss--margin) * 2);
    }
}

/* --------------------------------------------------------------
= 13. Blocks
-------------------------------------------------------------- */

.entry-content > * {
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 var(--gss--margin);
}
.entry-content .alignfull {
    max-width: calc(100% + var(--gss--gutter) * 2);
    margin-left: calc(-1 * var(--gss--gutter)) !important;
    margin-right: calc(-1 * var(--gss--gutter)) !important;
    padding: 0 !important;
}
@media all and (min-width: 48em) {
    .entry-content > * {
        max-width: calc(3 / 4 * 100%);
    }
    .entry-content > .aligncenter > * {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100%;
    }
    .entry-content > .alignwide,
    .entry-content > .alignleft,
    .entry-content > .alignright {
        max-width: 100%;
    }
    .entry-content > .aligncenter * {
        max-width: 100%;
    }
}
@media all and (min-width: 64em) {
    .entry-content > .alignleft,
    .entry-content > .alignright {
        max-width: calc(7 / 8 * 100%);
    }
    .entry-content > .alignleft {
        margin-right: calc(1 / 8 * 100%) !important;
    }
    .entry-content > .alignright {
        margin-left: calc(1 / 8 * 100%) !important;
    }
}
@media all and (min-width: 90em) {
    .entry-content > * {
        max-width: calc(2 / 3 * 100%);
    }
    .entry-content > .alignleft,
    .entry-content > .alignright {
        max-width: calc(5 / 6 * 100%);
    }
    .entry-content > .alignleft {
        margin-right: calc(1 / 6 * 100%) !important;
    }
    .entry-content > .alignright {
        margin-left: calc(1 / 6 * 100%) !important;
    }
}
@media all and (min-width: 100em) {
    .entry-content > * {
        max-width: calc(1 / 2 * 100%);
    }
    .entry-content > .alignleft,
    .entry-content > .alignright {
        max-width: calc(3 / 4 * 100%);
    }
    .entry-content > .alignleft {
        margin-right: calc(1 / 4 * 100%) !important;
    }
    .entry-content > .alignright {
        margin-left: calc(1 / 4 * 100%) !important;
    }
}

/* Block: Image  --------------------------------------------- */

.entry-content img {
	display: block;
	height: auto;
	max-width: 100%;
}
.entry-content .wp-block-image {
    margin-bottom: var(--gss--block--gap) !important;
}
.entry-content .wp-block-image figcaption {
	font-size: clamp(1rem, 0.9402rem + 0.2309vw, 1.125rem);
    line-height: 1.5em;
    margin: 5px 0 0 !important;
	padding: 0;
}
.entry-content .alignfull figcaption {
    padding-left: calc(var(--gss--margin) + var(--gss--gutter));
}
.wp-block-image .aligncenter>figcaption, 
.wp-block-image .alignleft>figcaption, 
.wp-block-image .alignright>figcaption, 
.wp-block-image.aligncenter>figcaption, 
.wp-block-image.alignleft>figcaption, 
.wp-block-image.alignright>figcaption {
    display: block !important;
}
@media all and (min-width: 48em) {
    .entry-content figcaption {
        font-size: 0.75em;
    }	
}

/* Block: Columns -------------------------------------------- */

.entry-content > .wp-block-columns {
    margin-bottom: 0;
    padding-right: 0;
    padding-left: 0;
}
.entry-content > .wp-block-columns > .wp-block-column {
    margin-bottom: 0;
    padding: 0 var(--gss--margin);
}
@media all and (min-width: 48em) {
    .entry-content > .wp-block-columns {
        flex-wrap: nowrap !important;
        margin-bottom: var(--gss--block--gap);
    }
}

/* Block: Embed ---------------------------------------------- */

.wp-block-embed,
.wp-block-video {
    margin-bottom: var(--gss--block--gap) !important;
}
.wp-block-video audio,
.wp-block-video video,
.wp-block-embed iframe {
	width: 100%;
}
.wp-block-embed .wp-block-embed__wrapper {
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
}
.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper {
	padding-bottom: 75%; /* 4:3 */
}
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
	padding-bottom: 56.25%; /* 16:9 */
}
.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper {
	padding-bottom:  41.5625%; /* 21:9 */
}
.wp-block-embed .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* --------------------------------------------------------------
= 14. Site Pagination
-------------------------------------------------------------- */

#site-pagination {
    border-bottom: 1px solid var(--gss--color--primary);
    display: flex;
    flex-wrap: nowrap;
    padding-top: calc(var(--gss--margin) * 3);
    padding-bottom: calc(var(--gss--margin) * 3);
}
#site-pagination .nav {
    font-size: 1.125em;
    font-weight: 400;
    line-height: 1.5em;
    text-transform: uppercase;
    width: calc(1 / 3 * 100%);
    white-space: nowrap;
}
#site-pagination .nav.nav--prev {
    text-align: left;
}
#site-pagination .nav.nav--pages {
    text-align: center;
}
#site-pagination .nav.nav--next {
    text-align: right;
}
#site-pagination .nav a {
    color: var(--gss--color--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 300ms ease;
}
#site-pagination .nav a:hover {
    color: var(--gss--color--secondary);
}
#site-pagination .nav a .arrow {
    font-variation-settings: "wght" 500;
    vertical-align: bottom;
}
@media all and (min-width: 48em) {
    #site-pagination .nav--wrapper {
        padding-top: calc(var(--gss--gutter) + var(--gss--margin));
        padding-bottom: calc(var(--gss--gutter) + var(--gss--margin));
    }
}

/* --------------------------------------------------------------
= 15. Footer
-------------------------------------------------------------- */

/* Newletter Form -------------------------------------------- */

#newsletter-form {
    margin-bottom: var(--gss--section--gap);
}
#newsletter-form .newsletter-form--wrapper {
    background-color: var(--gss--color--secondary);
    padding: calc(var(--gss--gutter) + var(--gss--margin) - 6px) calc(var(--gss--gutter) + var(--gss--margin)) calc(var(--gss--gutter) + var(--gss--margin));
}
#newsletter-form .newsletter--title {
    font-size: clamp(1.5rem, 0.375rem + 2.3438vw, 2.25rem);
    line-height: 1em;
    margin-bottom: 16px;
    white-space: nowrap;
}
.mc_merge_var {
    display: flex;
    flex-direction: column-reverse;
}
#mc-indicates-required,
#mc_display_rewards {
    display: none;
}
#mc_message {
    margin-bottom: 0.5em;
    width: 100%;
}
.mc_merge_var {
    margin-bottom: 1.25em !important;
}
.mc_merge_var label {
    font-weight: 700;
    margin-top: 0.5em;
    margin-bottom: 0;
    text-transform: uppercase;
}
.mc_merge_var label span {
    color: var(--gss--color--orange);
    margin-left: 3px;
}
.page-template-page-conversations .mc_merge_var label span,
.single-gss_convos  .mc_merge_var label span { color: var(--gss--color--salmon) } 
.page-template-page-news .mc_merge_var label span,
.single-post .mc_merge_var label span { color: var(--gss--color--yellow) } 
.single-gss_event .mc_merge_var label span,
.page-template-page-events .mc_merge_var label span { color: var(--gss--color--teal) }

.mc_merge_var input[type="text"],
.mc_merge_var input[type="email"] {
    border: none;
    font-size: 1em;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    width: 100%;
}
.mc_merge_var input[type="text"]:focus,
.mc_merge_var input[type="email"]:focus {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	outline: none;
}
.mc_signup_submit #mc_signup_submit {
    margin-top: 0;
    padding: 0 !important;
    width: 100% !important;
}
.mc_signup_submit input[type="submit"] {
    background-color: var(--gss--color--orange);
    border: none;
    color: #fff;
    font-size: 1.125em;
    font-weight: 700;
    height: 40px;
    line-height: 40px;
    text-transform: uppercase;
    transition: all 300ms ease;
    width: 100%;
}
.page-template-page-conversations .mc_signup_submit input[type="submit"],
.single-gss_convos .mc_signup_submit input[type="submit"] { background-color: var(--gss--color--salmon) } 
.page-template-page-news .mc_signup_submit input[type="submit"],
.single-post .mc_signup_submit input[type="submit"] { background-color: var(--gss--color--yellow); color: var(--gss--color--primary) }
.single-gss_event .mc_signup_submit input[type="submit"],
.page-template-page-events .mc_signup_submit input[type="submit"] { background-color: var(--gss--color--teal) }

.mc_signup_submit input[type="submit"]:hover {
    background-color: var(--gss--color--primary);
    color: var(--gss--color--background);
}
.mc_signup_submit form.sent .wpcf7-response-output {
    border-color: var(--gss--color--primary);
    margin: 2em 0 1em;
    padding: 0.2em 0.5em 0.1em;
}
@media ( min-width: 48em ) {
    #newsletter-form .newsletter-form--wrapper {
        padding: calc(var(--gss--gutter) + var(--gss--margin) - 6px) calc(var(--gss--gutter) + var(--gss--margin)) calc(var(--gss--gutter) + var(--gss--margin) - 1.25em);
    }
    #newsletter-form .newsletter--title {
        margin-bottom: 11px;
    }
    .mc_form_inside {
        display: flex;
        flex-wrap: wrap;
        gap: 0 calc(var(--gss--gutter) + var(--gss--margin));
    }
    .mc_merge_var,
    .mc_signup_submit {
        width: calc(50% - var(--gss--margin));
    }
    .mc_merge_var input[type="text"],
    .mc_merge_var input[type="email"] {
        height: 50px;
    }
    .mc_merge_var input[type="text"],
    .mc_merge_var input[type="email"] {
        font-size: 18px;
    }
    .mc_signup_submit input[type="submit"] {
        height: 50px;
        line-height: 50px;
        width: calc(50% - var(--gss--margin));
    }
}
@media ( min-width: 64em ) {
    #newsletter-form .newsletter-form--wrapper {
        padding: calc(var(--gss--gutter) + var(--gss--margin) - 5px) calc(var(--gss--gutter) + var(--gss--margin)) calc(var(--gss--gutter) + var(--gss--margin) - 1.4em);
    }
    .mc_merge_var,
    .mc_signup_submit {
        width: calc(25% - var(--gss--margin) * 1.5);
    }
}

/* Site Footer ----------------------------------------------- */

#site-footer {
    background-color: var(--gss--color--primary);
    color: var(--gss--color--background);
    padding-top: 34px;
}
#site-footer h6 {
    font-size: 1.125em;
    letter-spacing: 0.02em;
    line-height: 1.333em;
    text-transform: uppercase;
}
#site-footer ul {
    font-size: 1.25em;
    line-height: 1.333em;
    margin-bottom: 1.5em;
}
#site-footer ul li {
    white-space: nowrap;
}
#site-footer a {
    color: var(--gss--color--background);
    text-decoration: none;
    transition: color 300ms ease;
}
#site-footer a:hover {
    color: var(--gss--color--secondary);
}
#site-footer .back-to-top {
    cursor: pointer;
    font-size: 1.25em;
}
#back-to-top {
    display: none;
    letter-spacing: 0.02em;
}
.copyright-wrapper {
    border-top: 1px solid var(--gss--color--background);
    display: flex;
    line-height: 50px;
}
.copyright-wrapper #copyright {
    flex: 1;
}
.copyright-wrapper .back-to-top {
    text-align: right;
    width: 20px;
}
.back-to-top {
    transition: color 300ms ease;
}
.back-to-top:hover {
    color: var(--gss--color--secondary);
}
@media all and (min-width: 48em) {
    #site-footer--about {
        display: flex;
    }
    #site-footer h6 {
        margin-bottom: 1em;
    }
    #site-footer--about .column {
        width: calc(1/3 * 100%);
    }
}
@media all and (min-width: 64em) {
    #site-footer--about .column {
        width: calc(1/4 * 100%);
    }
    #back-to-top {
        display: block;
        font-size: 1.125em !important;
        font-weight: 900;
        line-height: 1.333em;
        text-align: right;
        text-transform: uppercase;
    }
    .copyright-wrapper .back-to-top {
        display: none;
    }
}

/* --------------------------------------------------------------
= 16. Transitions
-------------------------------------------------------------- */

body {
    opacity: 0;
    transition: opacity 500ms ease;
}
body.page--loaded {
    opacity: 1;
}

/* --------------------------------------------------------------
= 17. Accessibility
-------------------------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}