@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");

:root {
  --clr-black: 0 0 0;
  --clr-white: 255 255 255;

  --clr-primary: 0 117 98;
  --clr-primary-dark: 0 71 62;
  --clr-primary-bright: 125 232 146;
  --clr-primary-pale: 238 246 233;

  --clr-accent1: 125 232 146;
  --clr-accent1-hover: 255 201 150;
  --clr-accent2: 255 201 150;
  --clr-accent2-hover: 255 201 150;

  --clr_primary: rgb(0, 117, 98);
  --clr_primary_dark: rgb(0, 71, 62);
  --clr_primary_accent: rgb(125 232 146);
  --clr_primary_light: rgb(206, 230, 193);
  --clr_primary_pale: rgb(238, 246, 233);

  --letter-spacing: 0.015em;

  --pad-xxs: min(2vw, 0.5rem);
  --pad-xs: min(3vw, 0.75rem);
  --pad-sm: min(4vw, 2rem);
  --pad-md: min(6vw, 3rem);
  --pad-lg: min(8vw, 4rem);
  --pad-xl: min(12vw, 6rem);

  --radius-xs: 0.125rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html {
  background-color: rgb(var(--clr-primary));
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  -webkit-tap-highlight-color: transparent;
  font-size: calc(0.875rem + ((1vw - 0.24rem) * 0.1645));
}

@media only screen and (min-width: 1600px) {
  html {
    font-size: 16px;
  }
}

body {
  color: rgb(var(--clr-white));
  height: 100%;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(to bottom right, rgb(var(--clr-primary) / 100%) 33%, rgb(var(--clr-primary-dark) / 100%) 100%);
  background-attachment: fixed;
}

body::before {
  content: none;
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/bg-pattern.svg");
  background-size: contain;
  background-attachment: fixed;
  opacity: 0.5;
  z-index: -1;
}

body.nav-is-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.textLink {
  text-decoration: underline;
}

/*overall layout */

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 1001;
}

/*header*/

.siteHeader {
  background-color: rgb(var(--clr-primary-dark));
}

.logo--full {
  display: none;
}
.navBox--closed {
  display: none;
}

.branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: background 150ms ease;
}

.logo {
  padding: 0 1.5rem;
}

.logo--simple {
  width: min(20rem, 66vw);
}

.navToggle {
  width: 4.5rem;
  height: 4.5rem;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(var(--clr-black) / 0.25);
}

.nav-is-open .navToggle {
  background-color: rgb(var(--clr-primary));
}

.navToggle--inactive .close-icon {
  display: none;
}
.navToggle--active .menu-icon {
  display: none;
}

.navToggle:focus {
  outline: none;
}

/*nav box mobile */

.navBox {
  position: fixed;
  left: 0;
  top: 4.5rem;
  width: 100dvw;
  height: calc(100dvh - 4.5rem);
  z-index: 1;
  padding: var(--pad-lg);
  overflow-y: scroll;
  background-color: rgb(var(--clr-primary-dark));
  color: rgb(var(--clr-white));
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
}

@media only screen and (max-width: 960px) {
  .navBox {
    transition: transform 250ms ease-out;
  }
}

.navBox--open {
  transform: translateX(0);
}

.navBox > * + * {
  margin-top: var(--pad-md);
}

.mainNav_link {
  display: block;
  font-weight: 700;
  padding: 0.5rem 0;
  font-size: 1.25rem;
  line-height: 1.15;
  color: rgb(var(--clr-white) / 0.75);
  transition: color 150ms ease;
}

.mainNav_link:hover,
.mainNav_link:focus {
  color: rgb(var(--clr-white));
  outline: none;
}

.mainNav_item--active .mainNav_link {
  color: rgb(var(--clr-accent1));
}

.mainNav_link i {
  margin-right: 0.5rem;
  color: rgb(var(--clr-primary-pale));
}

.langNav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
}

.langNav_item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.langNav_link {
  background-color: rgb(var(--clr-white) / 0.25);
  color: rgb(var(--clr-white));
  padding: 0.625em 1.25em;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.1;
  transition: color 150ms ease, background 150ms ease;
}

