.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 70px;
  background: transparent;
  color: #fff;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: #fff;
  color: var(--color-accent);
  box-shadow: 0 1px 0 rgb(20 164 239 / 18%);
}

.site-header.is-scrolled .menu-toggle {
  color: var(--color-accent);
}

.site-header__inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

/* Navigation is temporarily unpublished; keep its WordPress setup intact. */
.site-header .primary-navigation,
.site-header .menu-toggle {
  display: none !important;
}

.site-branding {
  display: block;
  flex: 0 0 auto;
  color: inherit;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 900;
  line-height: 0.72;
  text-decoration: none;
  text-transform: none;
}

.site-branding span {
  display: block;
  white-space: nowrap;
}

.primary-navigation__list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.9rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation li {
  position: relative;
}

.primary-navigation a {
  display: block;
}

.primary-navigation .menu-item-has-children > a {
  display: inline-block;
}

.primary-navigation a {
  color: inherit;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 900;
  line-height: 0.8;
  text-decoration: none;
  text-transform: none;
  transition: opacity var(--transition);
}

.primary-navigation a:hover {
  opacity: 1;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.4rem;
}

.primary-navigation a:focus-visible {
  outline-offset: 6px;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.4rem;
}

.primary-navigation a[aria-current="page"] {
  padding-bottom: 0.38rem;
  border-bottom: 4px solid currentColor;
}

.primary-navigation .sub-menu {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  display: none;
  width: max-content;
  min-width: 280px;
  max-width: min(440px, calc(100vw - 2rem));
  padding: 0.75rem 0;
  margin: 0;
  border-radius: 18px;
  background: var(--color-accent);
  color: #fff;
  list-style: none;
  box-shadow: 0 14px 34px rgb(0 0 0 / 18%);
}

/* Invisible bridge so the submenu stays open while the pointer moves down. */
.primary-navigation__list > .menu-item-has-children > .sub-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 100%;
  height: 1.1rem;
}

.primary-navigation .sub-menu .sub-menu {
  position: static;
  width: 100%;
  min-width: 0;
  max-width: none;
  padding: 0 0 0.35rem 1.25rem;
  border-radius: 0;
  box-shadow: none;
}

.primary-navigation .sub-menu a {
  padding: 0.75rem 1.25rem;
  line-height: 1.1;
}

.primary-navigation .sub-menu a:hover,
.primary-navigation .sub-menu a:focus-visible {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22rem;
}

.primary-navigation .menu-item-has-children:hover > .sub-menu,
.primary-navigation .menu-item-has-children:focus-within > .sub-menu,
.primary-navigation .menu-item-has-children.is-submenu-open > .sub-menu {
  display: block;
}

.submenu-toggle {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0;
  margin-left: 0.35rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  place-items: center;
  vertical-align: middle;
}

.submenu-toggle:hover {
  background: rgb(255 255 255 / 16%);
  border-radius: 50%;
}

.submenu-toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--transition);
}

.menu-item-has-children.is-submenu-open > .submenu-toggle::before {
  transform: translateY(2px) rotate(225deg);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle > span[aria-hidden] {
  display: block;
  height: 3px;
  margin-block: 0.35rem;
  background: currentColor;
  transition: transform var(--transition);
}

.home-intro {
  --marquee-height: 46px;
  display: flex;
  height: 100vh;
  height: 100svh;
  min-height: 38rem;
  flex-direction: column;
  overflow: hidden;
  background: #111;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 0;
  flex: 1 1 calc(100% - var(--marquee-height));
  overflow: hidden;
  background: #111;
}

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 700ms, opacity 700ms ease;
}

