/* * {
  outline: dotted 1px rgb(0 0 0 / 0.25);
  background-color: rgb(0 0 0 / 0.02);
} */

a {
  color: inherit;
}

.clickbox:hover {
  cursor: pointer;
}
.readmore {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  white-space: nowrap;
}

b,
strong,
th {
  font-weight: var(--fw-bold);
}
em,
i {
  font-style: italic;
}
sup {
  position: relative;
  top: -0.5em;
  font-size: 0.75rem;
  line-height: 0;
  vertical-align: baseline;
}
td,
th {
  text-align: left;
  vertical-align: top;
}
.footnote {
  font-size: 0.875rem;
}

.note {
  background: yellow;
}
.hide {
  display: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

/* base type styles */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  text-wrap: pretty;
  color: var(--hdr-color, inherit);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: currentColor;
  text-decoration: none;
}

h1 {
  font-size: var(--fs-xxl);
  color: rgb(var(--clr-red-400));
  font-weight: var(--fw-extrabold);
}

h2 {
  font-size: var(--fs-xl);
  font-weight: 800;
}

h3 {
  font-size: var(--fs-lg);
}

:is(h2, h3, h4, h5, h6):has(br + em) em {
  font-size: 0.5em;
}

h4 {
  font-size: var(--fs-md);
}

h5 {
  font-size: var(--fs-md);
}

h6 {
  font-style: italic;
  font-size: var(--fs-md);
}

p,
li {
  text-wrap: pretty;
}

ul {
  list-style: disc;
  margin-left: 2rem;
}

ol {
  list-style: decimal;
  margin-left: 2rem;
}

li + li {
  margin-top: 0.5em;
}

li ul,
li ol {
  margin-top: 0.3em;
  margin-bottom: 0.6em;
  font-size: 0.875rem;
}

li ul li {
  list-style: circle;
  margin-bottom: 0.15em;
}

a.btn,
a.btn-primary,
a.btn-secondary {
  display: inline-block;
  background-color: rgb(var(--clr-red-400));
  padding: 0.625em 1em;
  font-size: var(--fs-base);
  line-height: 1.2;
  color: rgb(var(--clr-white) / 0.85);
  font-weight: var(--fw-bold);
  text-decoration: none;
  text-transform: capitalize;
  border-radius: 0.25rem;
}

a.btn:hover {
  background-color: rgb(var(--clr-black));
}

.btn-large {
  font-size: var(--fs-md);
}

.btn-white {
  background-color: transparent;
  color: rgb(var(--clr-white) / 0.7);
  border: solid 1px rgb(var(--clr-white) / 0.5);
}

.btn-white:hover,
.clickbox:hover .btn-white {
  color: rgb(var(--clr-white));
  border-color: rgb(var(--clr-white));
}

a.btn-primary:hover {
  color: rgb(var(--clr-white));
}

a.btn-secondary {
  background-color: rgb(var(--clr-red-700));
}

a.btn-secondary::after {
  content: " \000BB";
}

a.btn-secondary:hover {
  color: rgb(var(--clr-white));
}

a.btn-small {
  padding: 6px 9px;
  font-size: 0.875rem;
  line-height: 1.2;
  border-radius: 1px;
}

a.btn-red {
  background-color: rgb(var(--clr-red-400));
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

/* tables */

table {
  line-height: 1.3;
  border: none;
  border: solid 1px rgb(var(--clr-red-700));
}

table thead tr {
  background-color: rgb(var(--clr-red-700));
  color: rgb(var(--clr-white));
}

td,
th {
  vertical-align: top;
  padding: 0.75em;
  border-bottom: solid 1px rgb(var(--clr-red-700));
}

th {
  font-weight: var(--fw-bold);
  background-color: rgb(var(--clr-gray-300));
  color: rgb(var(--clr-white));
  vertical-align: bottom;
}

td > *:first-child,
th > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

tbody tr:nth-child(odd) {
  background-color: rgb(0 0 0 / 0.05);
}

td > * + * {
  margin-top: 0.75em;
}

/* content containers */

.intro {
  font-size: 1.125em;
}

@media only screen and (min-width: 720px) {
  .intro {
    font-size: 1.375em;
  }
}

* + .divider {
  border-top: solid 2px rgb(var(--clr-black) / 0.1);
  padding-top: 1.125em;
}

.feature-box,
.inset-box {
  padding: var(--space);
  background-color: rgb(255 255 255 / 0);
  border: solid 2px rgb(var(--clr-yellow-400));
  border-radius: 0.25rem;
}

.footnotes {
  font-size: 0.8em;
  border-top: solid 2px rgb(0 0 0 / 0.1);
  padding-top: 1.5em;
  margin-top: 1.5em;
}

/* content blocks  */

main:has(> :is(.full-width, .homeHero, .congress-page-banner):first-child) {
  padding-top: 0;
}

.content-main {
  --hdr-color: rgb(var(--clr-red-700));
  padding: 0 var(--space) var(--space);
  container-type: inline-size;
}

.content-header .section-tag {
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  font-size: var(--fs-sm);
  margin: 0 0 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.content-header .section-tag a {
  text-decoration: none;
  color: rgb(var(--clr-red-700));
}

.content-header .section-tag a:hover {
  color: rgb(var(--clr-red-700));
}

.section-tag a + a::before {
  content: "/";
  margin-right: 0.5em;
  font-weight: var(--fw-normal);
}

.section-tag a:hover::before {
  color: rgb(var(--clr-red-400));
}

.content-header h1 {
  margin: 0;
  text-wrap: balance;
  max-width: 50ch;
}

.main-sidebar {
  display: grid;
}

[class*="-inset"] {
  width: var(--max-width);
  margin-inline: auto;
  padding-block: min(10vw, 6rem);
}

.content-header-inset {
  padding-bottom: min(5vw, 3rem);
}

.content-header + * > [class*="-inset"] {
  padding-top: 0;
}

.content-block {
  outline: dotted 2px red;
  outline-offset: -2px;
  width: var(--max-width);
  margin-inline: auto;
}

.content-block + .content-block {
  margin-top: calc(var(--space) * 2);
}

@media only screen and (min-width: 960px) {
  .main-sidebar {
    grid-template-columns: 2fr 1fr;
    width: var(--max-width);
    margin-inline: auto;
    gap: calc(var(--space) * 2);
  }

  .content-main {
    padding: 0;
  }

  .content-sidebar > * {
    box-shadow: 0 0 8px rgb(var(--clr-black) / 0.1);
    border-radius: 0.25rem;
  }

  .content-sidebar > * + * {
    margin-top: calc(var(--space) * 1);
  }
}

.sidebar-content {
  padding: var(--space);
  background-color: rgb(var(--clr-white));
  --hdr-color: rgb(var(--clr-red-400));
}

.subnav {
  background: rgb(var(--clr-red-700));
  padding: var(--space);
  color: rgb(var(--clr-white));
}

.subnav a {
  display: block;
  text-decoration: none;
  border-top: solid 1px rgb(var(--clr-white) / 0.1);
  padding: 0.625em;
  color: rgb(var(--clr-white) / 0.75);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  text-wrap: balance;
  transition: color 0.15s ease-out;
}

.subnav a:first-child {
  border: none;
}

.subnav .current,
.subnav a:hover {
  color: rgb(var(--clr-yellow-400));
}

/* FORMS  */

form {
  font-family: inherit;
}

label {
  display: block;
  margin: 0 0 6px;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  color: rgb(var(--clr-gray-300));
}

input {
  display: block;
  border: none;
  padding: 2px 9px;
  line-height: 24px;
  height: 24px;
  color: rgb(var(--clr-gray-400));
  border-radius: 3px;
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
}

input:focus {
  color: rgb(var(--clr-black));
}

/* lasa-site-header  */

.lasa-site-header {
  background-color: rgb(var(--clr-white));
}

.header-utilities {
  background-color: rgb(var(--clr-red-700));
  color: rgb(var(--clr-white));
}

.dropdown-toggle {
  all: unset;
}

.dropdown-toggle svg {
  width: 1rem;
  aspect-ratio: 1;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  display: block;
}

/* congress stuff */

body.congress {
  --clr-congress-primary: rgb(var(--clr-red-400));
  --clr-congress-dark: rgb(var(--clr-gray-400));
  --clr-congress-accent: rgb(var(--clr-yellow-400));
}

.congress_full_width_header .masthead-wrap,
.congress_full_width_header .masthead {
  background-image: linear-gradient(to right, var(--clr-congress-primary) 20%, var(--clr-congress-dark) 80%);
  background: var(--clr-congress-primary);
}

@media only screen and (min-width: 720px) {
  body.congress .masthead {
    padding-block: calc(var(--space) * 1.25);
  }
}

.congress .congress-logo img {
  width: min(25vw, 240px);
}

.congress-masthead-wrap {
  background-position: center center;
  background-size: cover;
  background-color: rgb(var(--clr-gray-400));
  padding: var(--space);
}

.congress-masthead {
  width: var(--max-width);
  margin-inline: auto;
  padding: var(--space);
  background-color: rgb(var(--clr-black) / 0.5);
  color: rgb(var(--clr-white));
}

.congress-details {
  padding: 0;
  margin: 0 var(--space);
}

.congress-home-page .congress-details {
  display: none;
}

.congress-details .congress-theme {
  font-weight: var(--fw-bold);
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--clr-congress-primary);
  text-wrap: balance;
}

.congress-details .congress-date-location {
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-wrap: balance;
  color: rgb(var(--clr-black));
  opacity: 0.66;
  margin-top: 0.5em;
}

.congress_full_width_header .congress-theme {
  color: rgb(var(--clr-white));
}
.congress_full_width_header .congress-date-location {
  color: rgb(var(--clr-white));
}

.congress-page-banner {
  padding-bottom: 0;
}

.congress .nav-primary-wrap,
.congress .nav-primary {
  background-color: var(--clr-congress-dark);
}

.congress_full_width_header .congress-page-banner {
  background-image: linear-gradient(to bottom, var(--clr-congress-primary) 5%, var(--clr-congress-dark) 75%);
  padding: 0 var(--space);
  max-width: none;
  width: auto;
}

.congress_full_width_header .congress-page-banner {
  padding: 0;
}

.congress_full_width_header .congress-page-banner img {
  width: var(--max-width);
  margin-inline: auto;
}

@media only screen and (max-width: 719.9px) {
  .congress-details {
    display: none;
  }
}

.congress_home_page .congress-details {
  opacity: 0;
}

/* CONTENT LAYOUT AND STYLES */

.content-wrap {
  background-color: rgb(var(--clr-white));
  border: solid 3px yellow;
}

.content-regular {
  width: var(--max-width);
  margin-inline: auto;
  padding: var(--space);
}

.content-full {
  background-color: rgb(var(--clr-gray-100));
  padding: var(--space);
}

/* category-filter */

.category-filter {
  margin: 0 0 var(--space);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.25em;
}

.category-filter a {
  font-weight: var(--fw-bold);
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.625em 1.25em;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: rgb(var(--clr-black));
  border-radius: 2rem;
  border: solid 1px rgb(var(--clr-black) / 0.3);
}

.category-filter a:hover {
  color: rgb(var(--clr-black));
  border-color: currentColor;
}

.category-filter .current,
.category-filter .current:hover {
  background-color: rgb(var(--clr-red-400));
  color: rgb(var(--clr-white));
  border-color: currentColor;
}

.category-filter-v2 {
  margin: 0 0 2em;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: 0.8em;
}

.category-filter-v2 a {
  background-color: rgb(var(--clr-yellow-100));
  font-weight: var(--fw-bold);
  padding: 6px 9px;
  margin: 0 6px 6px 0;
  text-decoration: none;
  color: rgb(var(--clr-black) / 0.3);
  border-radius: 2px;
}

.category-filter-v2 a:hover {
  background-color: rgb(var(--clr-red-400));
  color: rgb(var(--clr-white));
}

.category-filter-v2 .current,
.category-filter-v2 .current:hover {
  background-color: rgb(var(--clr-red-400));
  color: rgb(var(--clr-white));
}

@media only screen and (min-width: 720px) {
  .connect-w-lasa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 var(--space);
  }

  .col-tv {
    width: calc(100%);
  }
  .col-twitter {
    width: calc(100% - 340px);
    padding-right: 20px;
  }
  .col-facebook {
    width: calc(340px);
  }

  .connect-column > *:first-child {
    margin-top: 0;
    margin-bottom: 1em;
  }
}