.langNav_item:first-child .langNav_link {
}

.langNav_item:last-child .langNav_link {
}

.langNav_link:hover,
.langNav_link:focus {
  color: rgb(var(--clr-white));
  background-color: rgb(var(--clr-black) / 0.5);
  outline: none;
}

.langNav_item--active .langNav_link {
  background-color: white;
  color: rgb(var(--clr-primary-dark));
  pointer-events: none;
}

.socialShare_title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.socialShare_title span {
  color: rgb(var(--clr-accent1));
}

.socialShare_nav {
  display: flex;
}

.socialShare_item {
  max-width: 36px;
  transition: background-color 100ms ease;
}

.socialShare_item img {
  max-width: 100%;
}

.socialShare_item:focus img,
.socialShare_item:hover img {
  outline: none;
  scale: 1.1;
}

.socialShare_nav--light img {
  background-color: rgb(var(--clr-black) / 0.25);
}

.socialShare_nav--light .socialShare_item:focus img,
.socialShare_nav--light .socialShare_item:hover img {
  background-color: rgb(var(--clr-black) / 0.75);
}

.otherLinks h4 {
  font-size: 1.1rem;
  margin: 0 0 0.375rem;
  color: rgb(var(--clr-primary-pale));
}

.otherLinks > * {
  margin: 0.375rem 0 0;
}

.otherLinks a {
  display: block;
  padding: 0.375em 1em;
  background: rgb(var(--clr-black) / 0.1);
  text-decoration: none;
  color: rgb(var(--clr-white));
  font-weight: 500;
  margin-top: 0.375rem;
  transition: background 150ms ease;
  border-radius: 0.25em;
}

.otherLinks a:hover,
.otherLinks a:focus {
  background: rgb(var(--clr-black) / 0.25);
}

.lasaLogo {
  margin-top: var(--pad-lg);
}

.lasaLogo img {
  max-width: 120px;
}

/*main area layout*/

.mainContent_inset {
  padding: var(--pad-xl) var(--pad-md);
  display: flex;
  flex-direction: column;
  gap: var(--pad-xl);
  max-width: 1760px;
  margin: 0 auto;
}

.lasa2025-artwork {
  display: block;
  box-shadow: 0 4px 12px rgb(var(--clr-black) / 0.33);
}

@media only screen and (min-width: 960px) {
  .pagewrap {
    display: grid;
    grid-template-columns: min(30vw, 400px) auto;
    min-height: 100vh;
  }
  .navToggle,
  .logo--simple {
    display: none;
  }
  .logo--full {
    display: block;
  }
  .siteHeader {
    background-color: rgb(var(--clr-black) / 0.25);
    padding: var(--pad-xxs);
  }

  body.nav-is-open {
    overflow: auto;
  }
  .nav-is-open .branding {
    background-color: transparent;
  }

  .branding {
    padding: 0;
    background: transparent;
  }
  .logo {
    padding: 0;
    margin: 0;
  }

  .navBox,
  .navBox--open {
    transform: none;
    transition: none;
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    padding: var(--pad-sm);
    margin: 0;
    background: transparent;
    overflow: visible;
  }
}

.columns {
  display: grid;
  gap: var(--pad-lg) var(--pad-md);
  grid-template-columns: repeat(auto-fit, minmax(min(28rem, 100%), 1fr));
}