.hero__slide.is-active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__cta {
  position: absolute;
  bottom: 2.3rem;
  left: 50%;
  display: inline-flex;
  min-width: 319px;
  min-height: 41px;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem 0.8rem;
  border-radius: 33.5px;
  background: #fff;
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero__cta:hover {
  box-shadow: 0 8px 26px rgb(0 0 0 / 22%);
  transform: translateX(-50%) translateY(-2px);
}

.marquee {
  position: relative;
  z-index: 2;
  height: var(--marquee-height);
  flex: 0 0 var(--marquee-height);
  overflow: hidden;
  padding-block: 11px 8px;
  background: var(--color-accent);
  color: #fff;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  animation: marquee 25s linear infinite;
}

.marquee__track span {
  white-space: nowrap;
}

@keyframes marquee {
  to { transform: translateX(-33.333%); }
}

.events-section {
  padding-block: 4.2rem 8rem;
  background: #fff;
}

.events-section > .container {
  --container-width: 90rem;
}

.page-template-page-contacto .site-header {
  background: #fff;
  color: var(--color-accent);
  box-shadow: none;
}

.page-template-page-about .site-header {
  background: #fff;
  color: var(--color-accent);
  box-shadow: none;
}

.page-template-page-about .site-header .menu-toggle {
  color: var(--color-accent);
}

.page-template-page-mi-universo .site-header {
  background: #fff;
  color: var(--color-accent);
  box-shadow: none;
}

.page-template-page-mi-universo .site-header .menu-toggle {
  color: var(--color-accent);
}

.universe-page {
  min-height: 100vh;
  min-height: 100svh;
  padding: 70px 1.75rem 6rem;
  background: var(--color-accent);
  color: #fff;
}

.universe-page__inner {
  width: min(100%, 42.5rem);
  margin-inline: auto;
  text-align: center;
}

.universe-page__portrait {
  width: 11rem;
  height: 11rem;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
}

.universe-page__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.universe-page h1 {
  margin: 1.5rem 0 0;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 30px;
  line-height: 0.78;
  text-transform: none;
}

.universe-page__subtitle {
  max-width: 38rem;
  margin: 1.15rem auto 0;
  font-family: var(--font-secondary);
  font-size: 18px;
  line-height: 1.25;
}

.universe-links {
  display: grid;
  gap: 15px;
  margin-top: 2.2rem;
}

.universe-link {
  display: grid;
  min-height: 80px;
  align-items: center;
  gap: 15px;
  padding: 8px;
  border: 2px solid transparent;
  border-radius: 22px;
  background: #fff;
  color: #000;
  grid-template-columns: 64px minmax(0, 1fr);
  text-align: left;
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}

.universe-link:hover {
  border-color: rgb(0 0 0 / 20%);
  transform: translateY(-2px);
}

.universe-link__media {
  display: grid;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 20px;
  place-items: center;
}

.universe-link__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.universe-link__label {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-page {
  background: #fff;
}

.about-page__inner {
  display: grid;
  width: 100%;
  max-width: 120rem;
  min-height: 100vh;
  margin-inline: auto;
  padding: 70px 0 0;
  gap: 0;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
}

.about-page__portrait {
  position: sticky;
  top: 70px;
  width: 100%;
  height: calc(100vh - 70px);
  height: calc(100svh - 70px);
  align-self: start;
  overflow: hidden;
}

.about-page__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.about-page__content {
  width: min(100%, 680px);
  padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 4vw, 5rem) 6rem;
  margin-inline: auto;
}

.about-page__content h1,
.about-page__cta h2 {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: clamp(2.125rem, 2.4vw, 2.5rem);
  font-weight: 900;
  line-height: 0.85;
}

.about-page__biography {
  margin-top: 1rem;
  color: #000;
  font-family: var(--font-secondary);
  font-size: 18px;
  line-height: 1.5;
}

.about-page__biography p {
  margin: 0 0 1.65rem;
}

.about-page__biography p:last-child {
  margin-bottom: 0;
}

.about-page__cta {
  margin-top: 4.4rem;
}

.about-page__cta > a {
  display: inline-flex;
  width: min(382px, 100%);
  min-height: 41px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.55rem 1.35rem 0.42rem;
  margin-top: 1.8rem;
  border: 2px solid var(--color-accent);
  border-radius: 33.5px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 0.75;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--transition), color var(--transition);
}

.about-page__cta > a:hover {
  background: #fff;
  color: var(--color-accent);
}

.about-page__cta > a img {
  width: 9px;
  height: 12px;
  flex: 0 0 9px;
  transition: filter var(--transition);
}

.about-page__cta > a:hover img {
  filter: brightness(0) saturate(100%) invert(55%) sepia(96%) saturate(1875%) hue-rotate(168deg) brightness(96%) contrast(95%);
}

.contact-page {
  background: #fff;
}

.contact-page__inner {
  display: flex;
  min-height: 831px;
  align-items: center;
  flex-direction: column;
  padding-top: 13.8rem;
  padding-bottom: 5.5rem;
  text-align: center;
}