@media only screen and (min-width: 960px) {
  .col-tv {
    width: calc(40%);
    padding-right: 20px;
  }
  .col-twitter {
    width: calc(60% - 340px);
    padding-right: 20px;
  }
  .col-facebook {
    width: calc(340px);
  }
}

@media only screen and (min-width: 1140px) {
  .col-tv {
    width: calc(50%);
    padding-right: 20px;
  }
  .col-twitter {
    width: calc(50% - 340px);
    padding-right: 20px;
  }
  .col-facebook {
    width: calc(340px);
  }
}

/* home social media */

.home-social-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--space) * 2);
}

.home-social-media .column-twitter {
  display: none;
}

.home-social-media .column-facebook {
  place-items: center;
}

.home-social-media .inset-box {
  margin-top: 3em;
  background-color: rgb(var(--clr-white) / 1);
}

.home-social-media iframe {
  box-shadow: 0 0 8px rgb(var(--clr-black) / 0.15);
  overflow: clip;
}

@media only screen and (min-width: 960px) {
  .home-social-media {
    grid-template-columns: 1fr auto;
  }
}

/* CARDS */

.cards {
  display: grid;
  gap: var(--space);
}

@media only screen and (min-width: 960px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr) minmax(min(20rem, 100%), 1fr));
    grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  }
}

.card {
  overflow: hidden;
  background-color: rgb(var(--clr-white));
  box-shadow: 0 0 0.5rem rgb(var(--clr-black) / 0.1);
  transition: box-shadow 300ms ease;
  border-radius: 0.25rem;
}

.card:hover,
.card:focus-visible,
.card:focus-within {
  background-color: rgb(var(--clr-white));
  box-shadow: 0 0 1.5rem rgb(var(--clr-black) / 0.15);
}

