/**
 * Theme Name: Shingo
 * Template:   twentytwentyfour
 * Version: 26.03.08.13
 */

 /* Variables */

 :root {
    --white: #ffffff;
    --black: #232525;
    --mid-gray: #eeeeee;
    font-family: "Helvetica Neue";
}

.no-block-margins {
	margin-block-start: 0;
}

:where(.wp-site-blocks) > * {
    margin-block-start: 5rem;
    margin-block-end: 0;
}

footer {
    margin-block-start: 0;
}

main {
    padding-bottom: 5rem;
}
.wp-block-navigation__container.has-roboto-condensed-font-family {
    font-family: "roboto-condensed", Helvetica, sans-serif !important;
}

/* --- footer --- */

footer img {
    min-height: 59px;
    overflow: visible;
}


/* --- icons --- */
.fa-angles-right, .fa-angles-left {
    font-size: .8rem;
    vertical-align: middle;
}

/* --- forms --- */
body {
    accent-color: var(--wp--preset--color--gold);
}
select {
    font-size: 1rem;
}

/* --- custom slider --- */

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0 2rem;
}
.slider-container > div{
    display: none;
}
.slider-container > .current-slide{
    opacity: 1;
    transition: opacity 0.75s ease-in;
    display: flex;
}
.slider-container .slide-faded {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.slider-container .slider-arrow {
    display: block;
    opacity: 1;
    cursor: pointer;
    font-size: larger;
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border-left: 3px solid white;
    border-top: 3px solid white;
    margin: 0 auto;
}
.slider-container .slider-arrow-back {
    transform: rotate(-45deg);
}
.slider-container .slider-arrow-forward {
    transform: rotate(135deg);
}

/* --- Utility --- */
.flex-container {
    display: flex;
}
.d-inline {
    display: inline;
}
.hidden {
    display: none!important;
}
.force-wide {
    max-width: var(--wp--style--global--wide-size);
    margin-left: var(--wp--preset--spacing--50);
    margin-right: var(--wp--preset--spacing--50);

}
.force-narrow {
    max-width: var(--wp--style--global--content-size);
    margin-left: var(--wp--preset--spacing--50);
    margin-right: var(--wp--preset--spacing--50);
}
.force-padding {
    padding-right: var(--wp--style--root--padding-right);
    padding-left: var(--wp--style--root--padding-left);
}
@media only screen and (min-width: 1100px) {
    .force-narrow, .force-wide {
        margin: auto;
    }  
}
.italic {
    font-style: italic;
}
.muted {
    opacity: 0.7;
}
.opacity-0 {
    opacity: 0;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.no-top-padding {
    padding-top: 0;
}
.no-top-margin {
    margin-top: 0;
}
.no-bottom-padding {
    padding-bottom: 0;
}
.padded-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: var(--wp--preset--spacing--50);
    padding-right: var(--wp--preset--spacing--50);
}
.col-gap-3 {
    column-gap: 3rem;
}

/* --- dropdowns --- */
.dropdown {
    display: flex;
    flex-direction: column;
}
.dropdown-gold >* {
    border-radius: 5px;
}
.dropdown-header {
    background-color: var(--wp--preset--color--gold);
    color: white;
    padding: .7rem 1.5rem;
    text-transform: capitalize;
    font-weight: 700;
    display: flex;
    cursor: pointer;
}
.dropdown-header::after {
    content: ' ';
    position: relative;
    top: 4px;
    right: 1px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    margin-left: 1rem;
    transform: rotate(45deg) translateY(3px);
}
.dropdown.open .dropdown-header::after, .open.dropdown-header::after {
    transform: rotate(225deg) translateY(5px);
    top: 13px;
    right: 7px;
}
.dropdown.open .dropdown-body {
    max-height: 320px;
    height: auto;
    visibility: visible;
    transition: max-height .3s;
    padding: 1rem;
}
.dropdown-close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: .25rem;
    right: 1rem;
    color: var(--wp--preset--color--grey);
    font-size: 2rem;
}
.dropdown-body .filter-section {
    opacity: 0;
}
.dropdown.open .dropdown-body .filter-section {
    opacity: 1;
    transition: opacity .4s;
}
.dropdown-body {
    background-color: white;
    max-height: 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: max-height .5s;
    visibility: hidden;
}

/* --- icons --- */
.arrow-icon {
    display: block;
    font-size: 3rem;
    transform: scaleX(1.5);
}

 /* --- cards --- */