.contact-page__title {
  width: min(476px, 80vw);
  margin: 0 0 6.1rem;
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: clamp(2.375rem, 5.4vw, 3.125rem);
  line-height: 0.72;
}

.contact-page__details {
  display: grid;
  justify-items: center;
  gap: 4.15rem;
}

.contact-item h2 {
  width: max-content;
  max-width: 75vw;
  margin: 0 auto 0.8rem;
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: 1.25rem;
  line-height: 0.75;
}

.contact-item > a {
  display: inline-flex;
  color: #000;
  font-family: var(--font-secondary);
  font-size: 18px;
  line-height: 1.3;
  text-decoration: none;
}

.contact-item > a:hover {
  text-decoration: underline;
}

.contact-item--social {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contact-item--social > a {
  align-items: center;
  gap: 0.65rem;
}

.contact-item--social > a + a {
  margin-top: 0.3rem;
}

.contact-item--social > a img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  filter: brightness(0) saturate(100%) invert(55%) sepia(96%) saturate(1875%) hue-rotate(168deg) brightness(96%) contrast(95%);
  object-fit: contain;
}

.events-section__title {
  width: auto;
  margin: 0 auto 3.5rem;
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: clamp(3.25rem, 9vw, 3.4rem);
  line-height: 0.72;
  text-align: center;
}

.event-filter {
  display: grid;
  align-items: center;
  gap: 0.65rem 1rem;
  min-height: 58px;
  padding-bottom: 0.8rem;
  grid-template-columns: auto minmax(13rem, 18rem) 1fr;
}

.event-filter label {
  display: block;
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.event-filter__select {
  position: relative;
}

.event-filter__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.event-filter select {
  width: 100%;
  min-height: 40px;
  padding: 0.45rem 2.5rem 0.35rem 1rem;
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: #fff !important;
  background-image: none !important;
  color: var(--color-accent);
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 15px;
}

.event-filter select:focus,
.event-filter select:focus-visible {
  outline: 0;
  box-shadow: none;
}

.event-filter__chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.event-filter__chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 1;
}

.event-filter__chip::after {
  content: "×";
  font-size: 18px;
  line-height: 0.8;
}

.event-list {
  border-top: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent);
}

.event-card {
  display: grid;
  min-height: 118px;
  align-items: center;
  gap: 2rem;
  padding: 1.15rem 0.85rem;
  border-top: 3px solid var(--color-accent);
  grid-template-columns: minmax(8rem, 0.75fr) minmax(12rem, 1fr) minmax(14rem, 1.8fr) auto;
}

.event-card:first-child,
.event-card.is-first-visible {
  border-top: 0;
}

.event-card[hidden] {
  display: none;
}

.event-card__date {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
}

.event-card__date strong {
  font-weight: 700;
}

.event-card__date span {
  margin-top: 0.15rem;
}

.event-card__place {
  display: contents;
}

.event-card__place h3,
.event-card__place p {
  margin: 0;
}