/*content styles*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 1em;
}

.btn {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  background-color: rgb(var(--clr-black) / 0.25);
  color: rgb(var(--clr-white) / 0.9);
  padding: 0.75em 1.5em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--letter-spacing);
  border-radius: 0.125rem;
  transition: all 150ms ease;
}

.btn:hover,
.btn:focus {
  color: rgb(var(--clr-white));
  background-color: rgb(var(--clr-black) / 0.9);
}

.btn > i {
  color: rgb(var(--clr-primary-pale));
  font-size: 1rem;
  line-height: 1;
}

.btn--accent {
  background-color: rgb(var(--clr-primary-bright));
  color: rgb(var(--clr-primary-dark));
}

.btn--accent:hover,
.btn--accent:focus {
  background-color: rgb(var(--clr-white));
  color: rgb(var(--clr-primary-dark));
  outline: none;
}

.btn--accent2 {
  background-color: rgb(var(--clr-accent2));
  color: rgb(var(--clr-white));
}

.btn--accent2:hover,
.btn--accent2:focus {
  background-color: rgb(var(--clr-accent2-hover)) !important;
  color: rgb(var(--clr-white));
  outline: none;
}

.btn--accent i,
.btn--accent2 i {
  color: rgb(var(--clr-black));
}

.btn--accent:hover i,
.btn--accent2:hover i {
  color: rgb(rgb(var(--clr-primary-dark)));
}

.searchProgram {
  margin: 1.5em auto !important;
}

.btn--searchProgram {
  font-size: 1.25rem;
}

.btn--searchProgram i {
  font-size: 1.5rem;
}

/*today nav*/

.todayNav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.todayNav_title {
  font-size: calc(2rem + ((1vw - 0.24rem) * 1.9737));
  font-size: calc(2rem + ((1vw - 0.24rem) * 1.6447));
  line-height: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  letter-spacing: -0.02em;
}

.todayNav_title img {
  margin: 0 auto;
  padding: 0 2rem;
}

.todayNav_title a {
  color: inherit;
  padding-bottom: 0.15em;
  border-bottom: solid 1px rgb(var(--clr-white) / 0);
}

.todayNav_title a:hover {
  border-color: rgb(var(--clr-white));
}

.edt_notice {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0;
  color: rgb(var(--clr-primary-pale));
  text-transform: none;
}

.todayNav_nav {
  margin: 1.5rem 0 0;
  display: flex;
  justify-content: center;
  gap: 0.375rem;
}