.card {
	border: 1px solid #dddede;
    width: 100%;
    max-width: 450px;
    min-width: 300px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin: auto;
    display: flex;
    flex-direction: column;
}
a.card, div.card {
    height: 100%;
    text-decoration: none;
    color: var(--wp--preset--color--black);
    transition: all 200ms;
}
a.card:hover {
    transform: scale(1.03);
    transition: all 200ms;
    box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px;
}
.card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
.card-body > h2 {
    margin-top: 0;
    font-size: larger;
}
.card-title {
    font-weight: 800;
    text-align: center;
}
.card-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media only screen and (min-width: 800px) {
    .card-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (min-width: 1100px) {
    .card-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media only screen and (min-width: 1450px) {
    .card-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
.card .lined-header {
    margin-top: 1rem;
}
.card-footer {
    margin-top: auto;
}

/* --- buttons & tags --- */
.wp-block-button > a {
    font-family: "roboto-condensed", Helvetica, sans-serif;
    font-weight: 600;
    font-size: 18.6667px;
}
.wp-block-button__link:hover:not([class^="is-style"]) {
  	background-color: #A16D27;
    color: white;
}
.is-style-outline .wp-block-button__link:hover {
	background: rgba(255,255,255,.15)!important;
}
.button-list {
    gap: 1rem;
}
a.link-button {
    text-decoration: none!important;
}
a.link-button-disabled {
    opacity: 0.8;
    pointer-events: none;
    color: var(--wp--preset--color--red);
    
}
a.link-button-arrow::after {
    content: "";
    height: 7px;
    width: 7px;
    margin-bottom: 1px;
    border-top: 3px solid var(--wp--preset--color--blue-improve);
    border-right: 3px solid var(--wp--preset--color--blue-improve);
    display: inline-block;
    transform: rotate(45deg);
}
a.link-button-arrow-left::before {
    content: "";
    height: 7px;
    width: 7px;
    margin-bottom: 1px;
    border-top: 3px solid var(--wp--preset--color--blue-improve);
    border-right: 3px solid var(--wp--preset--color--blue-improve);
    display: inline-block;
    transform: rotate(-135deg);
}
a.link-button-disabled::after {
    display: none;
}
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.tag {
    background-color: #EEEFEF;
    color: var(--black);
    padding: 3px 12px 4px;
    font-size: smaller;
    border-radius: 15px;
}
.tag-dark {
    color: var(--white);
}
.button-gold {
    background-color: var(--wp--preset--color--gold);

}
.button-grey {
    background-color: var(--wp--preset--color--grey);
}
.button-blue {
    background-color: var(--wp--preset--color--blue);
}
.button-blue:hover {
    opacity: .9;
    background-color: var(--wp--preset--color--blue) !important;
}
.button-transparent {
    opacity: 0.75;
}
.button-transparent:hover {
    opacity: 0.88;
}
.button-disabled {
    background-color: var(--wp--preset--color--grey);
    opacity: 0.75;
    pointer-events: none;
}

/* --- typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: "roboto-condensed", Helvetica, sans-serif;
}
.lead {
    font-size: 1.75rem;
    font-weight: 200;
}
.lead-small {
    font-size: 1rem;
    font-weight: 300;
    color: var(--wp--preset--color--grey);
}
.lined-header {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: .5rem;
    white-space: nowrap;
    align-items: center;
    gap: .5rem;
    margin-top: 2.5rem;
}
.line {
    content: " ";
    background-color: #EEEFEF;
    width: 100%;
    height: 2px;
    margin-top: 0.6rem;
    z-index: -1;
    margin-left: 7px;
    flex-grow: .5;
}
.bold {
    font-weight: 700;
}
.light {
    font-weight: 300;
}
.caps {
    text-transform: uppercase;
}
.centered {
    text-align: center;
}

/* --- affiliates --- */
.affiliate-footer .wp-block-group.is-vertical.is-content-justification-stretch {
    flex-direction: column;
    align-items: stretch;
}
.affiliate-footer .wp-block-group.is-content-justification-space-between {
    align-items: start;
}
.affiliates-description {
    margin-bottom: 2rem;
    display: block;
}
.affiliate-list {
    margin-bottom: 3rem;
}
.affiliate-filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
    justify-content: center;
}
.affiliate-filters .dropdown-body::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(0deg, var(--wp--preset--color--grey-light), transparent 30%);
}
.affiliate-filters .filter-header {
    text-transform: capitalize;
    font-family: "roboto-condensed", Helvetica, sans-serif;
    font-weight: 800;
}
.affiliate-filters .filter-groups {
    justify-content: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    column-gap: 2.5rem;
    max-height: 400px;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.affiliate-filters .filter-groups:last-child .filter-group {
    margin-bottom: 40px;
}

.affiliate-filters .filter-section {
    max-width: 270px;
}
.affiliate-filters .filter-group {
    display: flex;
    flex-direction: column;
}
.affiliate-filters .filter-group >span {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    border-bottom: 1px solid white;
    padding: 2px 5px;
}
.affiliate-filters .filter-group >span:hover {
    background-color: white;
}
.affiliate-filters .filter-group input {
    min-width: 15px;
    cursor: pointer;
    transform: scale(1.25);
}
.affiliate-filters .filter-group label {
    cursor: pointer;
}
.affiliate-filters .filter-groups .sort-filter {
    order: 10;
    margin-top: 28px;
    width: auto;
}
.affiliate-filters .sort-filter select {
    min-width: 85px;
}
.affiliate-filters .sort-filter label {
    margin-right: .3rem;
}
.affiliate-filters .clear-button {
    background-color: unset;
    border: 2px solid var(--wp--preset--color--grey);
    color: var(--black);
    padding: 5px 14px;
}
.affiliate-filters .dropdown {
    overflow-x: visible;
    width: 100%;
}
.affiliate-filters .dropdown-body {
    position: relative;
    background-color: var(--wp--preset--color--grey-light);
    box-shadow: none;
}
.affiliate-filters .dropdown.open .dropdown-body {
    text-align: left;
    padding: 2rem;
    max-height: 400px;
    margin-bottom: 3rem;
}
.affiliate-filters .dropdown-header {
    width: max-content;
    background-color: unset;
    border: 2px solid var(--wp--preset--color--grey);
    color: var(--black);
    padding: 5px 14px;
    border-radius: 100px;
    font-weight: 500;

}
.affiliate-filters .filter-groups >div {
    min-width: 100%;
}
@media only screen and (min-width: 740px) {
    .affiliate-filters .filter-groups >div {
        min-width: 220px;
    }
    .affiliate-filters .filter-groups {
        max-height: 500px;
    }
    .affiliate-filters .dropdown.open .dropdown-body {
        max-height: 500px;
    }
}
@media only screen and (min-width: 1100px) {
    .affiliate-filters .filter-groups {
        flex-direction: row;
    }
}
.affiliate-card {
    order: 1;
}
.affiliate-last {
    order: 2;
}
.affiliate-card .card-img {
    padding: 1rem;
    padding-bottom: 0;
}
.affiliate-card .card-body {
    padding: 1rem 1.5rem;
}
.affiliate-card .affiliate-title {
    text-align: center;
}
.affiliate-card .lined-header {
    font-size: medium;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: .5rem;
    white-space: nowrap;
}
.affiliate-card .line {
    content: " ";
    background-color: #EEEFEF;
    width: 100%;
    height: 2px;
    margin-top: 0.6rem;
    z-index: -1;
    margin-left: 7px;
    flex-grow: .5;
}
.affiliate-card ul {
    font-size: small;
    padding-left: 1rem;
    flex-wrap: wrap;
    display: flex;
    column-gap: 1.75rem;
}
.affiliate-card .rating {
    margin-top: 0;
    font-size: small;
    font-weight: bold;
}
.affiliate-card .card-img img {
    max-width: 90%;
    min-height: 75px;
    max-height: 90px;
    object-fit: contain;
    display: block;
    margin: 1rem auto;
    height: 100%;
}
.affiliate-card .tag-list {
    justify-content: center;
    margin-bottom: 1rem;
    min-height: 60px;
}
.affiliate-card .tag-list .tag{
    height: min-content;
}
.affiliate-card .card-footer {
    padding: 1.75rem;
    padding-top: 0;
    display: flex;
    justify-content: space-between;
}
.affiliate-card .card-footer .fa-chevron-right {
    font-size: 1rem;
    color: var(--wp--preset--color--grey);
}
.flex-container.intro-container {
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.flex-container.intro-container >p {
    flex: 2;
}
.card-footer .card-button {
    align-self: end;
}
.affiliate-info-section {
    padding: 2rem;
    background-color: var(--mid-gray);
}
.single-affiliate-logo {
    width: 500px;
    max-width: 100%;
    max-height: 200px;
    display: block;
    flex: 1;
    object-fit: contain;
    margin-bottom: 2rem;
    margin-top: 3rem;
}
.star-rating-group {
    display: flex;
    align-items: center;
    gap: 1px;
}
.star-rating-group .rating-item {
    padding-right: 5px;
    line-height: 0;
    margin: 0;
}
.star-rating-group .reviews {
    font-size: small;
    padding-left: 5px;
    padding-top: 2px;
    display: block;
    margin: 0;
}
.star-rating-group .fa {
    color: var(--wp--preset--color--gold);
}
.star-rating-group .fa-regular.fa-star {
    color: var(--wp--preset--color--gold);
}
.become-affiliate {
    background-color: var(--wp--preset--color--blue);
    color: white;
    padding: 4rem 2.5rem 5rem;
}
.become-affiliate h2 {
    color: white;
}
.become-affiliate p, .become-affiliate ul {
    font-size: large;
}
.become-affiliate .wp-element-button {
    width: max-content;
}
#affiliate-archive footer {
    margin-top: 0;
}
.single-affiliate-page {
    margin-bottom: 4rem;
}
.workshop-icons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.card .workshop-icons-container {
    justify-content: center;
    gap: 0.2rem;
}
.workshop-icons-container img {
    width: 100px;
}
.card .workshop-icons-container img {
    width: 42px;
}



/* --- facilitators --- */
.facilitator-card {
    display: flex;
    gap: 1.5rem;
    margin: 2rem;
    margin-bottom: 4rem;
    position: relative;
    flex-wrap: wrap;

}
@media only screen and (min-width: 740px) {
    .facilitator-card {
        flex-wrap: nowrap;
        gap: 2rem;
        margin-bottom: 3rem;
    }
}
.facilitator-card .facilitator-info {
    flex-basis: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}
.facilitator-card h3 {
    margin: 0;
}
.facilitator-card .bio, .facilitator-card .bio p {
    margin: 0;
}
.facilitator-image {
    max-width: 350px;
}
.facilitator-card .wp-block-button {
    margin-top: 1rem;
}
/* --- profile directory --- */

.facilitator-profile, .person-profile {
    position: relative;
    gap: 2rem;
    flex-wrap: wrap;
}
@media only screen and (min-width: 740px) {
    .facilitator-profile, .person-profile {
        flex-wrap: nowrap;
    }
}
.facilitator-card .profile-image, .facilitator-page .profile-image, .person-page .profile-image {
    min-width: 300px;
    max-width: 300px;
    width: 100%;
    height: 370px;
    align-self: center;
    object-fit: cover;
    object-position: center top;
}
.facilitator-card .image-container, .facilitator-page .image-container, .person-page .image-container {
    min-width: 300px;
    max-width: 300px;
    width: 100%;
}
.facilitator-profile .img-wrapper, .person-profile .img-wrapper {
    flex-grow: 1;
}
.facilitator-page .facilitator-info, .person-page .facilitator-info, .person-page .person-profile {
    flex-grow: 100;
}
.profile-card {
    position: relative;
    min-height: 441px;
}
.profile-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: 50% 15%;
    background-color: #cccccc;
}
.profile-card .card-title {
    margin-bottom: 0;
}
.profile-card .organization-name {
    text-align: center;
}
.profile-card .image-container, .facilitator-card .image-container, .facilitator-page .image-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.image-badges {
    position: absolute;
    top: 20px;
    left: -10px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: start;
}
.profile-badge {
    color: white;
    background-color: var(--wp--preset--color--grey);
    padding: 7px 12px;
    box-shadow: rgba(51, 53, 55, 0.3) 2px 4px 5px;
    font-family: "roboto-condensed", Helvetica, sans-serif;
    font-size: .8rem;
    border-top-left-radius: .5rem;
    position: relative;
}
.profile-badge::before {
    content: "";
    background-color: black;
    opacity: .4;
    width: 15px;
    height: 12px;
    position: absolute;
    z-index: -1;
    left:2px;
    bottom: -7px;
    transform: rotate(45deg);
}
.examiner-badge {
    background-color: #007DA3;
}
.master-trainer-badge {
    background-color: #961802;
}
.shingo-staff-badge {
    background-color: var(--wp--preset--color--blue);
}
.facilitator-badge {
    background-color: #2e9930;
}
.academy-badge {
    background-color: var(--black);
}
.fellow-badge {
    background-color: var(--wp--preset--color--brown);
}
.profile-card .icon-contact-item {
    display: flex;
    gap: .8rem;
    align-items: center;
    margin: 0;
    margin-top: .5rem;
    justify-content: center;
}
.directory-list-basic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media only screen and (min-width: 740px) {
    .directory-list-basic {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
.directory-list-basic-item {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}
.directory-list-basic-item .img-container {
    height: 75px;
    width: 75px;
    border-radius: 100%;
    overflow: hidden;
}
.directory-list-basic-item .img-container img {
    width: 75px;
}
.directory-list-basic-item h3 {
    font-size: 1.5rem;
    margin: 0;
    margin-bottom: .5rem;
}
.directory-list-basic-item p {
    margin: 0;
}
.workshop-comment {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
}
.workshop-comment p {
    margin: 0;
}
.workshop-comment .quote-icon {
    color: var(--wp--preset--color--blue-improve);
    font-size: 2rem;
    margin: 0;
    margin-bottom: .75rem;
    opacity: .7;
    line-height: 1rem;
    transform: rotate(180deg);
}

/* --- Directory Text --- */

.profile-card-text {
    text-align: left;
}
.profile-card-text .card-body {
    padding: 1.25rem 1.5rem;
}
.profile-card-text h2 {
    text-align: left;
    margin-bottom: 0;
}


/* --- Examiner Page --- */

@media only screen and (min-width: 740px) {
    .examiner-page .directory-list-basic, .examiner-page .directory-list {
        margin-bottom: 5rem;
    }
}


/* Alumni Page */

.alumni-list .card {
    border: 0;
    background: #734E2A;
    background: linear-gradient(121deg,rgba(115, 78, 42, 1) 0%, rgba(62, 79, 35, 1) 15%, rgba(122, 191, 223, 1) 30%, rgba(22, 129, 196, 1) 47%, rgba(0, 55, 104, 1) 66%, rgba(176, 122, 50, 1) 84%, rgba(100, 9, 33, 1) 100%);
    padding: 2px;
    position: relative;
}
.alumni-list .card-body {
    background-color: white;
    height: 100%;
}
.alumni-list .card-body p {
    margin-bottom: 0;
}
.alumni-list .card-title {
    max-width: 80%;
}
.alumni-list .card-body .lead {
    position: absolute;
    right: 0;
    top: 0;
    margin: 1.2rem 1.5rem;
    font-size: 1.2rem;
}
.button-list.filter-buttons {
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
#alumni-year-list .wp-element-button {
    padding: 0.4rem 1.5rem;
}



/* --- shingo challenge --- */

.challenge-page {
    margin-top: 0;
}
.challenge-page section.info {
    padding: 4rem;
}
.challenge-video-banner {
    background-color: black;
    padding-top: 4rem;
    color: white;
    position: relative;
    height: 450px;
    overflow: hidden;
    scroll-behavior: smooth;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 20px solid #B07A32;
}
.challenge-video-banner .video-container {
    height: 90%;
    width: auto;
    max-width: 85vw;
    position: absolute;
    bottom: 0;
    opacity: 0.35;
    transition: opacity 1s ease;
}
.challenge-video-banner canvas {
    position: relative;
    max-width: 100%;
    object-position: top;
    height: auto;
}
@media only screen and (min-width: 1100px) {
    .challenge-video-banner {
        height: 75vh;
        max-height: 700px;
        padding-bottom: 107px;
    }
    .challenge-video-banner canvas {
        position: relative;
        bottom: 0;
        object-position: bottom;
        width: 100%;
        height: 100%;
        max-height: 900px;
        max-width: 550px;
        object-fit: contain;
    }
    .challenge-video-banner .background-overlay {
        position: absolute;
        /* background: linear-gradient(110deg, rgba(0,0,0,0), black 40%); */
        height: 150%;
        width: 150%;
        left: -20px;
        top: -20px;
    }
    .challenge-video-banner::after {
        content: "";
        position: absolute;
        background: no-repeat url("https://res.cloudinary.com/shingo/image/upload/a_180/v1750107219/Web/Awards%20Page%20Assets/overlay-light.png");
        background-size: cover;
        background-position: left;
        height: 110%;
        width: 100%;
        opacity: 0.8;
    }
    .challenge-video-banner .video-container {
        max-width: 33%;
        width: 550px;
        right: 10%;
        opacity: 1;
    } 
    .challenge-video-banner .video-container::before {
        content: "";
        height: 100%;
        width: 100%;
        background-color: black;
    }
    .challenge-video-banner .video-side-content h1{
        margin-top: 33%;
    }
}
.challenge-video-banner h1 {
    color: white;
    font-size: 4rem;
    line-height: 1.2;
    padding: 1rem;
}
.challenge-video-banner h1 span {
    font-size: 3rem;
    font-weight: 100;
}
.challenge-video-banner .video-side-content {
    position: absolute;
    width: 100%;
    text-align: center;
}
.challenge-video-banner .video-side-content > div {
    max-width: 500px;
    margin: auto;
}
@media only screen and (min-width: 1100px) {
    .challenge-video-banner h1 {
        font-size: 6rem;
    }
    .challenge-video-banner .video-side-content {
        text-align: right;
    } 
    .challenge-video-banner .video-side-content > div {
        margin: 0;
    }
}
.below-banner-content {
    margin-top: 4rem;
}



/* --- shingo challenge --- */

.award-list {
    gap: 2.5rem;
    row-gap: 4rem;
}
.award-card .image-container {
    padding: 2rem;
    background-color: white;
    height: 150px;
}
.award-card .award-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.award-card {
    background-color: var(--wp--preset--color--blue);
    padding-top: 1rem;
    color: white;
    position: relative;
}
.award-card .card-body {
    min-height: 200px;
    background-color: var(--wp--preset--color--blue);
    padding-bottom: 20px;
}
.award-card .card-title, .award-card .card-body {
    text-align: center;
    color: white;
}
.award-card .card-body h2 {
    font-size: 1.55rem;
}
.award-card .card-body p {
    margin-top: 0;
}
.award-level-ribbon {
    background-color: var(--wp--preset--color--gold);
    color: white;
    font-size: 18.6667px;
    font-weight: 800;
    font-family: "roboto-condensed", Helvetica, sans-serif;
    padding: 7px 9px 7px;
    height: 30px;
    position: relative;
    bottom: 2rem;
    margin-top: 1rem;
}
.award-level-ribbon img {
    position: absolute;
    width: 80px;
    -webkit-filter: drop-shadow(0px 3px 5px rgba(50, 50, 60, .25));
    filter: drop-shadow(0px 3px 5px rgba(50, 50, 60, .25));
    bottom: -20px;
    left: 15px;
}
.award-level-ribbon span {
    display: block;
    text-align: center;
    vertical-align: middle;
}
.award-level-ribbon.shingo-prize img {
    bottom: -50px;
    left: 15px;
}

.award-page .card-filter .dropdown-body {
    width: 300px;
    align-self: center;
}



/* --- process steps --- */

.nfd-gap-md.wp-block-group {
    max-width: 700px;
}
.nfd-rounded {
    padding: 0.75rem 1rem;
}
.nfd-rounded-full {
    width: 32px;
    height: 32px;
}
.nfd-rounded-full > p {
    text-align: center;
    display: block;
    margin: auto;
}
.nfd-text-faded {
    align-self: flex-end;
}
.nfd-gap-sm {
    flex: 100;
    justify-content: space-between;
}


/* --- staff contact pattern --- */

.pattern-staff-contact img {
    object-position: top;
    display: block;
    margin: auto;
}
.pattern-staff-contact .staff-contact-details-col {
    text-align: center;
}

@media only screen and (min-width: 740px) {
    .pattern-staff-contact .staff-contact-details-col {
        text-align: left;
    }
}

/* --- image button pattern --- */

.pattern-image-button {
    position: relative;
    margin-block-start: 0;
}
.pattern-image-button img {
    filter: grayscale()!important;
}
.pattern-image-button .wp-block-buttons {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    margin-block-start: 0;
}
.pattern-image-button .wp-block-button {
    height: 100%;
    width: 100%;
}
.pattern-image-button a {
    background-color: transparent;
    word-wrap: break-word;
    font-size: 1.75rem;
}
.pattern-image-button a::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    padding-left: 1rem;
}
.pattern-image-button a:hover {
    background-color: transparent!important;
}
.pattern-image-button .image-overlay-pattern-image-button {
    background-color: var(--wp--preset--color--blue-align);
    opacity: 0.82;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin-block-start: 0;
}

/* --- shingo academy page --- */

.academy-page .card-list {
    margin-top: 3rem;
}
.academy-page .card {
    border: 2px solid var(--black) ;
    background-color: white;
    padding: 2px;
    min-height: 150px;
}
.academy-page .card-body {
    background-color: var(--black);
    height: 100%;
    color: white;
}
.academy-page .card-body h2 {
    color: white;
}


/* --- shingo model page --- */

.diamond-icons-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.diamond-icons-container .other-diamonds-icon {
    width: 150px;
}
.diamond-icons-container .individual-diamond-img {
    width: 300px;
}

.model-grid {
    display: grid;
    grid-template-columns: 1fr 300px 300px 300px 1fr;
    grid-template-rows: 300px 300px 300px;
    margin-top: 10rem;
}
.model-diamond h2 {
    color: white;
    text-align: center;
    margin: 0;
    font-size: 1.75rem;
}
.model-grid .model-diamond::before {
    content: "";
    height: 213px;
    width: 213px;
    display: block;
    position: absolute;
    z-index: -1;
    transform: rotate(45deg);
}
.model-grid .model-diamond {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.model-grid .diamond-guiding-principles {
    grid-row-start: 1;
    grid-column-start: 3;
}
.model-grid .diamond-guiding-principles::before {
    background-color: var(--wp--preset--color--blue);
}
.model-grid .diamond-results {
    grid-row-start: 2;
    grid-column-start: 2;
}
.model-grid .diamond-results::before {
    background-color: var(--wp--preset--color--gold);
}
.model-grid .diamond-culture {
    grid-row-start: 2;
    grid-column-start: 3;
}
.model-grid .diamond-culture::before {
    background-color: var(--wp--preset--color--violet);
}
.model-grid .diamond-systems {
    grid-row-start: 2;
    grid-column-start: 4;
}
.model-grid .diamond-systems::before {
    background-color: var(--wp--preset--color--green);
}
.model-grid .diamond-tools {
    grid-row-start: 3;
    grid-column-start: 3;
}
.model-grid .diamond-tools::before {
    background-color: var(--wp--preset--color--red);
}

/* Pagination */

.pagination {
   position:relative;
   display: flex;
   width: 100%;
   flex-direction: row;
   justify-content: center;
   margin-top: 3rem;
   flex-wrap: wrap;
}
.pagination p {
    width: 100%;
    text-align: center;
}
.pagination span, .pagination a {
   display:block;
   color: var(--wp--preset--color--grey);
   margin: 2px 2px 2px 0;
   padding:6px 9px 5px 9px;
   text-decoration:none;
   width:auto;
   -webkit-transition: color .15s ease-in-out;
   -moz-transition: color .15s ease-in-out;
   -ms-transition: color .15s ease-in-out;
   -o-transition: color .15s ease-in-out;
   transition: color .15s ease-in-out;
}
.pagination a:hover{
   color: var(--wp--preset--color--gold);
}
.pagination .current{
   padding:6px 9px 5px 9px;
   color: var(--wp--preset--color--gold);
   font-weight: 800;
}




/* --- workshops --- */

.workshop-list {
    margin-bottom: 4rem;
}
.workshop-card {
    position: relative;
    border: 2px solid var(--wp--preset--color--grey-light);
}
.workshop-card.workshop-Discover {
    border-color: var(--wp--preset--color--brown);
}
.workshop-card.workshop-Systems {
    border-color: var(--wp--preset--color--green);
}
.workshop-card.workshop-Align {
    border-color: var(--wp--preset--color--blue-align);
}
.workshop-card.workshop-Improve {
    border-color: var(--wp--preset--color--blue-improve);
}
.workshop-card.workshop-Enable {
    border-color: var(--wp--preset--color--blue-enable);
}
.workshop-card.workshop-Build {
    border-color: var(--wp--preset--color--gold);
}
.workshop-card .card-img {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
}
.workshop-card .card-img img {
    width: 40px;
    height: 40px;
}
.workshop-card .card-body .card-corner {
    width: 0px;
    height: 0px;
    border: 100px solid;
    border-color: white;
    border-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.workshop-card.workshop-Discover .card-corner {
    border-right-color: var(--wp--preset--color--brown);
}
.workshop-card.workshop-Systems .card-corner {
    border-right-color: var(--wp--preset--color--green);
}
.workshop-card.workshop-Align .card-corner {
    border-right-color: var(--wp--preset--color--blue-align);
}
.workshop-card.workshop-Improve .card-corner {
    border-right-color: var(--wp--preset--color--blue-improve);
}
.workshop-card.workshop-Enable .card-corner {
    border-right-color: var(--wp--preset--color--blue-enable);
}
.workshop-card.workshop-Build .card-corner {
    border-right-color: var(--wp--preset--color--gold);
}
.workshop-card .workshop-type {
    text-transform: uppercase;
    padding-right: 50px;
    margin-bottom: 0;
}
.workshop-card .virtual-tag {
    background-color: #640921;
    color: white;
    margin-top: 5px;
    vertical-align: text-top;
}
.workshop-card .card-body {
    padding: 1.5rem;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 0.5rem;
}
.workshop-card .card-body > p {
    margin: 0.7rem 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.workshop-card .card-body > div > p {
    margin: 0.5rem 0;
}
.workshop-card .card-body .host-name {
    margin-bottom: 0;
}
.workshop-list .no-workshops-message {
    grid-column: span 4;
    justify-self: center;
}



/* Award Recipient Page */

.single-recipient-page h1 {
    line-height: 1.5;
}

.single-recipient-page .button-list {
    justify-content: center;
    width: 100%;
    margin-top: 2.5rem;
}

.award-level-block {
    flex-wrap: wrap;
    position: relative;
    height: 300px;
    margin-top: 100px;
    align-content: start;
    justify-content: center;
}

.award-level-block .trophy-image {
    z-index: 99;
    display: none;
}

@media only screen and (min-width: 1100px) {
    .award-level-block .trophy-image {
        display: block;
    }
}

.award-level-block h2 {
    color: white;
}
.recipient-page .award-ribbon, .affiliates-choice-page .awrd-ribbon {
    background-color: var(--black);
    display: block;
    width: 100%;
    height: 50px;
    padding: 1rem;
    text-align: center;
    position: relative;
}

.recipient-page .award-ribbon::after, .affiliates-choice-page .award-ribbon::after {
    content: "";
    background-color: white;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 11px;
    right: -30px;
    transform: rotate(45deg);
}

.award-level-block .trophy-image {
    position: absolute;
    top: -60px;
    left: 8%;
    width: 175px;
}

.award-level-block .logo {
    max-width: 300px;
    max-height: 175px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    top: 0;
}
.single-recipient-page .video-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
.single-recipient-page .trophy-image.silver {
    transform: scale(1.3);
    top: -100px
}
.single-recipient-page .trophy-image.bronze {
    transform: scale(1.3);
    top: -130px
}



/* Home Page */

.home-page {
    padding-bottom: 0;
    margin-top: 0;
}
.home-page .alignfull {
    margin-top: 0;
}
.home-page .home-top-section {
    position: relative;
    padding: 6rem 1rem;
    max-height: 600px;
    overflow: hidden;
    color: white;
    background-color: var(--wp--preset--color--blue);
    border-bottom: 25px solid var(--wp--preset--color--blue);
}

.home-page .home-top-section p {
    font-weight: 500;
}
.home-top-section h1 {
    color: white;
    font-size: 2.5rem !important;
}
.home-page .home-background-img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: fill;
    min-height: 100%;
}
.home-page .model-section {
    padding: 4rem 0 2rem;
}
.home-page .model-section .model-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.home-page .model-section .model-col {
    padding: 1rem;
}
.home-page .model-section .model-col a {
    margin-top: 1rem;
}
.home-page .model-section .model-img {
    box-shadow: rgba(51, 53, 55, 0.5) 2px 4px 15px;
}
@media only screen and (min-width: 670px) {
    .home-page .home-top-section {
        padding: 6rem 0;
    }
    .home-top-section h1 {
        color: white;
        font-size: 3.5rem !important;
    }
    .home-page .model-section .model-col {
        padding: 3rem;
    }
}
@media only screen and (min-width: 1000px) {
    .home-page .model-section .model-row {
        flex-wrap: nowrap;
    }
}
.home-page .journey-section {
    text-align: center;
    padding: 2rem 0 0;
    margin: 3rem 0 0;
}
.home-page .journey-section img {
    margin: 4rem 0;
}
.home-page .journey-section .wp-block-button {
    margin-top: 2rem;
}
.home-page .events-section {
    margin: 3rem 0;
    padding-bottom: 3rem;
    background-color: var(--wp--preset--color--grey-light);
    align-items: center;
}
section.events-section {
    padding: 2rem 1rem 1rem;
    display: flex;
    flex-direction: column;
}
section.events-section.first-section {
    padding-top: 0;
    margin-top: 0;
}
.events-page h2+p {
    margin: 0;
}
.home-page .events-section h2 {
    text-align: center;
}
.home-page .events-section h2+p {
    text-align: center;
    max-width: var(--wp--style--global--content-size);
    margin: 0;
}
.home-page .events-section .events-row {
    justify-content: center;
}
.home-page .events-section .events-row {
    margin-top: 3rem;
}
.events-section .events-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}
.events-section .event-col {
    max-width: 300px;
}
.events-section .event-card {
    border-radius: 35px ;
    background-color: white;
}
.events-section .event-card .card-body {
    height: 100%;
    padding: 2rem;
}
.events-section .img-container {
    position: relative;
    height: 175px;
}
.events-section .main-event-img {
    width: 100%;
    height: 175px;
    border-radius: 35px 35px 0 0 ;
    object-fit: cover;
    object-position: 50% 70%;
}
.events-section .company-logo {
    position: absolute;
    width: 100%;
    height: 75%;
    object-fit: contain;
    left: 0;
    top: 0;
    transform: scale(.6);
    transform-origin: center;
}
.event-card-type-background {
    position: absolute;
    width: 100%;
    height: 50px;
    background-color: black;
    opacity: 0.78;
    bottom: 0;
    left: 0;
}
.event-card .event-card-type {
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event-card .event-type-text {
    font-family: "roboto-condensed", Helvetica, sans-serif;
    padding: 10px;
}
.event-card .speaker-text {
    margin-bottom: 0;
}
.event-card .event-card-type p {
  margin: 0;
  padding: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: auto;
}
.event-card .event-card-type img {
    padding: 15px;
    max-width: 90px;
    object-fit: contain;
}
.events-section h3 {
    margin: 0;
    text-align: left;
    font-size: 1.3rem;
}
.home-page .button-events-end {
    margin-top: 4rem;
}
.home-page .workshops-section {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 4rem 4rem;
    position: relative;
}
.home-page .workshops-section .wp-block-button {
    margin-top: 2rem;
}
.home-page .workshops-section::before {
    content: "";
    opacity: 0.2;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: url("https://res.cloudinary.com/shingo/image/upload/v1772661765/Web/workshop-background.png") no-repeat center;
    background-size: cover;
}
.home-page .workshops-section .workshop-background {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.home-page .workshops-section .workshop-buttons {
    display: flex;
    flex-direction: row;
    gap: 4%;
    justify-content: center;
    margin-bottom: 2rem;
}
.home-page .workshops-section .workshop-buttons img, .workshop-buttons-pattern img {
    max-width: 100px;
    width: 100%;
    min-width: 50px;
    transition: transform .2s ease-in;
}
.home-page .workshops-section .workshop-buttons img:hover, .workshop-buttons-pattern img:hover {
    transform: scale(1.08);
    transition: transform .2s ease-out;
}
.workshop-buttons-pattern {
    max-width: 800px;
}
.home-page .section-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}
.home-page .articles-section {
    flex-basis: 2;
    margin-bottom: 2rem;
}
.home-page .articles-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}
.home-page .article {
    max-width: 300px;
    border-left: 7px solid var(--wp--preset--color--blue-improve);
    padding: 0 30px;
}
.home-page .article h3 {
    margin-bottom: 0;
    margin-top: 0;
    font-size: larger;
}
.home-page .article .article-info-line {
    font-size: small;
}
.home-page .social-section {
    background-color: var(--wp--preset--color--grey-light);
    padding: 3rem;
    text-align: center;
    max-width: 300px;
}
.home-page .social-section h2 {
    display: block;
    margin: 0;
}
.home-page .social-section .social-icons {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
    margin-top: 3rem;
}
.home-page .social-section .social-icons .icon {
    background-color: var(--wp--preset--color--grey);
    border-radius: 100%;
    height: 50px;
    width: 50px;
}
.home-page .social-section .social-icons .icon svg {
    color: var(--wp--preset--color--grey-light);
    fill: var(--wp--preset--color--grey-light);
    height: 40px;
    width: 40px;
    padding-top: 5px;
}
.home-page .challenge-section {
    background-color: var(--wp--preset--color--grey-light);
    padding: 3rem 1rem 5rem;
    margin-top: 0;
    text-align: center;
}
.home-page .challenge-section .card-list {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 3rem;
}
.home-page .challenge-section .award-card {
    max-width: 300px;
    margin: 0;
}
.home-page .challenge-section h2 {
    margin-top: 3rem;
}
.home-page .testimonial-section {
    text-align: center;
    width: 100%;
    background-color: var(--wp--preset--color--blue);
    padding: 2rem 0 3rem;
    min-height: 500px;
    margin-top: 3rem;
    color: white;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
}
.home-page .testimonial-section .quote-container {
    flex-direction: column;
}
.home-page .testimonial-section .quote-from {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    text-align: left;
}
.home-page .testimonial-section img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    object-fit: cover;
}
.home-page .testimonial-section .quote-icon {
    opacity: 0.25;
    margin: 2rem 0;
}


/* Journey */

.journey-page ul {
    list-style: none;
    padding-left: 10px;
}
.journey-page .wp-font-awesome-icon {
    width: 1rem;
    padding-right: 5px;
}
.journey-page .wp-font-awesome-icon svg {
    width: 1rem;
}
.journey-page h2 {
    position: relative;
}
.journey-page h2::before {
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: white;
    border: 12px solid #003f5b;
    position: absolute;
    left: -100px;
    top: -9px
}
.journey-page .educate-group h2::before {
    border-color: #47295a;
}
.journey-page .assess-group h2::before {
    border-color: var(--wp--preset--color--red);
}
.journey-page .improve-group h2::before {
    border-color: #904228;
}
.journey-page .achieve-group h2::before {
    border-color: #b07a32;
}
.journey-page .sustain-group h2::before {
    border-color: var(--black);
}
.journey-page .journey-group {
    position: relative;
}
.journey-page .journey-group::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 15px;
    left: -71px;
    top: 50px;
    background-color: var(--wp--preset--color--blue);
}
.journey-page .sustain-group.journey-group::before {
    display: none;
}
.journey-page .engage-group.journey-group::before {
    background: linear-gradient(#003f5b 5%, #47295a 80%);
}
.journey-page .educate-group.journey-group::before {
    background: linear-gradient(#47295a 5%, var(--wp--preset--color--red) 80%);
}
.journey-page .assess-group.journey-group::before {
    background: linear-gradient(var(--wp--preset--color--red) 5%, #904228 80%);
}
.journey-page .improve-group.journey-group::before {
    background: linear-gradient(#904228 5%,#b07a32 80%);
}
.journey-page .achieve-group.journey-group::before {
    background: linear-gradient(#b07a32 5%, var(--wp--preset--color--black) 80%);
}

/* --- Model Page ---  */

.shingo-model-page {
    padding-bottom: 0;
}
.shingo-model-page .diamond-image {
    display: none;
}
.shingo-model-page .model-subsection::after, .shingo-model-page .model-subsection::before {
    display: none;
}
.shingo-model-page .model-section-prev, .shingo-model-page .model-section-next {
    display: none;
}
@media only screen and (min-width: 1475px) {
    .shingo-model-page .diamond-image {
        display: block;
        position: absolute;
        top: 75px;
        z-index: 5;
    }
    .shingo-model-page .model-subsection {
        position: relative;
    }
    .shingo-model-page .model-subsection::after {
        content: "";
        width: 25px;
        display: block;
        /* background-color: var(--wp--preset--color--grey); */
        height: 100%;
        position: absolute;
        margin-left: 63px;
        padding-top: 50px;
    }
    .shingo-model-page .model-subsection::before {
        content: "";
        width: 25px;
        display: block;
        background-color: var(--wp--preset--color--white);
        height: 100%;
        position: absolute;
        margin-left: 63px;
        margin-top: 120px;
        padding-top: 120px;
        top:0;
        opacity: 100%;
        z-index: 3;
    }
    .shingo-model-page .model-subsection.model-culture::after {
        display: none;
    }
    .shingo-model-page .model-subsection.model-culture::before {
        display: none;
    }
    .shingo-model-page .model-subsection.model-tools::before {
        top: -50px;
    }
    .shingo-model-page .model-subsection.model-results::after {
        display: none;
    }
    .shingo-model-page .model-subsection.model-results::before {
        background-color: transparent;
    }
    .shingo-model-page .model-section-prev, .shingo-model-page .model-section-next {
        position: absolute;
        display: block;
        height: 20px;
        width: 100px;
        color: var(--black);
        margin-top: 0;
        font-weight: 500;
        font-family: "roboto-condensed", Helvetica, sans-serif;
        z-index: 4;
    }
    .shingo-model-page .model-section-next {
        transform: rotate(90deg);
        margin-left: 29px !important;
        top: 280px;
    }
    .shingo-model-page .model-section-next::after {
        content: " →";
    }
    .shingo-model-page .model-section-prev::after {
        content: " →";
    }
    .shingo-model-page .model-section-prev {
        transform: rotate(-90deg);
        margin-left: 22px !important;
        top: 0px;
    }
}

.shingo-model-page .model-insights-section .wp-block-column {
    align-self: stretch;
}
.shingo-model-page .model-insights-section .wp-block-column > div {
    height: 100%;
    justify-content: flex-start;
}
.shingo-model-page .model-insights-section .wp-block-column .wp-block-heading {
    width: 100%;
}
.shingo-model-page .wp-block-button.is-style-outline a {
    border: 3px solid var(--black)
}
.shingo-model-page .wp-block-button.is-style-outline a:hover {
    background-color: var(--wp--preset--color--grey-light);
}


/* Award Pages */

.award-page .top-section {
    border-bottom: 60px solid var(--wp--preset--color--green);
    position: relative;
    padding-bottom: 100px;
    margin-bottom: 100px;
    box-shadow: rgba(149, 157, 165, 0.9) 0px 15px 40px;  
}
.award-page .top-section .lead {
    margin-top: 1rem;
}
.award-page .award-button {
    position: absolute;
    right: 9%;
    bottom: -130px;
}
.publication-award-page .top-section {
    border-color: var(--wp--preset--color--red);
}
.research-award-page .top-section {
    border-color: var(--wp--preset--color--brown);
}
.rising-star-page .top-section {
    border-color: var(--wp--preset--color--blue);
}
.affiliates-choice-page .top-section {
    border-color: var(--wp--preset--color--green);
}
.affiliates-choice-page .award-card {
    background-color: var(--wp--preset--color--green);
}
.affiliates-choice-page .award-card h2 {
    margin: 0;
    color: white;
}
.affiliates-choice-page .award-card .card-body {
    background-color: var(--wp--preset--color--green);
    min-height: 100px;
    color: white;
    gap: 0.5rem;
}
.affiliates-choice-page .award-card .card-body p {
    margin: 0;
}
.affiliates-choice-page .award-card .card-body .system-name {
   margin-bottom: 1rem;
}
.award-card .affiliate-logo {
    display: flex;
    background-color: white;
    flex-direction: row;
    padding: 0.75rem 2rem;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: 1rem;
}
.affiliates-choice-page .affiliate-logo img {
    max-height: 60px;
    max-width: 110px;
}
.publication-award-page .profile-card-text {
    background: var(--wp--preset--color--red);
}
.research-award-page .profile-card-text {
    background: var(--wp--preset--color--brown);
}
.rising-star-page .profile-card-text {
    background: var(--wp--preset--color--blue-align);
}
.rising-star-page .directory-list {
    justify-content: center;
}
.research-award-page .profile-card-text .alumni-year.lead, .publication-award-page .profile-card-text .alumni-year.lead {
    position: relative;
    text-align: right;
    margin: 0;
}
.research-award-page .profile-card-text .card-title, .publication-award-page .profile-card-text .card-title {
    font-size: 1.15rem;
    max-width: none;
    text-align: left;
}
.research-award-page .profile-card-text .organization-name, .publication-award-page .profile-card-text .organization-name {
    max-width: none;
    text-align: left;
    margin: 0;
}
.award-page .card-body {
    justify-content: stretch;
    gap: 1rem;
}
.award-page .card-arrow, .workshop-card .card-arrow {
    text-align: right;
    margin: 0;
    margin-top: auto;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
}

/* -- News/Blog Articles */

.articles-next-prev-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.articles-page .article {
    border-left: 7px solid var(--wp--preset--color--blue-improve);
    padding: 0 30px;
    margin-bottom: 3rem;
}
.articles-page .article h2 {
    margin-bottom: 0;
    margin-top: 0;
    font-size: larger;
}
.articles-page .article .article-info-line {
    font-size: small;
}