.card a {
  display: block;
  border: none;
  text-decoration: none;
  color: inherit;
  padding: calc(var(--space) * 1);
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-content > * + * {
  margin-top: 0.75rem;
}

.card-content > p {
  font-size: 0.875rem;
}

.card-meta {
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  padding-bottom: 0.5rem;
  border-bottom: solid 1px rgb(var(--clr-gray-100));
  color: rgb(var(--clr-gray-300));
}

.card-content:has(.card-graphic) .card-meta {
  border-bottom: none;
  padding-bottom: 0;
}

.publications-cards .card-graphic {
  border: solid 1px rgb(var(--clr-gray-100));
}

.congress-cards .card-graphic {
  border: solid 1px rgb(var(--clr-gray-100));
  background-color: rgb(var(--clr-gray-200));
  aspect-ratio: 3/1;
  place-items: center;
  align-content: center;
}

.congress-cards .card-graphic img {
  padding: 2rem;
}

.card-title {
  font-size: var(--fs-md);
  line-height: 1.2;
  font-weight: var(--fw-bold);
  color: rgb(var(--clr-black));
  text-wrap: pretty;
  transition: color 0.2s ease;
}

.featured-card .card-title {
  color: rgb(var(--clr-red-400));
}

.card-subtitle {
  font-weight: var(--fw-bold);
  margin: -0.5em 0 1em;
  color: rgb(var(--clr-gray-400));
}

.card-date {
  padding-top: 1.5rem;
  font-size: var(--fs-sm);
  margin-top: auto;
  color: rgb(var(--clr-black));
}

.lasa-tv-cards .card {
  padding: 12px;
}

.card-video {
  margin: 0 0 10px;
}

@media only screen and (min-width: 480px) {
  .card a {
    height: 100%;
  }
}

@media only screen and (min-width: 720px) {
  .page_home .card:nth-child(4) {
    display: none;
  }
  .news-cards .card {
    min-height: 180px;
  }
}

@media only screen and (min-width: 960px) {
  .page_home .card:nth-child(4) {
    display: block;
  }
}

/* NEWS detail items  */

.featured-photo {
  margin: 0 0 var(--space);
}

.photo-caption {
  background-color: rgb(var(--clr-gray-100));
  padding: 9px;
  margin-top: 4px;
}

.photo-gallery {
  margin: 0 0 var(--space);
}

/* FOOTER LAYOUT AND STYLES */

footer {
  background-color: rgb(var(--clr-red-700));
  color: rgb(var(--clr-white));
}

footer a {
  color: rgb(var(--clr-yellow-400));
}
footer a:hover {
  color: rgb(var(--clr-white));
}

@media only screen and (min-width: 640px) {
  .footer-column-wrap {
    overflow: auto;
  }

  .footer-address,
  .footer-join,
  .footer-connect {
    float: left;
    width: 50%;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 720px) {
  .footer-address,
  .footer-join,
  .footer-connect {
    width: 33.333%;
    padding-right: 21px;
  }
}

@media only screen and (min-width: 960px) {
  .footer-address,
  .footer-join,
  .footer-connect {
    padding-right: 30px;
  }
}

.nav-languages,
.footer-address,
.footer-join,
.footer-connect,
.nav-footer {
  margin-bottom: 15px;
}

.footer-title {
  font-weight: var(--fw-bold);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin: 0 0 12px;
  color: rgb(var(--clr-yellow-400));
  text-transform: uppercase;
}

footer .nav-languages {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  padding-top: 0;
  margin-bottom: 30px;
}

footer .nav-languages a {
  font-size: 0.7em;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  padding: 6px 9px;
  color: rgb(var(--clr-white) / 0.7);
}

footer .nav-languages a:hover {
  background-color: rgb(var(--clr-white) / 0.15);
  color: rgb(var(--clr-white));
}

footer .nav-languages .current a {
  background-color: rgb(var(--clr-yellow-100));
  color: rgb(var(--clr-gray-400));
}

footer .footer-address .logo {
  margin-bottom: 9px;
}

footer .footer-address .logo img {
  max-width: 120px;
}

.footer-join input {
  margin-bottom: 12px;
  height: 32px;
  background-color: rgb(var(--clr-white) / 0.7);
}

.footer-join input:focus {
  background-color: rgb(var(--clr-white));
}

.social-icons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.social-icons a {
  display: block;
  border: solid 1px rgb(var(--clr-white));
  text-align: center;
  margin: 0 4px;
  border-radius: 3px;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.social-icons a:hover {
  opacity: 0.8;
}

.social-icons img {
  display: inline-block;
  vertical-align: text-top;
  width: 40px;
  height: 40px;
}

.sidebar-content .social-icons a {
  background-color: rgb(var(--clr-black) / 0.7);
}

.copyright {
  margin-top: 1em;
  padding-top: 1em;
  font-size: 0.85em;
  border-top: solid 1px rgb(var(--clr-white) / 0.15);
}

.copyright a {
  margin-left: 0.5em;
  color: rgb(var(--clr-white));
}

/* HOME PAGE */

.bg-red-400 {
  background-color: rgb(var(--clr-red-400));
  --hdr-color: rgb(var(--clr-white));
  color: white;
}

.bg-red-700 {
  background-color: rgb(var(--clr-red-700));
  --hdr-color: rgb(var(--clr-white));
  color: white;
}

.bg-purple {
  background-color: rgb(var(--clr-red-400));
  --hdr-color: rgb(var(--clr-white));
  color: white;
}

.bg-pale-yellow {
  background-color: rgb(var(--clr-yellow-100));
}

.bg-yellow {
  background-color: rgb(var(--clr-yellow-400));
}

.bg-white {
  background-color: rgb(var(--clr-white));
}

.bg-gray {
  background-color: rgb(var(--clr-gray-400));
  color: rgb(var(--clr-white));
}

.bg-lightgray {
  background-color: rgb(var(--clr-gray-100));
}

/* home hero begins */
.homeHero {
  background-color: rgb(var(--clr-red-400));
  background-image: linear-gradient(0deg, rgb(var(--clr-gray-700)) 0%, rgb(var(--clr-red-400)) 50%);
}

.homeHero-img {
  position: relative;
  z-index: 0;
}

.homeHero-sidebar {
  position: relative;
  z-index: 1;
}
.homeHero-details {
  padding: 15px;
  margin: -15px 40px 0;
  background-color: rgb(var(--clr-black) / 0.6);
  color: rgb(var(--clr-white));
  font-size: 0.85em;
  text-align: center;
}

.homeHero-about {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.5em;
  color: rgb(var(--clr-yellow-400));
}

.homeHero-description {
  margin: 0.5em 0 0;
}

.homeHero-explore {
  color: rgb(var(--clr-white));
  padding: 0 8px 24px;
}

.homeHero-exploreTitle {
  text-align: center;
  padding: 30px 15px 15px 15px;
  line-height: 1.2;
  font-size: 1.5rem;
}

.homeHero-exploreMenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.homeHero-exploreMenu a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(50% - 16px);
  margin: 8px;
  padding: 24px 8px;
  background-color: rgb(var(--clr-white) / 0.05);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: var(--fw-normal);
  color: rgb(var(--clr-yellow-400));
  text-decoration: none;
}

.homeHero-exploreMenu a img {
  max-width: 80px;
  margin-top: 16px;
}

@media only screen and (min-width: 540px) {
  .homeHero-explore {
    margin: 0;
    padding: 0 22px 30px;
  }
  .homeHero-exploreTitle {
    font-size: 1.75rem;
  }
  .homeHero-exploreMenu a {
    width: calc(33% - 8px);
    margin: 4px 4px 8px;
  }
  .homeHero-details {
    max-width: 480px;
    margin: -30px auto 0;
  }
}

@media only screen and (min-width: 720px) {
  .homeHero-details {
    margin-top: -40px;
  }
}

@media only screen and (min-width: 960px) {
  .homeHero {
    padding: 0;
    background: rgb(var(--clr-gray-400));
    position: relative;
  }

  .homeHero-img {
    width: 100%;
    max-width: none;
    height: 50vw;
    max-height: 1000px;
  }

  .homeHero-img img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  .homeHero-inset {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px;
  }

  .homeHero-inset-left {
    flex-direction: row;
  }

  .homeHero-inset-right {
    flex-direction: row-reverse;
  }

  .homeHero-sidebar {
    width: 38%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
  }

  .homeHero-details {
    padding: 18px 21px;
    margin: 0;
    background-color: transparent;
    text-align: left;
    font-size: 0.7em;
    background: rgb(var(--clr-red-400) / 0.75);
  }

  .homeHero-explore {
    background: transparent;
    margin: 0;
    padding: 0;
    max-width: none;
  }
  .homeHero-exploreMenu {
    display: block;
    padding: 0;
    margin: 0;
  }

  .homeHero-exploreTitle {
    display: none;
    text-align: left;
    font-size: 1.15em;
    padding: 15px 21px;
    line-height: 1.1;
  }
  .homeHero-exploreMenu a {
    margin: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: center;
    background: transparent;
    padding: 5px 21px;
    border-top: solid 2px rgb(var(--clr-white) / 0.08);
  }

  .homeHero-exploreTitle,
  .homeHero-exploreMenu a {
    background: rgb(var(--clr-black) / 0.6);
    transition: background 150ms ease;
  }

  .homeHero-exploreMenu a:hover {
    background-color: rgb(var(--clr-black) / 0.8);
    color: rgb(var(--clr-white));
  }

  .homeHero-exploreMenu a img {
    max-width: 30px;
    margin: 0 0 0 auto;
  }
}

@media only screen and (min-width: 1040px) {
  .homeHero-details {
    font-size: 0.75rem;
  }

  .homeHero-exploreTitle {
    padding: 27px 21px 21px;
    font-size: 1.375rem;
  }
  .homeHero-exploreMenu a {
    font-size: 0.875rem;
    padding: 5px 21px;
  }
  .homeHero-exploreMenu a img {
    max-width: 36px;
  }
}

@media only screen and (min-width: 1120px) {
  .homeHero-exploreMenu a img {
    max-width: 40px;
  }

  .homeHero-inset {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 1140px) {
  .homeHero-details {
    font-size: 0.8em;
  }

  .homeHero-exploreTitle {
    display: block;
    font-size: 1.375rem;
  }
  .homeHero-exploreMenu a {
    font-size: 0.8em;
    padding: 7px 21px;
  }
  .homeHero-exploreMenu a img {
    max-width: 32px;
  }
}

@media only screen and (min-width: 1280px) {
  .homeHero-inset {
    left: 50%;
    margin-left: calc(var(--max-width) * -0.5);
    width: var(--max-width);
  }
  .homeHero-sidebar {
    width: 33%;
  }
  .homeHero-exploreTitle {
    font-size: 1.5rem;
  }
  .homeHero-exploreMenu a {
    font-size: 0.95em;
  }
  .homeHero-exploreMenu a img {
    max-width: 42px;
  }
}

@media only screen and (min-width: 1440px) {
  .homeHero-inset {
    padding: 40px 20px;
  }
  .homeHero-exploreTitle {
    font-size: 1.5rem;
    padding: 30px 24px 24px;
  }

  .homeHero-exploreMenu a {
    font-size: 1rem;
    padding: 8px 24px;
  }
  .homeHero-exploreMenu a img {
    max-width: 48px;
  }
}

/* home hero ends */

/*when congress is live*/

.congressNow {
  background-color: rgb(var(--clr-gray-200)); /* fallback if no image is uploaded */
  background-size: cover;
  background-position: center center;
  padding: min(20vw, 12rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.congressNow_inset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: min(2rem, 10vw);
  color: rgb(var(--clr-white));
  width: min(80vw, 1240px);
  margin: 0 auto;
}

.congressNow_title {
  width: min(640px, 75vw);
  margin-bottom: var(--space);
}

.congressNow_year {
  font-size: 1.5rem;
}

.congressNow_title span {
  display: block;
}

.congressNow_subtitle {
  font-weight: var(--fw-bold);
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.congressNow_text {
  font-weight: var(--fw-normal);
  font-size: 1.125em;
  line-height: 1.5;
  width: min(100%, 60ch);
  text-wrap: pretty;
}

.congressNow_text > * {
  margin: 0;
}

.congressNow_text > * + * {
  margin-top: 1rem;
}

.congressNow_actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.congressNow_actions a {
  padding: 0.75em 1.5em;
  background-color: rgb(var(--clr-red-400));
  color: rgb(var(--clr-white) / 1);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: var(--fw-bold);
  font-size: 1.125em;
  line-height: 1;
  border-radius: 0.125em;
  box-shadow: 0 0 0.5em rgb(var(--clr-black) / 0.15);
  transition: all 150ms ease;
}

.congressNow_actions a:hover,
.congressNow_actions a:focus {
  filter: saturate(1.5);
  box-shadow: 0 0 0.75em rgb(var(--clr-black) / 0.3);
}

.congressNow_actions a:first-child {
  background-color: rgb(var(--clr-black));
  color: rgb(var(--clr-white));
}

.congressNow_actions a:first-child:hover {
  color: rgb(var(--clr-black));
}

@media only screen and (min-width: 1024px) {
  .congressNow_btn {
    font-size: 1.25rem;
  }
}

.congressNowCompact {
  background-image: url("/img/lasa2020-bg-pattern-2560.jpg");
  background-size: cover;
  background-position: center top;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.congressNowCompact_inset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(var(--clr-white));
  width: var(--max-width);
  margin-inline: auto;
}

.congressNowCompact_actions {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 1024px) {
  .congressNowCompact_inset {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 1220px;
  }

  .congressNowCompact_actions {
    margin: 0 0 0 120px;
  }
}

/* congress takeover 2024 */

.congress-takeover {
  --takeover-primary: 131 95 23;
  --takeover-dark: 65 47 11;
  --takeover-accent: 255 234 158;
  position: relative;
  isolation: isolate;
  background-color: rgb(var(--takeover-dark));
  background-image: linear-gradient(to bottom right, rgb(var(--takeover-primary)), rgb(var(--takeover-dark)));
  color: white;
  padding: min(10vw, 3rem);
}

.congress-takeover-inset {
  display: grid;
  gap: 2rem 4rem;
  z-index: 1;
  position: relative;
}

.congress-takeover-graphic div {
  font-size: 0.625rem;
}

.congress-takeover-graphic div > * {
  margin: 0.5em 0 0 !important;
}

.congress-takeover-bgimg {
  margin-bottom: 2rem;
  box-shadow: 0 1rem 1rem rgb(var(--clr-black) / 0.3);
}

.congress-takeover .footnotes {
  border: none;
}

.congress-takeover-content > * + * {
  margin-top: 2em;
}

.congress-takeover-logo {
  width: min(480px, 100%);
}

.congress-takeover-text {
  font-size: 0.875rem;
  text-wrap: pretty;
}

.congress-takeover-text h3 {
  margin: 0;
  color: white;
  line-height: 1.2;
}

.congress-takeover-photo-credit {
  font-size: 0.75rem;
  font-style: italic;
  padding-top: 1em;
}

.congress-takeover-text > * + * {
  margin-top: 1em;
}

.congress-takeover-subtitle {
  font-weight: var(--fw-bold);
  text-wrap: balance;
  font-size: 1rem;
  line-height: 1.4;
}

.congress-takeover-actions {
  display: flex;
  gap: 0.25rem;
  text-wrap: wrap;
}

.congress-takeover-actions a {
  display: flex;
  justify-content: center;
  padding: 0.625em 1.5em;
  font-weight: var(--fw-bold);
  text-decoration: none;
  color: rgb(var(--takeover-dark));
  background-color: rgb(var(--takeover-accent));
}

.congress-takeover-actions a:last-child {
  background-color: rgb(var(--clr-red-400));
  color: white;
}

@media (min-width: 820px) {
  .congress-takeover-inset {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    max-width: 1216px;
    margin-inline: auto;
  }
}

/* home congress promo */

.homeCongress {
  background: rgb(var(--clr-white));
}

.homeCongress-inset {
  width: var(--max-width);
  margin-inline: auto;
}

.homeCongress a {
  display: block;
  text-decoration: none;
  line-height: 1.4;
  font-size: 1rem;
}

.homeCongress-content {
  padding: 30px;
}

.homeCongress-title {
  font-weight: var(--fw-bold);
  font-size: 1.625rem;
  color: rgb(var(--clr-red-400));
}

.homeCongress-subtitle {
  font-weight: var(--fw-bold);
  font-size: 1.375rem;
  color: rgb(var(--clr-red-400));
  margin-bottom: 0.5em;
}

.homeCongress-subtitle2 {
  font-weight: var(--fw-bold);
  font-size: 1rem;
  color: rgb(var(--clr-red-700));
  margin-bottom: 0.5em;
}

.homeCongress-text {
  font-size: 1rem;
  color: rgb(var(--clr-black));
}

.homeCongress-inset a:hover img {
  box-shadow: 4px 4px 7px rgb(var(--clr-black) / 0.5);
}

.homeCongress-inset a:hover .homeCongress-title,
.homeCongress-inset a:hover .homeCongress-subtitle {
  color: rgb(var(--clr-red-700));
}

@media only screen and (min-width: 720px) {
  .homeCongress-inset a {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    max-width: none;
    font-size: 0.875rem;
  }

  .homeCongress-graphic {
    width: 45%;
  }
  .homeCongress-content {
    width: 55%;
    padding: 0 20px;
  }
  .homeCongress-inset img {
    transition: all 0.2s ease;
  }
}

@media only screen and (min-width: 960px) {
  .homeCongress-inset a {
    padding: 30px;
    font-size: 0.95em;
  }

  .homeCongress-graphic {
    width: 50%;
  }
  .homeCongress-content {
    width: 50%;
    padding: 0 30px;
  }
}

@media only screen and (min-width: 1120px) {
  .homeCongress-inset a {
    padding: 40px;
    font-size: 1rem;
  }
  .homeCongress-content {
    padding: 0 40px;
  }
}

@media only screen and (min-width: 1240px) {
  .homeCongress-inset a {
    font-size: 1.125rem;
  }
}

.home-feature {
  background-color: rgb(var(--clr-gray-400));
}

.home-feature-item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 70vh;
  min-height: 300px;
  max-height: 450px;
  display: flex;
}

.home-feature-item-inset {
  width: 100%;
  width: var(--max-width);
  margin-inline: auto;
  padding: var(--space);
}

.home-feature-item-content {
  color: rgb(var(--clr-white));
}

.home-feature-item-content a {
  display: block;
  text-decoration: none;
  background-color: rgb(var(--clr-red-400) / 0.75);
  padding: 45px 15px 30px;
  color: rgb(var(--clr-white));
  border-radius: 2px;
  transition: background-color 0.3s ease-out;
  border-radius: 4px;
  box-shadow: 2px 2px 3px rgb(var(--clr-black) / 0.3);
}

.home-feature-item-content a:hover {
  background-color: rgb(var(--clr-red-400) / 0.9);
}

.home-feature-item-title {
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: var(--fw-normal);
  margin: 0 0 0.2em;
  text-transform: uppercase;
}

.home-feature-item-subhead {
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: var(--fw-bold);
  margin: 0 0 0.8em;
}

.home-feature-item-text {
  font-size: 1.25rem;
  margin: 0;
}

.home-feature-item-congress-title {
  font-size: 3.25rem;
}

.home-feature-item-congress-title span {
  opacity: 0.6;
}

.home-feature-item-congress-details {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.home-feature-item-congress-theme {
  color: rgb(var(--clr-yellow-400));
  font-weight: var(--fw-normal);
  margin-top: 1em;
  font-size: 1.5rem;
}

@media only screen and (min-width: 720px) {
  .home-feature-item-inset {
    padding: 15px;
    margin: auto;
  }
  .home-feature-item {
    height: 60vh;
    max-height: none;
  }
  .home-feature-item-content {
    border-color: pink;
    max-width: 50%;
    margin-right: auto;
  }
  .home-feature-item-content a {
    padding: 50px 30px 30px;
  }
}

@media only screen and (min-width: 1280px) {
  .home-feature-item-inset {
    padding: 21px;
  }
}

.home-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1120px;
}

.home-icons .icon {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 320px;
  flex: 1 0 320px;
  max-width: 33.3333%;
  text-align: center;
}

.home-icons .icon a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  padding: 15px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  color: rgb(var(--clr-white) / 0.7);
  font-size: 0.875rem;
}

.home-icons .icon a:hover {
  color: rgb(var(--clr-white));
  transform: scale(1.03);
}

.home-icons .icon img {
  max-width: 60px;
  margin: 0 auto 21px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.home-icons .icon a:hover img {
  opacity: 1;
}

@media only screen and (min-width: 720px) {
  .home-icons .icon {
    max-width: 16.6666%;
  }
  .home-icons .icon img {
    max-width: 72px;
  }
}

.home-primary-content .content-block {
  background-color: rgb(var(--clr-white));
  font-size: 1.375rem;
  font-weight: var(--fw-normal);
}

.home-primary-content .content-block p {
  margin: 0;
}

@media only screen and (min-width: 720px) {
  .video-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 50px;
  }
  .video {
    width: 60%;
    margin: 0;
  }
  .video-content {
    width: 38%;
    margin-bottom: 10%;
  }
}

/* sections-listing */

.section-card-content {
  display: grid;
  gap: 3rem;
}

@container (min-width: 720px) {
  .section-card-content {
    grid-template-columns: 3fr 2fr;
  }
}

.right-col > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

/* show hide triggers */

.show-hide-trigger {
  cursor: pointer;
  padding: calc(var(--space) * 0.75) var(--space);
  padding-right: calc(var(--space) * 3);
  position: relative;
}

.show-hide-trigger > * + * {
  margin-top: 0.5em;
}

/* The +/- Icon */
.show-hide-trigger::after {
  position: absolute;
  right: var(--space);
  top: 50%;
  translate: 0 -50%;
  content: "+"; /* Default state */
  font-family: monospace;
  font-size: 2rem;
  color: rgb(var(--clr-red-400));
  transition: all 150ms ease;
}

/* Change to - when active */
.show-hide-trigger.is-active::after {
  content: "-";
  rotate: 180deg;
}

.show-hide-trigger:hover::after {
  color: rgb(var(--clr-red-400));
}

/* Hide content by default */
.show-hide-content {
  display: none;
  padding: var(--space);
  padding-top: 0;
}

/* Show content when the .is-open class is added via JS */
.show-hide-content.is-open {
  display: block;
}

/* Optional: Style the wrapper to keep things tidy */
.show-hide-wrapper {
  box-shadow: 0 0 1rem rgb(var(--clr-black) / 0.1);
  background-color: white;
  border-radius: 0.25rem;
}

.show-hide-wrapper + .show-hide-wrapper {
  margin-top: 1rem;
}

.invisible {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.visible {
  display: block;
  opacity: 1;
}

.show-hide-trigger.active {
  margin-bottom: 0;
  border-bottom: none;
}

/* people layotus with photos */

.person-group {
  margin: 0 -0.5em;
  display: flex;
  flex-wrap: wrap;
}

.person {
  width: calc(50% - 1em);
  margin: 0 0.5em 2em;
  overflow: auto;
}

@media only screen and (min-width: 850px) {
  .person-group {
    margin: 0 -0.75em;
  }
  .person {
    width: calc(33.3333% - 1.5em);
    margin: 0 0.75em 2em;
  }
}

.person-text {
  line-height: 1.3;
}

.person-photo {
  margin-bottom: 0.75em;
}

.person-title {
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8em;
  color: rgb(var(--clr-red-400));
  margin-bottom: 0.75em;
}

.person-name {
  font-weight: var(--fw-bold);
  margin-top: 0.25em;
}

.person-affiliation {
  margin-top: 0.25em;
}

.person-years {
  margin-top: 0.25em;
}

.person-photo-wrap {
  overflow: auto;
}

.person-photo-wrap img {
  float: right;
  max-width: 20%;
  height: auto;
  margin: 0 0 0.5em 0.5em;
}

.person-photo-wrap-2 {
  overflow: auto;
  margin: 1em 0em 1em 0em;
}

.person-photo-wrap-2 img {
  float: left;
  max-width: 20%;
  margin-right: 1em;
}

.person-photo-wrap-2 p {
  clear: both;
}

/*past featured photos:*/

.photoGallery {
  display: flex;
  flex-direction: column;
}

.photo {
  background-color: rgb(var(--clr-white));
  margin-bottom: 20px;
}

.photo_info {
  padding: 20px;
}

.photo_text {
  margin-top: 15px;
  padding-top: 15px;
  border-top: solid 1px rgb(var(--clr-gray-100));
}

@media only screen and (min-width: 960px) {
  .photo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0;
    margin-bottom: 30px;
  }

  .photo_info {
    flex: 1;
    padding: 30px;
    font-size: 0.875rem;
  }

  .photo_img {
    flex: 3;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1140px) {
  .photo_info {
    padding: 45px 30px;
    font-size: 1rem;
  }
}

/*home super news*/

.superNews {
  padding-block: calc(var(--space) * 2);
}

.superNews > * + * {
  margin-top: calc(var(--space) * 2);
}

.superNews a {
  text-decoration: none;
}

.largeNews {
  background-color: rgb(var(--clr-white));
}

.largeNews_link {
  display: block;
  text-decoration: none;
  position: relative;
}

.largeNews_img {
  transition: filter 150ms ease-in-out;
}

.largeNews_link:hover .largeNews_img,
.largeNews_link:focus .largeNews_img {
  filter: contrast(1.5);
}

.largeNews--text .largeNews_link {
  padding: 30px;
  color: rgb(var(--clr-white));
  line-height: 1.3;
}

.largeNews--red {
  background-color: rgb(var(--clr-red-400));
}
.largeNews--purple {
  background-color: rgb(var(--clr-red-400));
}
.largeNews--teal {
  background-color: rgb(var(--clr-orange-400));
}
.largeNews--gray {
  background-color: rgb(var(--clr-black));
}

.largeNews_headline {
  font-size: 28px;
  font-weight: var(--fw-bold);
  position: relative;
  z-index: 1;
}

.largeNews_subhead {
  font-size: 16px;
  margin-top: 1em;
  padding-top: 1em;
  border-top: solid 1px rgb(var(--clr-white) / 0.5);
  position: relative;
  z-index: 1;
}

.largeNews_subhead > * + * {
  margin: 1em 0 0;
}

.largeNews_subhead p + .largeNews_subhead p {
  margin: 0.75em 0 0;
}

.largeNews--text .largeNews_link::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--clr-black) / 0);
  transition: background-color 150ms ease;
}

.largeNews--text .largeNews_link:hover::before,
.largeNews--text .largeNews_link:focus::before {
  background-color: rgb(var(--clr-black) / 0.25);
}

.mediumNews + .mediumNews {
  margin-top: 0.5rem;
}

.mediumNews_link {
  display: block;
  text-decoration: none;
  padding: 6px;
  background-color: rgb(var(--clr-gray-100));
  background-image: url(/img/newsItem_arrow.png);
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  padding-right: 50px;
  transition: all 150ms ease;
}

.mediumNews--img .mediumNews_link {
  background-image: none;
  padding-right: 6px;
}

.mediumNews_text {
  padding: 14px;
}

.mediumNews_headline {
  color: rgb(var(--clr-red-400));
  font-size: 17px;
  font-weight: var(--fw-bold);
  text-wrap: pretty;
}

.mediumNews_subhead {
  font-size: 12px;
  margin-top: 5px;
}

.mediumNews_link:hover,
.mediumNews_link:focus {
  background-color: rgb(var(--clr-gray-100));
}

.mediumNews_link:hover .mediumNews_subhead,
.mediumNews_link:focus .mediumNews_subhead {
  color: rgb(var(--clr-black));
}

.mediumNews--img .mediumNews_link {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.mediumNews--img .mediumNews_text {
  width: 65%;
}

.mediumNews--img .mediumNews_img {
  width: 35%;
}

.superNews_col--three {
  padding: 20px;
}

.superNews_colTitle {
  font-size: 24px;
  line-height: 1.1;
  font-weight: var(--fw-bold);
  color: rgb(var(--clr-red-400));
  margin: 0 0 8px;
}

.newsItems_list {
  margin: 0 0 10px;
}

.newsItem_link {
  display: block;
  text-decoration: none;
  color: rgb(var(--clr-black));
  line-height: 1.3;
  padding: 8px 0;
  border-top: solid 1px rgb(var(--clr-gray-100));
}

.newsItem_category {
  margin: 0;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  font-size: 0.625rem;
  color: rgb(var(--clr-gray-300));
}

.newsItem_title {
  font-weight: var(--fw-bold);
  font-size: 16px;
  margin-top: 5px;
  text-wrap: pretty;
}

.newsItem_date {
  font-size: 12px;
  margin-top: 5px;
}

@media only screen and (min-width: 720px) {
  .superNews {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
  }

  .superNews_col--one {
    width: 100%;
    display: flex;
    gap: 20px;
  }

  .superNews_col--two {
    flex: 1;
    border-top: solid 2px rgb(var(--clr-gray-100));
    padding-top: 20px;
  }

  .superNews_col--three {
    flex: 1;
    border-top: solid 2px rgb(var(--clr-gray-100));
    padding-top: 20px;
  }

  .largeNews {
    flex: 1;
    margin: 0;
  }

  .largeNews--text .largeNews_link {
    padding: 24px;
  }

  .largeNews_headline {
    font-size: 24px;
  }

  .largeNews_subhead {
    font-size: 15px;
  }

  .newsItem_link {
    padding: 12px 0;
  }
}

@media only screen and (min-width: 1140px) {
  .superNews {
    margin: 30px 0;
  }

  .superNews_col--one {
    flex-direction: column;
    justify-content: flex-start;
    width: 38%;
  }

  .superNews_col--two {
    width: 42%;
    border-top: none;
    padding-top: 0;
    padding-left: 20px;
    border-left: solid 1px rgb(var(--clr-gray-100));
  }

  .superNews_col--three {
    width: 20%;
    border-top: none;
    padding-top: 0;
    padding-left: 20px;
    border-left: solid 2px rgb(var(--clr-gray-100));
  }

  .largeNews {
    flex: none;
  }

  .largeNews--text .largeNews_link {
    padding: 30px;
  }

  .largeNews_headline {
    font-size: 28px;
  }

  .largeNews_subhead {
    font-size: 20px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .newsItem_link {
    padding: 15px 0;
  }
}

blockquote {
  padding: 0 0 0 30px;
  border-left: solid 10px rgb(var(--clr-red-400));
  margin: var(--space) 0;
  font-size: 1.125rem;
  color: rgb(var(--clr-red-400));
}

.pullquote-text {
  font-family: 400;
  font-size: 1.25rem;
}

.pullquote-author {
  font-size: 0.8em;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* staff photo cards w modals */

.staff-cards-grid {
  display: grid;
  gap: calc(var(--space) * 0.75);
}

.staff-cards-grid h3 {
  grid-column: 1 / -1;
  margin: 0;
}

.staff-cards-grid > * + h3 {
  margin: var(--space) 0 0;
}

body.dialog-open {
  overflow: hidden;
  touch-action: none;
}

.staff-card-info > * {
  font-size: var(--fs-base);
  line-height: 1.25;
  margin: 0;
}

.staff-card-info p {
  font-size: var(--fs-sm);
  font-style: italic;
}

.view-bio {
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: rgb(var(--clr-red-400));
  font-size: var(--fs-xs);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.view-bio svg {
  display: block;
  width: 0.75rem;
  height: auto;
  stroke-width: 2px;
  stroke: currentColor;
  fill: none;
  pointer-events: none;
}

.staff-card {
  display: grid;
  grid-template-columns: min(20vw, 7rem) 1fr;
  align-items: center;
  gap: 1rem;
  background-color: white;
  box-shadow: 0 0 0.5rem rgb(0 0 0 / 0.1);
  transition: box-shadow 150ms ease;
  border-radius: 0.25rem;
  overflow: clip;
}

.staff-card.has-bio:hover {
  box-shadow: 0 0 1rem rgb(0 0 0 / 0.25);
}

@container (min-width: 480px) {
  .staff-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: calc(var(--space) * 0.5);
  }

  .staff-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .staff-card-info {
    padding: calc(var(--space) * 0.75);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .staff-card-info p {
    margin-bottom: var(--space);
  }

  .staff-card-info .view-bio {
    margin-top: auto;
  }
}

.staff-card.has-bio {
  cursor: pointer;
}

/* Basic styling for the dialog */
.staff-dialog {
  border: none;
  background-color: rgb(var(--clr-white));
  box-shadow: 0 0 1rem rgb(0 0 0 / 0.25);
  width: min(960px, calc(100% - 2em - 6px));
  max-height: calc(100% - 2em - 6px);
  overflow: auto;
  position: fixed;
  border-radius: 0.25rem;
  margin: auto;
}

.staff-dialog:hover {
  cursor: default;
}

.staff-dialog-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: min(3rem, 5vw);
}

@media only screen and (min-width: 720px) {
  .staff-dialog {
    max-height: min(640px, calc(100% - 2em - 6px));
  }
  .staff-dialog-inner {
    flex-direction: row;
    align-items: start;
    gap: 2rem;
  }
}

.close-dialog-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.5rem;
  aspect-ratio: 1;
  color: rgb(var(--clr-gray-400));
  border-radius: 0;
  border: none;
  background: transparent;
}

.close-dialog-btn:hover {
  color: var(--clr-black);
  background: transparent;
}

.close-dialog-btn svg {
  display: block;
  color: currentColor;
  pointer-events: none;
}

/* Styling the backdrop that appears behind the modal */
.staff-dialog::backdrop {
  background-color: rgb(0 0 0 / 0.75); /* A semi-transparent dark overlay */
  backdrop-filter: blur(2px); /* Optional: adds a blur effect to the background */
}

.staff-dialog::backdrop:hover {
  cursor: pointer;
}

.staff-portrait {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.staff-dialog .staff-portrait {
  width: 10rem;
}

.no-portrait {
  background-color: var(--clr-gray-100);
  aspect-ratio: 1;
}

@media only screen and (min-width: 720px) {
  .staff-dialog .staff-portrait {
    width: 16rem;
  }
}

.staff-dialog-content .staff-title {
  margin-top: 0;
  font-style: italic;
}

/* image and photo styles */

.withBorder {
  border: solid 1px rgb(var(--clr-gray-100));
}

.floatRight {
  margin: 0 0 1em 1em;
}

.floatLeft {
  margin: 0 1em 1em 0;
}

@media only screen and (min-width: 540px) {
  .floatRight {
    float: right;
    max-width: 33%;
    padding-top: 6px;
  }

  .floatLeft {
    float: left;
    max-width: 33%;
    padding-top: 6px;
  }

  .withBorder {
    border-width: 2px;
  }
}

@media only screen and (min-width: 720px) {
  .floatRight,
  .floatLeft {
    max-width: 40%;
  }
}

/* Clearfix ---------------------------------- */

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* for embedded media */

main .flexObject {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

main .flexObject iframe,
main .flexObject object,
main .flexObject embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flexObject:has(iframe[src*="youtube"]) {
  overflow: clip;
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgb(0 0 0 / 0.25);
}

.hide-mobile {
  display: none;
}

@media (min-width: 1200px) {
  .hide-desktop {
    display: none;
  }

  .hide-mobile {
    display: block;
  }
}

/* site header */

.nav-list,
.nav-list li,
.nav-list li li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: block;
  text-decoration: none;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto; /* Logo takes space, icons stay right */
  grid-template-areas:
    "announcement announcement"
    "logo         controls";
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 2rem rgb(0 0 0 / 0.33);
  background: rgb(var(--clr-white));
  color: rgb(var(--clr-black));
  --announcement-height: 2.5rem;
  --logo-height: clamp(2rem, 1.25rem + 4vw, 4rem);
}

.announcement-bar {
  grid-area: announcement;
  background-color: rgb(var(--clr-red-400));
  padding: 0 var(--space);
  height: var(--announcement-height);
  align-content: center;
}

.announcement-bar a {
  display: block;
  color: rgb(var(--clr-white));
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  white-space: nowrap; /* Prevents text from wrapping to the next line */
  overflow: hidden; /* Hides any text that overflows the container */
  text-overflow: ellipsis; /* Displays an ellipsis (...) at the clip point */
  max-width: calc(100vw - var(--space) - var(--space));
  text-decoration: none;
}

.logo {
  grid-area: logo;
  padding: calc(var(--space) * 0.75) var(--space);
  align-content: center;
}

.logo a {
  display: block;
}

.logo svg,
.logo img {
  height: var(--logo-height);
  width: auto;
}

.mobile-controls {
  grid-area: controls;
  padding: 0;
  display: flex;
  align-items: stretch;
}

.mobile-controls button {
  all: unset;
  background-color: rgb(var(--clr-yellow-400));
  padding-inline: calc(var(--space) * 0.625);
}

.mobile-controls button:nth-child(2) {
  background-color: rgb(var(--clr-yellow-orange-400));
}

.mobile-controls button:nth-child(3) {
  background-color: rgb(var(--clr-orange-400));
}

.mobile-controls button svg {
  filter: opacity(0.5);
}

.mobile-controls button[aria-expanded="true"] {
  background-color: rgb(var(--clr-red-700));
}

.mobile-controls button[aria-expanded="true"] svg {
  filter: invert(1) opacity(1);
}

/* Base panel styles (Mobile First) */
#utility-panel,
#search-panel,
#nav-panel {
  position: fixed;
  top: calc(var(--announcement-height) + var(--logo-height) + calc(var(--space) * 1.5)); /* Adjust this to match your header height */
  right: 0;
  bottom: 0;
  width: 100%; /* Don't cover the whole screen so they can see the 'close' area */
  background: linear-gradient(to bottom, rgb(var(--clr-red-700)), rgb(var(--clr-red-400)));
  color: rgb(var(--clr-white));
  z-index: 999;

  /* The "Magic" Slide: Hide it to the right */
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Ensure content scrolls if it's too long */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* The Active State */
#utility-panel.is-active,
#search-panel.is-active,
#nav-panel.is-active {
  transform: translateX(0);
}

#utility-panel {
  justify-content: center;
}

#search-panel {
  padding: calc(var(--space) * 2);
}

.search-bar label {
  display: none;
}

.search-bar input {
  height: auto;
  font-size: var(--fs-md);
  padding: 0.5em 1em;
  border-radius: 100vw;
  box-sizing: border-box;
}

.language-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}