.event-card__place h3 {
  font-family: var(--font-secondary);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.event-card__place p {
  font-size: 16px;
}

.event-card__action {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem 0.65rem;
  border: 2px solid var(--color-accent);
  border-radius: 33.5px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}

.button:hover {
  background: #fff;
  color: var(--color-accent);
}

.button__label--mobile {
  display: none;
}

.event-card--special .button {
  border-color: var(--color-special);
  background: var(--color-special);
}

.event-card--special .button:hover {
  background: #fff;
  color: var(--color-special);
}

.button--disabled,
.button--disabled:hover {
  border-color: #f4f4f4;
  background: #f4f4f4;
  color: #171717;
}

.empty-state {
  text-align: center;
}

.newsletter {
  min-height: 560px;
  display: grid;
  padding-block: clamp(4rem, 7vw, 7rem);
  place-items: center;
  background: var(--color-accent);
  color: #fff;
}

.newsletter__inner {
  width: min(calc(100% - 2rem), 649px);
}

.newsletter h2 {
  margin-bottom: 1rem;
  font-family: var(--font-primary);
  font-size: clamp(3.25rem, 9vw, 3.4rem);
  line-height: 1;
  text-align: center;
}

.newsletter p {
  font-size: 18px;
}

.newsletter__intro {
  margin-bottom: 2rem;
  text-align: center;
}

.newsletter__pending {
  width: max-content;
  max-width: 100%;
  padding: 0.85rem 1.4rem;
  margin: 2rem auto 0;
  border: 2px solid #fff;
  border-radius: 999px;
  font-family: var(--font-primary);
  font-size: 18px !important;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.newsletter .brevo-form {
  display: none !important;
}

.newsletter .brevo-form,
.newsletter #sib-form-container,
.newsletter #sib-container {
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.newsletter .brevo-form__row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newsletter .brevo-form__field {
  padding: 0;
  margin-bottom: 1rem;
}

.newsletter .entry__label {
  display: block;
  margin-bottom: 0.45rem;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.newsletter .entry__field {
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #fff;
}

.newsletter .entry__field .input {
  width: 100%;
  min-height: 36px;
  padding: 0.38rem 1rem;
  border: 0;
  background: #fff;
  color: #111;
  font-family: var(--font-secondary);
  font-size: 15px;
}

.newsletter .entry__field .input::placeholder {
  color: #666;
  font-family: var(--font-secondary);
}

.newsletter .entry__error {
  margin-top: 0.4rem;
  border-radius: 0.65rem;
  font-family: var(--font-secondary);
  font-size: 13px;
}

.newsletter .brevo-form__legal,
.newsletter .brevo-form__consent {
  width: 100%;
  max-width: none;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 11px !important;
  line-height: 1.45;
  text-align: left;
}

.newsletter .brevo-form__legal p,
.newsletter .brevo-form__consent p {
  width: auto;
  min-width: 0;
  max-width: none;
  margin: 0;
  font-size: 11px !important;
  line-height: 1.45 !important;
}

.newsletter .brevo-form__legal {
  display: flex !important;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.newsletter .brevo-form__legal p {
  flex: 1 1 auto;
}

.newsletter .brevo-form__shield {
  display: block !important;
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex: 0 0 44px;
  fill: #fff;
}

.newsletter .brevo-form__consent {
  margin-top: 1rem;
}

.newsletter .brevo-form__consent label {
  display: grid;
  width: 100%;
  align-items: start;
  gap: 0.65rem;
  grid-template-columns: auto 1fr;
}

.newsletter .brevo-form__consent label > span:last-child {
  min-width: 0;
  font-size: 11px !important;
  line-height: 1.45 !important;
}

.newsletter .brevo-form__legal a,
.newsletter .brevo-form__consent a {
  color: #e32424;
  font-weight: 700;
  text-decoration: underline;
}

.newsletter .brevo-form__submit {
  padding: 0;
  margin-top: 1.5rem;
  text-align: center;
}

.newsletter .sib-form-block__button {
  min-width: 220px;
  min-height: 46px;
  padding: 0.8rem 1.5rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.newsletter .sib-form-block__button:hover {
  background: #f5f5f5;
}

.newsletter .brevo-form__message {
  max-width: none;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  font-family: var(--font-secondary);
  font-size: 14px;
  text-align: left;
}

.newsletter .brevo-form__message--error {
  background: #ffeded;
  color: #661d1d;
}

.newsletter .brevo-form__message--success {
  background: #e7faf0;
  color: #085229;
}

.site-footer {
  display: flex;
  min-height: 320px;
  padding: 2.75rem 0 0.75rem;
  border-top: 3px solid #fff;
  background: var(--color-accent);
  color: #fff;
  flex-direction: column;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.site-footer__brand > a {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 900;
  line-height: 0.9;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.site-footer__social a,
.site-footer__social img {
  display: block;
}

.site-footer__social img,
.site-footer__youtube {
  width: 18px;
  height: 18px;
}

.site-footer__youtube {
  position: relative;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.site-footer__youtube > span {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  transform: translate(-50%, -50%);
}

.site-footer__bottom {
  display: grid;
  align-items: end;
  gap: clamp(2rem, 4vw, 5rem);
  margin-top: 3.25rem;
  padding-top: 0.75rem;
  grid-template-columns: minmax(12rem, 1fr) auto auto auto;
}

.site-footer__bottom nav {
  justify-self: end;
}

.home-video {
  padding: 0 clamp(1rem, 3vw, 2.5rem) 8rem;
  background: #fff;
}

.home-video__inner {
  width: min(100%, 90rem);
  margin-inline: auto;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.home-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer__bottom ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__bottom a,
.site-footer__legal {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__bottom a:hover {
  text-decoration: underline;
}

.site-footer__legal {
  margin: 0;
  text-transform: none;
}

.site-footer__legal a {
  text-transform: none;
}

.page-template-page-actor .site-header {
  display: none;
}

.actor-page {
  width: 100%;
  max-width: 120rem;
  margin-inline: auto;
  overflow: hidden;
  background: #fff;
  font-family: var(--font-secondary);
}

.actor-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #111;
}

.actor-video,
.actor-video-card {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.actor-navigation {
  position: absolute;
  z-index: 3;
  top: 0.9rem;
  right: clamp(1.9rem, 3.2vw, 3rem);
  left: clamp(1.9rem, 3.2vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

.actor-navigation__brand {
  font-family: var(--font-secondary);
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.actor-navigation a,
.actor-footer a {
  color: inherit;
  text-decoration: none;
}

.actor-navigation a:hover,
.actor-footer a:hover {
  text-decoration: underline;
}

.actor-navigation > div {
  display: flex;
  gap: clamp(1.5rem, 3.1vw, 2.5rem);
}

.actor-navigation a[aria-current="page"] {
  text-decoration: underline;
}

.actor-video-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 2.75rem) 1rem;
  padding: clamp(1rem, 2vw, 2.3rem) clamp(0.75rem, 1.5vw, 1.9rem) 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.actor-video-card {
  aspect-ratio: 602 / 336;
  overflow: hidden;
  background: #111;
  background-position: center;
  background-size: cover;
}

.actor-video-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.actor-gallery {
  display: grid;
  align-items: start;
  gap: clamp(0.75rem, 1.4vw, 1.75rem);
  padding: clamp(1.5rem, 3vw, 3.5rem) clamp(0.75rem, 1.5vw, 1.9rem) clamp(3rem, 7vw, 8rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.actor-gallery__column {
  display: grid;
  gap: clamp(0.75rem, 1.4vw, 1.75rem);
}

.actor-gallery__column--2 {
  padding-top: 2.25rem;
}

.actor-gallery__column--3 {
  padding-top: 0.25rem;
}

.actor-gallery__button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.actor-gallery__image {
  width: 100%;
  height: auto;
  transition: transform 500ms ease, filter 500ms ease;
}

.actor-gallery__button:hover .actor-gallery__image,
.actor-gallery__button:focus-visible .actor-gallery__image {
  z-index: 1;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.actor-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding: clamp(1rem, 4vw, 4rem);
  border: 0;
  background: rgb(0 0 0 / 92%);
  color: #fff;
}

.actor-lightbox[open] {
  display: grid;
  place-items: center;
}

.actor-lightbox::backdrop {
  background: rgb(0 0 0 / 82%);
}

.actor-lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 2rem);
  object-fit: contain;
}

.actor-lightbox__close {
  position: fixed;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgb(0 0 0 / 45%);
  color: #fff;
  cursor: pointer;
  font: 300 32px/1 var(--font-secondary);
  place-items: center;
}

.actor-footer {
  display: grid;
  width: 100%;
  max-width: 120rem;
  min-height: 410px;
  align-items: start;
  gap: 3rem clamp(2rem, 8vw, 10rem);
  padding: clamp(3rem, 6vw, 6rem) clamp(1.9rem, 3.2vw, 3rem) 1.5rem;
  border-top: 2px solid #111;
  background: #fff;
  color: #111;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr auto;
  margin-inline: auto;
}

.actor-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.actor-footer h2,
.actor-footer p {
  margin: 0;
}

.actor-footer h2 {
  margin-bottom: 1.5rem;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.actor-footer__social a {
  display: grid;
  align-items: center;
  gap: 0.65rem;
  grid-template-columns: 1.5rem 1fr;
}

.actor-footer__social img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0);
  object-fit: contain;
}

.actor-footer__youtube {
  display: grid;
  width: 1.25rem;
  height: 0.9rem;
  border-radius: 0.25rem;
  background: #111;
  color: #fff;
  font-size: 0.55rem;
  place-items: center;
}

.actor-footer__copyright {
  align-self: end;
  grid-column: 1 / -1;
  grid-row: 2;
}

.entry-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-surface);
  grid-template-columns: minmax(12rem, 0.65fr) 1fr;
}

.entry-card__media img { width: 100%; height: 100%; object-fit: cover; }
.entry-card__body { padding: var(--space-lg); }
.entry-card__title a { text-decoration: none; }
.entry__header, .entry__media { margin-bottom: var(--space-lg); }
.error-404 { min-height: 70vh; padding-top: 9rem; }