@media only screen and (min-width: 800px) {
  .edt_notice {
    font-size: 0.875rem;
    margin-top: var(--pad-sm);
  }
  .todayNav_nav {
    margin: 2.25rem 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .edt_notice {
    font-size: 1rem;
  }
}

.todayNav_link {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  align-items: center;
  background-color: rgb(var(--clr-black) / 0.1);
  padding: 1rem 0.625rem;
  font-weight: 700;
  line-height: 1;
  color: rgb(var(--clr-white) / 0.5);
  border-radius: var(--radius-sm);
  transition: background 150ms ease, color 150ms ease;
}

.todayNav_link:hover,
.todayNav_link:focus {
  color: rgb(var(--clr-white));
  background-color: rgb(var(--clr-black) / 0.25);
  outline: none;
  scale: 1.05;
}

.todayNav_link--active:hover {
  color: rgb(var(--clr-white));
  background-color: rgb(var(--clr-black) / 0.75);
  scale: 1.05;
}

.todayNav_link--active {
  color: rgb(var(--clr-primary-dark));
  background-color: rgb(var(--clr-primary-bright));
  scale: 1.05;
  pointer-events: none;
}

.todayNav_link .day {
  font-size: 1.375rem;
}

.todayNav_link .month {
  text-transform: uppercase;
  font-size: 0.625rem;
}

@media only screen and (min-width: 800px) {
  .todayNav_link {
    padding: 1.25rem 0.875rem;
  }
  .todayNav_link .day {
    font-size: 1.75rem;
  }

  .todayNav_link .month {
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 1280px) {
  .todayNav_link .day {
    font-size: 2rem;
  }

  .todayNav_link .month {
    font-size: 1rem;
  }
}

.blockTitle {
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  color: rgb(var(--clr-primary-pale));
  text-align: center;
}

.itemList {
  display: flex;
  flex-direction: column;
}

.item + .item {
  margin-top: var(--pad-xs);
}

.item {
  padding: var(--pad-sm);
  border-radius: var(--radius-xs);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  background-color: rgb(var(--clr-black) / 0.1);
  transition: background-color 150ms ease;
}

.item_text {
  font-size: 0.875rem;
}

.item--bgImg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: var(--pad-sm);
}

.item--bgImg img {
  width: 100%;
  object-fit: cover;
  margin: 0;
}

.item_title {
  font-size: 1.25rem;
  text-wrap: pretty;
}

.blockExplore .item_title {
  color: rgb(var(--clr-primary-pale));
}

.item > * + *,
.item_inset > * + * {
  margin-top: 0.75em;
}

.blockHighlights .item {
  background-color: rgb(var(--clr-white) / 0.9);
  color: rgb(var(--clr-black));
}

.blockHighlights a.item:hover {
  cursor: default;
}

.blockHighlights a.item[href]:hover,
.blockHighlights a.item[href]:focus-visible {
  cursor: pointer;
  background-color: rgb(var(--clr-white));
  box-shadow: 0 0 1rem rgb(var(--clr-black) / 0.25);
}

.blockHighlights .item_title {
  color: rgb(var(--clr-primary-dark));
}

.blockHighlights .item-accent1 {
  background-color: rgb(var(--clr-accent1));
  color: rgb(var(--clr-black));
}

.item-accent1 .item_title {
  color: rgb(rgb(var(--clr-primary-dark)));
}

.item-accent2 .item_title {
  color: rgb(var(--clr-white));
}

.blockHighlights .item-accent1:hover,
.blockHighlights .item-accent1:focus,
.blockHighlights .item-accent1:focus-within {
  background-color: rgb(var(--clr-accent1-hover)) !important;
}

.blockHighlights .item-accent2 {
  background-color: rgb(var(--clr-accent2));
  color: rgb(var(--clr-white));
}

.blockHighlights .item-accent2:hover,
.blockHighlights .item-accent2:focus,
.blockHighlights .item-accent2:focus-within {
  background-color: rgb(var(--clr-accent2-hover)) !important;
}

.blockExplore a.item {
  color: rgb(var(--clr-white));
  transition: background 150ms ease;
}

.blockExplore a.item:hover,
.blockExplore a.item:focus {
  background-color: rgb(var(--clr-black) / 0.5);
  outline: none;
}

.blockExplore a.item-filmfest:hover,
.blockExplore a.item-filmfest:focus {
  background: rgb(var(--clr-black) / 0.1);
  outline: none;
}

.item_tags {
  display: flex;
  gap: 0.375rem;
}

.tag,
.film_tag {
  line-height: 1;
  font-size: 0.8rem;
  background-color: rgb(var(--clr-black) / 0.1);
  color: rgb(var(--clr-black) / 0.75);
  font-weight: 700;
  padding: 0.5em 1em;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
}

.tag--live,
.film_tag {
  background-color: rgb(var(--clr-accent2));
  color: rgb(var(--clr-white));
}

.tag--live svg {
  width: 1rem;
  height: 1rem;
}

.tag--has-link {
  background-color: rgb(var(--clr-primary-bright));
}

/* live stream */
.blockHighlights .live-stream {
  margin-block: 3rem;
}

.live-stream .item_title {
  background-color: rgb(var(--clr-accent2));
  color: white;
  display: inline-flex;
  text-transform: uppercase;
  padding: 0.5em 1em;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.live-stream .flexObject {
  box-shadow: 0 0 8px rgb(var(--clr-black) / 0.5);
}

/*films*/

.btn--films {
  font-size: 0.7rem;
}

.filmsViewer {
  display: grid;
  gap: 0.75rem;
  grid-auto-flow: column;
  grid-auto-columns: min(45%, 11rem);
  margin-top: var(--pad-sm);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
  position: relative;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  -webkit-mask-image: linear-gradient(to right, black 90%, transparent);
  mask-image: linear-gradient(to right, black 90%, transparent);
  padding-right: 10%;
}

.filmsViewer > * {
  scroll-snap-align: start;
}

.filmsViewer::-webkit-scrollbar {
  height: 0.5rem;
  border-radius: 1rem;
  background: rgb(var(--clr-black) / 0.1);
}

.filmsViewer::-webkit-scrollbar-thumb {
  background-color: rgb(var(--clr-primary-pale));
  border-radius: 1rem;
}

.blockExplore .item-filmfest,
.blockExplore .item-filmfest:hover {
  background-color: rgb(var(--clr-black) / 0.1);
}

.item-filmfest h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.item-filmfest h3 img {
  width: min(240px, 50%);
}

@media only screen and (min-width: 640px) {
  .item-filmfest h3 {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .item-filmfest h3 img {
    margin-bottom: 0;
  }
}

.film {
  color: rgb(var(--clr-white) / 0.9);
  background-color: rgb(var(--clr-black) / 0.1);
  transition: background-color 150ms ease;
}

.film:hover,
.film:focus {
  color: rgb(var(--clr-white));
  background-color: rgb(var(--clr-black) / 0.25);
  outline: none;
}

.film_poster {
  aspect-ratio: 1 / 1.4;
  object-fit: cover;
}

.note {
  background-color: magenta;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25em;
}

* + .note {
  margin-top: 1rem;
}

.film_tag {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.film_info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.film_info > * {
  margin: 0;
  line-height: 1.25;
}

.film_title {
  font-weight: 700;
  font-size: 1rem;
}

.film_times {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.film_times--exception {
  color: rgb(var(--clr-primary-bright));
  font-weight: 700;
}

.film_award {
  font-size: 0.75rem;
  font-style: italic;
}

.filmsNote {
  font-weight: 700;
  text-align: center;
  color: rgb(var(--clr-white));
  max-width: 70ch;
  margin: 1.5rem auto 3rem;
}

@media (hover: hover) {
  .film {
    outline-offset: -1px;
    position: relative;
    isolation: isolate;
    overflow: clip;
    background-color: rgb(var(--clr-primary-dark));
  }

  .film:hover,
  .film:focus-visible {
    background-color: rgb(var(--clr-primary-dark));
  }

  .film_info {
    opacity: 0;
    position: absolute;
    inset: 0;
    transition: all 300ms ease-out;
    padding: 1rem;
  }

  .film .film_poster {
    transition: all 300ms ease;
  }

  .film:hover .film_poster,
  .film:focus-visible .film_poster {
    filter: grayscale(1) opacity(0.05) blur(1px);
  }

  .film:hover .film_info,
  .film:focus-visible .film_info {
    opacity: 1;
  }
}

.filmsGroup {
  padding: var(--pad-sm);
  border-radius: 0.25rem;
  background-color: rgb(var(--clr-black) / 0.1);
}

.filmsGroup + .filmsGroup {
  margin-top: 1rem;
}

.filmCategory {
  font-size: 1.25rem;
}

.filmCategory a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgb(var(--clr-primary-pale));
}

.toggleBox_btn::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 0.5;
}

.toggleBox_btn--active::after {
  content: "â€“";
}

.filmCategory a:hover {
  color: rgb(var(--clr-white));
}

.filmDetail {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--pad-sm);
  background: rgb(var(--clr-black) / 0.1);
}

.filmDetail > * + * {
  margin-top: var(--pad-sm);
}

.filmDetail_description {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.filmDetail_description > * + * {
  margin: var(--pad-sm) 0 0;
}

.filmDetail_title {
  font-size: 2rem;
}

.filmDetail_details {
  font-weight: 400;
}

.filmDetail_details > *::after {
  content: "\0020â€¢\0020";
  font-weight: 700;
  color: rgb(var(--clr-primary-bright));
}

.filmDetail_details > *:last-child::after {
  content: none;
}

.filmDetail_btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filmDetail_content > * + * {
  margin-top: var(--pad-xs);
}

@media only screen and (min-width: 800px) {
  .filmDetail_content {
    display: flex;
  }

  .filmDetail_description {
    flex: 3;
  }
  .filmDetail_poster {
    flex: 1;
    margin-left: 1.5rem;
  }
}

.features {
  display: flex;
  flex-direction: column;
}

.features > * + * {
  margin-top: var(--pad-sm);
}

.feature {
  flex: 1;
  background-color: rgb(var(--clr-black) / 0.1);
  display: flex;
  align-items: stretch;
  transition: background 150ms ease;
  padding: var(--pad-sm);
}

.feature:hover,
.feature:focus {
  background-color: rgb(var(--clr-black) / 0.25);
  outline: none;
}

.feature > * + * {
  margin-left: var(--pad-sm);
}

.feature_img {
  position: relative;
  flex: 35%;
  min-height: 150px;
}

.feature_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.feature_content {
  flex: 65%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.feature_title {
  font-weight: 700;
  font-size: 1rem;
  color: rgb(var(--clr-primary-pale));
}

.feature_text {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .features {
    flex-direction: row;
  }

  .features > * {
    flex: 100%;
  }

  .features > * + * {
    margin: 0 0 0 1rem;
  }

  .feature {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-align: center;
    min-height: 0;
  }

  .feature > * {
    flex: auto;
  }

  .feature > * + * {
    margin: 1em 0 0;
  }

  .feature_content {
    justify-content: flex-start;
  }
}

.meetings_presentations {
  padding: var(--pad-md);
  background-color: rgb(var(--clr-black) / 0.25);
}

.meetings_presentations h2 {
  text-align: left;
}

.itemCount {
  background-color: rgb(var(--clr-primary-bright));
  font-size: 0.75rem;
  height: 2rem;
  width: 2rem;
  display: grid;
  place-items: center;
  text-align: center;
}

.meetingsList .item:hover,
.meetingsList .item:focus-visible {
  background-color: rgb(var(--clr-black) / 0.5);
  outline: none;
}

.item:focus {
  outline: solid 2px;
  outline-offset: -2px;
}

.meeting_title {
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
  color: rgb(var(--clr-primary-pale));
}

.meeting_times {
  font-size: 0.8rem;
  margin-top: 0.375rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: var(--letter-spacing);
}

@media (min-width: 1280px) {
  .meetings_presentations .col {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .meetingsList {
    flex: 100%;
    max-height: 50vh;
    padding-right: 1rem;
    margin-right: -1rem;
    overflow-y: scroll;
    scroll-snap-type: block mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 2rem), transparent);
    padding-bottom: 2rem;
  }

  .meeting {
    scroll-snap-align: start;
  }

  .meetingsList::-webkit-scrollbar {
    width: 0.5rem;
  }

  .meetingsList::-webkit-scrollbar-track {
    background: rgb(var(--clr-black) / 0.1);
  }

  .meetingsList::-webkit-scrollbar-thumb {
    background-color: rgb(var(--clr-primary-bright));
    border-radius: 2rem;
  }

  .meetingsList::-webkit-scrollbar-thumb:hover {
    background-color: rgb(var(--clr-white));
  }
}

.ads {
  display: grid;
  gap: var(--pad-md);
}

.ad {
  background: rgb(var(--clr-black) / 0.1);
  transition: background 150ms ease;
}

.ad:hover,
.ad:focus {
  background: rgb(var(--clr-black) / 0.25);
}

.ads--three,
.ads--four {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .ads--three,
  .ads--four {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .ads--three {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .ads--four {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.sponsors {
  background-color: rgb(var(--clr-white));
  padding: var(--pad-md);
  color: #222;
  text-align: center;
}

.sponsors .blockTitle {
  color: rgb(var(--clr-primary-dark));
  font-size: 1.25rem;
  margin-bottom: var(--pad-md);
  text-align: center;
}

.sponsorsGrid,
.institutionsGrid,
.advertisersGrid {
  display: grid;
  gap: var(--pad-sm);
  grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));
}

.sponsorsGrid {
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 33%), 1fr));
  gap: var(--pad-md);
}

@media (min-width: 960px) {
  .institutionsGrid,
  .advertisersGrid {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  }
}

.sponsor,
.institution,
.advertiser {
  border: solid 0.1rem rgb(var(--clr-black) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-sm);
  transition: border-color 150ms ease;
}

.sponsorsGrid img {
  aspect-ratio: 9 / 5;
  object-fit: contain;
}

.sponsor:hover,
.sponsor:focus,
.institution:hover,
.institution:focus,
.advertiser:hover,
.advertiser:focus {
  border-color: rgb(var(--clr-black) / 0.25);
  outline: none;
}

.advertiser {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 700;
}

.siteFooter {
  display: flex;
  justify-content: center;
}

.siteFooter_link {
}

.siteFooter_img {
  max-width: 10em;
}

/* for embedded media */

.flexObject {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  overflow: clip;
  border-radius: 0.25rem;
}

.flexObject iframe,
.flexObject object,
.flexObject embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*exhibitors*/

.item--exhibitor {
  background: rgb(var(--clr-white) / 0.75);
  color: rgb(var(--clr-black));
}

.item--exhibitor h4 {
  color: rgb(var(--clr-primary));
}

.item--exhibitor + .item--exhibitor {
  margin-top: 0.75rem;
}

.item--exhibitor > * + * {
  margin-top: 0.75rem;
}

.exhibitor_graphic {
  background: rgb(var(--clr-white));
  border: solid 0.1rem rgb(var(--clr-white));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 150ms ease;
  height: 0;
  padding-top: calc(45% - 1.5rem);
  position: relative;
}

.exhibitor_graphic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
}

.item--exhibitor:hover,
.item--exhibitor:focus,
.item--exhibitor:focus-within {
  background: rgb(var(--clr-white));
}

.item--exhibitor:hover .exhibitor_graphic,
.item--exhibitor:focus .exhibitor_graphic {
  border-color: #dedede;
}

.item--featuredExhibitor {
  font-size: 1.15rem;
  background: rgb(var(--clr-white) / 0.9);
}

.item--featuredExhibitor h4 {
  font-size: 1.3rem;
}

@media (min-width: 800px) {
  .bookExhibitors {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    outline: solid 2px red;
  }

  .bookExhibitors--featured {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }

  .item--exhibitor + .item--exhibitor {
    margin-top: 0;
  }
}

.exhibitorDetail {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--pad-sm);
  background: rgb(var(--clr-white));
  color: rgb(var(--clr-black));
}