.language-nav a {
  padding-block: 0.5em;
}

.site-header .social-nav {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.social-nav ul {
  display: flex;
  gap: 0.5rem;
}

.site-header .social-nav ul {
  justify-content: center;
}

.social-nav svg {
  width: 1.5rem;
}

.site-header .social-nav svg {
  width: 2rem;
}

.social-icon_dark {
  color: white;
}

/* --- MOBILE (Narrow) --- */

.main-nav {
  padding: 1rem 0;
}

.main-nav > ul > li > a {
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
}

.main-nav > ul > li {
  padding: 0.625rem 2rem;
  border-bottom: solid 1px rgb(255 255 255 / 0.1);
}

.dropdown {
  display: none; /* Hidden by default */
  width: 100%;
  font-size: var(--fs-sm);
  padding: 0.5em;
}

.has-dropdown.is-open > .dropdown {
  display: block; /* Show when parent has .is-open */
}

.dropdown-toggle,
.dropdown-toggle:focus {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.dropdown-toggle svg {
  width: 0.875rem;
}

.dropdown a {
  padding: 0.25em 0;
  line-height: 1.3;
}

.has-dropdown {
  display: flex;
  flex-wrap: wrap;
}

.has-dropdown.is-open .dropdown-toggle {
  transform: rotate(180deg); /* Flip chevron when open */
  background: none;
}

.utility-nav {
  display: none;
}

@media (min-width: 1200px) {
  .site-header {
    grid-template-columns: auto 1fr; /* Two main columns */
    grid-template-areas:
      "announcement utility"
      "logo         search"
      "nav          nav";
    background-color: rgb(var(--clr-yellow-100));
  }

  /* Reset panels from "overlay mode" to "grid mode" */
  #utility-panel,
  #search-panel,
  #nav-panel {
    position: static;
    transform: none; /* Kill the slide effect */
    width: auto;
    max-width: none;
    box-shadow: none;
    padding: 0;
    transition: none;
    background: none;
    display: flex; /* Or whatever your grid needs */
    visibility: visible;
  }

  #nav-panel {
    grid-area: nav;
    overflow: visible;
    background: rgb(var(--clr-white));
    border: none;
    color: rgb(var(--clr-black));
    padding: 0;
  }

  .announcement-bar {
    grid-area: announcement;
    align-self: stretch;
    height: 100%;
    padding: 0 var(--space);
  }

  .announcement-bar a {
    font-size: var(--fs-sm);
  }

  #utility-panel {
    grid-area: utility;
    justify-self: end;
    height: 100%;
    justify-self: stretch;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    justify-content: end;
    gap: 0;
    background: linear-gradient(to right, rgb(var(--clr-red-400)), rgb(var(--clr-red-700)));
  }

  .utility-nav .nav-list {
    gap: 0;
  }

  .utility-nav .nav-list a {
    background-color: black;
    padding: 1em var(--space);
    font-weight: var(--fw-bold);
  }

  .utility-nav .nav-list a[href*="donate"] {
    background-color: rgb(var(--clr-orange-400));
  }

  .utility-nav .nav-list a[href*="member"] {
    background-color: rgb(var(--clr-yellow-400));
    color: rgb(var(--clr-red-700));
  }

  #utility-panel a {
    font-size: 0.875rem;
    padding-block: 1em;
    text-transform: uppercase;
  }

  .site-header .social-nav {
    margin-top: 0;
    flex-direction: row;
  }

  .site-header .social-nav svg {
    width: 1.5rem;
  }

  .logo {
    grid-area: logo;
    background: none;
  }

  #search-panel {
    grid-area: search;
    background: none;
    color: black;
    flex-direction: row-reverse;
    justify-content: end;
    gap: var(--space);
  }

  .logo,
  #search-panel {
    padding: var(--space);
  }

  .search-bar input {
    font-size: var(--fs-base);
    width: 24ch;
    transition: box-shadow 150ms ease;
    background-color: rgb(var(--clr-white));
    outline: solid 1px rgb(var(--clr-black) / 0.25);
    transition: opacity 300ms ease;
    background-image: url(/img/search-icon.svg);
    background-repeat: no-repeat;
    background-position: 0.75rem center;
    background-size: 1.5rem;
    padding-left: 2.5rem;
    transition:
      outline-color 150ms ease,
      background-color 150ms ease;
  }

  .search-bar input::placeholder {
    color: rgb(var(--clr-black) / 0.5);
    transition: color 150ms ease;
  }

  .search-bar input:focus::placeholder {
    color: rgb(var(--clr-black) / 1);
  }

  .search-bar input:focus {
    outline-color: rgb(var(--clr-black) / 1);
  }

  .site-header .social-nav {
    margin-top: 0;
    gap: 1rem;
  }

  /* Hide the stuff we don't need on desktop */
  .mobile-controls,
  .main-nav-utilitylink,
  #nav-panel .social-nav,
  .header-overlay,
  .main-nav .nav-level_secondary,
  .search-bar label {
    display: none;
  }

  .main-nav {
    padding: 0.5rem calc(var(--space) * 0.5);
  }

  .main-nav .nav-list {
    gap: 0;
  }

  .main-nav > ul > li {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.375rem;
    padding: 0.5rem calc(var(--space) * 0.5);
    border-radius: 0.25rem;
    line-height: 1.2;
    align-items: normal;
  }

  .main-nav > ul > li:has(.dropdown):hover {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .main-nav > ul > li:hover,
  .main-nav > ul > li:has(*:hover) {
    background-color: rgb(var(--clr-red-400));
    filter: drop-shadow(0 0 0.75rem rgb(var(--clr-black) / 0.25));
    color: rgb(var(--clr-white));
  }

  .main-nav li.is-active-section,
  .main-nav li:has(.is-active-page) {
    color: rgb(var(--clr-red-400));
  }

  .has-dropdown {
    position: relative;
  }

  .nav-list {
    display: flex;
  }

  .nav-list.dropdown {
    display: none;
  }

  /* Show on Hover OR when a child link is Focused via keyboard */
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    display: block;
    position: absolute;
    top: calc(100%);
    left: 0;
    background-color: rgb(var(--clr-red-400));
    /* background-image: linear-gradient(to bottom, rgb(var(--clr-red-400)), rgb(var(--clr-red-700))); */
    min-width: 200px;
    padding: 0.625rem 1rem;
    font-size: var(--fs-base);
    width: max-content;
    max-width: 30ch;
    border-radius: 0 0.25rem 0.25rem 0.25rem;
  }

  .dropdown-toggle,
  .dropdown-toggle:focus {
    pointer-events: none;
    opacity: 0.5;
    position: relative;
    top: 1px;
  }

  .has-dropdown:hover .dropdown-toggle {
    opacity: 1;
  }

  .dropdown a {
    padding: 0.375em 0;
    color: rgb(var(--clr-white) / 0.75);
  }

  .dropdown .is-active-page a {
    font-weight: var(--fw-bold);
    color: rgb(var(--clr-yellow-400) / 1);
    pointer-events: none;
  }

  .dropdown a:hover {
    color: rgb(var(--clr-white) / 1);
  }

  .search-container {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .utility-nav {
    display: flex;
    color: white;
  }

  .social-nav {
    flex-direction: row;
  }

  .social-nav a {
    opacity: 0.5;
    transition: opacity 150ms ease;
  }

  .social-nav a:hover {
    opacity: 1;
  }

  .social-nav > div {
    font-size: var(--fs-sm);
  }

  .language-nav {
    font-size: var(--fs-base);
  }

  .language-nav a {
    padding: 1em var(--space);
    background-color: rgb(var(--clr-black) / 0.25);
  }

  .language-nav li {
    display: none;
  }

  .language-nav .current-language {
    display: block;
  }
}

/* footer */

.site-footer {
  background-color: rgb(var(--clr-black));
  --hdr-color: rgb(var(--clr-yellow-400));
}

.site-footer-inset {
  display: grid;
  gap: var(--space);
}

.footer-about img {
  width: min(50%, 320px);
}

@media (min-width: 960px) {
  .site-footer-inset {
    grid-template-columns: 6fr 2fr 2fr;
    gap: calc(var(--space) * 2);
  }
}

.footer-social svg {
  width: 1.5rem;
}

.footer-signoff {
  grid-column: -1/1;
  border-top: solid 1px rgb(var(--clr-white) / 0.25);
  padding-top: var(--space);
}

/* new home featured block */

.home-featured-event {
  background-color: white;
  padding: calc(var(--space) * 1.25) calc(var(--space) * 1);
}

.home-featured-event > * + * {
  margin-top: calc(var(--space) * 0.75);
}

.home-featured-photo {
  position: relative;
}

.home-featured-photo-img img {
  width: 100%;
  max-height: calc(100vh - 270px - 1rem);
  object-fit: cover;
}

.home-featured-photo-info {
  position: absolute;
  left: var(--space);
  bottom: var(--space);
  width: fit-content;
  max-width: 40ch;
  background: rgb(0 0 0 / 0.75);
  color: #fff;
  padding: 1.5em;
  text-align: left;
  font-size: var(--fs-sm);
}