.exhibitorDetail > * + * {
  margin-top: 3rem;
}

.exhibitorDetail_header > * + * {
  margin-top: 0.75em;
}

.exhibitorDetail_title {
  font-size: 2rem;
  color: rgb(var(--clr-primary));
}

.exhibitorDetail_main > * + *,
.exhibitorDetail_sidebar > * + * {
  margin-top: 0.75rem;
}

.exhibitorDetail_graphic {
  background: rgb(var(--clr-white));
  border: solid 0.1rem rgb(var(--clr-black) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 150ms ease;
  height: 0;
  padding-top: calc(45% - 1.5rem);
  position: relative;
}

.exhibitorDetail_graphic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
}

.exhibitorDetail_actions > * + * {
  margin-top: 0.75rem;
}

.exhibitorNav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .exhibitorDetail_actions {
    display: flex;
    justify-content: space-between;
    gap: var(--pad-sm);
  }

  .exhibitorDetail_actions > * + * {
    margin-top: 0;
  }

  .exhibitorDetail_info {
    display: flex;
    gap: var(--pad-md);
  }

  .exhibitorDetail_main {
    flex: 3;
  }
  .exhibitorDetail_sidebar {
    flex: 2;
  }
}

@media (min-width: 1440px) {
  .exhibitorDetail {
    padding: var(--pad-md);
  }
}

.searchTools {
  padding: 0 0 1.5rem;
  border-bottom: solid 0.2rem rgb(var(--clr-white) / 0.25);
  display: flex;
  flex-wrap: wrap;
}

.searchTools > * {
  flex: 1;
  padding: 1rem 0.5rem 0;
}

.searchTools_item {
  flex-basis: 240px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

.searchTools_label {
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
  color: rgb(var(--clr-white) / 0.5);
  font-size: 0.75rem;
}

.searchTools input,
.searchTools select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0.5em;
  font-size: 1rem;
  color: rgb(var(--clr-black));
  border-radius: none;
}

.searchTools_keyword {
  display: flex;
  align-items: stretch;
}

.searchTools_keyword span {
  background: rgb(var(--clr-primary));
  padding: 0 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*advertising banners - shown below highlights*/

.advBanners {
  margin-top: var(--pad-xl);
}

.advBanners_item + .advBanners_item {
  margin-top: var(--pad-md);
}

.caption {
  font-size: 0.75em;
  margin-top: 1em;
  text-wrap: pretty;
}