/* new home congress blocks */

.home-events {
  background: rgb(var(--clr-yellow-100));
}

.home-congress {
  --block-color: rgb(var(--clr-red-400));
  background-color: white;
  overflow: clip;
  color: rgb(var(--clr-black));
  --hdr-color: var(--block-color);
  position: relative;
}

.home-congress::before {
  content: "";
  display: block;
  width: 100%;
  height: 1rem;
  background-image: linear-gradient(to right, hsl(from var(--block-color) h s l), hsl(from var(--block-color) h s 25%));
}

.home-congress-graphic img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  object-position: center;
}

.home-congress-details {
  padding: calc(var(--space) * 1.25) calc(var(--space) * 1);
}

.home-congress-details > * + * {
  margin-top: calc(var(--space) * 0.75);
}

@media (min-width: 1200px) {
  .home-events {
    width: var(--max-width);
    margin-inline: auto;
    padding-block: calc(var(--space) * 3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space);
  }

  .home-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }

  .home-featured-photo-img img {
    position: absolute;
    height: 100%;
    max-height: none;
  }

  .home-congress {
    border-radius: 8px;
    box-shadow: 0 0 1rem rgb(0 0 0 / 0.1);
  }
}

.home-congress-date {
  padding-top: 0.75em;
  margin-top: 0.75em;
  border-top: 1px solid rgb(from var(--block-color) r g b / 0.25);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
}

.home-congress-logo img {
  height: calc(var(--space) * 1.5);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.home-congress-links {
  list-style-type: none;
  margin-inline: 0;
}

.home-congress-links li {
  margin: 0;
}

.home-congress-links a {
  position: relative;
  display: block;
  padding: 0.375em 0;
  line-height: 1.2;
  font-weight: var(--fw-bold);
  color: hsl(from var(--block-color) h s 25% / 1);
  font-size: var(--fs-md);
  text-decoration: none;
}

.home-congress-links a::after {
  content: "";
  rotate: -90deg;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 1rem;
  aspect-ratio: 1;
  display: block;
  background-image: url(/img/icon-dropdown-arrow.svg);
  background-position: right center;
  background-repeat: no-repeat;
}

/* home events alternate */

.upcoming-events-news ul {
  display: grid;
  gap: calc(var(--space));
  grid-template-columns: repeat(2, 1fr);
  list-style-type: none;
  margin-inline: 0;
}

.upcoming-events-news ul li {
  margin: 0 !important;
}

/* home news */

.home-news {
  background-color: rgb(var(--clr-red-700));
  color: white;
  --hdr-color: rgb(var(--clr-yellow-400));
}

.home-socialmedia {
  background-color: rgb(var(--clr-yellow-100));
  --hdr-color: rgb(var(--clr-red-700));
}

.home-socialmedia .layout {
  display: grid;
  gap: var(--space);
}

@media (min-width: 1200px) {
  .home-socialmedia .layout {
    grid-template-columns: 3fr 1fr;
  }
}

/* footer ad blocks */

.footer-ads ul {
  list-style-type: none;
  margin-inline: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--space) * 1);
}

@media (min-width: 800px) {
  .footer-ads ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-ads li {
  margin: 0;
  box-shadow: 0 0 1rem rgb(0 0 0 / 0.1);
  border-radius: 0.25rem;
  background-color: white;
  padding: 0;
}
