@charset "UTF-8";
/*
Theme Name: wp-lawfest
Author: Automattic Theme Team
Description: A starter theme called wp-lawfest.
Version: 1.0.0
Text Domain: wp-lawfest
*/
/*===========*/
/*   FONTS   */
/*===========*/
/*   DM Serif Display   */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
/*   Open Sans   */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/*   Inter   */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*   Special Elite   */
@import url("https://fonts.googleapis.com/css2?family=Special+Elite&display=swap");
/*===============*/
/*   VARIABLES   */
/*===============*/
:root {
  --custom-first-font-family: 'DM Serif Display';
  --custom-second-font-family: 'Open Sans';
  --custom-third-font-family: 'Inter';
  --custom-fourth-font-family: 'Special Elite';
  --custom-fifth-font-family: 'CS Adley Stamp';
  --primary-color: #fee960;
  --secondary-color: #fc2b6e;
  --white-color: #ffffff;
  --black-color: #000000;
  --transition-duration: 400ms;
  --transition-timing: linear;
}
:root .js-open-cart {
  display: none;
}

@font-face {
  font-family: "CS Adley Stamp";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/CSAdley-Stamp-Regular.woff2") format("woff2"), url("assets/CSAdley-Stamp-Regular.woff") format("woff"), url("assets/CSAdley-Stamp-Regular.ttf") format("truetype"), url("assets/CSAdley-Stamp-Regular.otf") format("opentype");
}
@font-face {
  font-family: "CS Adley Stamp";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/CSAdley-Stamp-Italic.woff2") format("woff2"), url("assets/CSAdley-Stamp-Italic.woff") format("woff"), url("assets/CSAdley Stamp Italic.ttf") format("truetype"), url("assets/CSAdley Stamp Italic.otf") format("opentype");
}
.lf-loading-spinner {
  --loader-size: 44px;
  --loader-stroke: 4px;
  display: inline-block;
  flex: 0 0 auto;
  width: var(--loader-size);
  height: var(--loader-size);
  border: var(--loader-stroke) solid rgba(255, 255, 255, 0.25);
  border-top-color: #fee960;
  border-radius: 50%;
  animation: lf-loading-spin 0.8s linear infinite;
}

.lf-loading-spinner--small {
  --loader-size: 18px;
  --loader-stroke: 2px;
}

.lf-loading-spinner--medium {
  --loader-size: 44px;
  --loader-stroke: 4px;
}

.lf-loading-spinner--large {
  --loader-size: 64px;
  --loader-stroke: 5px;
}

.lf-loading-region {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 240px;
}

button .lf-loading-spinner {
  vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
  .lf-loading-spinner {
    animation-duration: 1.6s;
  }
}
@keyframes lf-loading-spin {
  to {
    transform: rotate(360deg);
  }
}
.lf-btn {
  --btn-text-color: #ffffff;
  --btn-background-color: transparent;
  --btn-border-color: #ffffff;
  --btn-hover-text-color: #000000;
  --btn-hover-background-color: #ffffff;
  --btn-hover-border-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--btn-background-color);
  max-width: fit-content;
  min-width: 200px;
  width: 100%;
  padding: 16px 32px;
  border: 1px solid var(--btn-border-color);
  transition: all 200ms ease-in-out 0ms;
  cursor: pointer;
}
@media only screen and (max-width: 1080px) {
  .lf-btn {
    min-width: 160px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-btn {
    max-width: 100%;
    padding: 11px 25px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-btn {
    max-width: 100%;
  }
}
.lf-btn .lf-btn-label {
  color: var(--btn-text-color);
  font-family: var(--custom-first-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.25em;
  white-space: nowrap;
  user-select: none;
}
@media only screen and (max-width: 1080px) {
  .lf-btn .lf-btn-label {
    font-size: 18px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-btn .lf-btn-label {
    font-size: 12px;
  }
}
.lf-btn:hover {
  background-color: var(--btn-hover-background-color);
  border-color: var(--btn-hover-border-color);
}
.lf-btn:hover .lf-btn-label {
  color: var(--btn-hover-text-color);
}

/*===================*/
/*   MEDIA QUERIES   */
/*===================*/
/* Variables for easy adjustments */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 9992;
}
.cart-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.custom-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: 0.25s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  font-family: var(--custom-third-font-family);
}
.custom-cart-drawer.is-active {
  transform: translateX(0);
}
.custom-cart-drawer__header, .custom-cart-drawer__footer {
  padding: 16px;
  border-bottom: 1px solid #eee;
}
.custom-cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-cart-drawer__header h3 {
  margin: 0;
}
.custom-cart-drawer__body {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.custom-cart-drawer__footer {
  border-top: 1px solid #eee;
  border-bottom: 0;
  margin-top: auto;
}
.custom-cart-drawer__close {
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
.custom-cart-drawer__checkout {
  display: block;
  text-align: center;
  margin-top: 12px;
  background: #111;
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s;
}
.custom-cart-drawer__checkout:hover {
  opacity: 0.85;
}

.cart-item {
  display: flex;
  flex-direction: column;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  padding: 1em;
}
.cart-item__image {
  width: 72px;
  height: 72px;
  max-width: 75px;
  max-height: 75px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.cart-item__qty button {
  cursor: pointer;
  background: #f4f4f4;
  border: 1px solid #ddd;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.cart-item__qty button:hover {
  background: #eee;
}
.cart-item__remove {
  cursor: pointer;
  background: none;
  border: none;
  color: #ff4d4d;
  font-size: 12px;
  text-align: left;
  padding: 0;
  margin-top: 8px;
  text-decoration: underline;
}

.cart-details {
  display: flex;
  gap: 12px;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-options {
  margin-top: 12px;
}

.inner-container-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.cart-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
}

body.cart-open {
  overflow: hidden;
}

.checkout-page {
  background-color: #f3f3f3;
  padding: 40px 0;
  min-height: 100vh;
  font-family: var(--custom-third-font-family);
  color: #0f0f0f;
  margin: 0 auto;
  padding: 15px;
}
.checkout-page [v-cloak] {
  display: none !important;
}
.checkout-page .checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.checkout-page .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.checkout-page .section-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #0f0f0f;
}
.checkout-page .edit-link {
  font-size: 13px;
  color: #111;
  text-decoration: underline;
  cursor: pointer;
}
.checkout-page .checkout-section {
  margin-bottom: 40px;
  transition: opacity 0.3s;
}
.checkout-page .checkout-section.section-faded {
  opacity: 0.6;
}
.checkout-page .checkout-section.section-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.checkout-page .summary-preview {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  font-size: 14px;
  border: 1px solid #eee;
}
.checkout-page .form-group {
  margin-bottom: 12px;
}
.checkout-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkout-page input,
.checkout-page select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.2s;
}
.checkout-page input:focus,
.checkout-page select:focus {
  border-color: #111111;
  outline: none;
}
.checkout-page .placeholder-box {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  color: #666;
  font-size: 14px;
  border: 1px solid #e6e6e6;
}
.checkout-page .shipping-options {
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  overflow: hidden;
}
.checkout-page .shipping-option {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 14px;
  align-items: center;
}
.checkout-page .shipping-option:last-child {
  border-bottom: none;
}
.checkout-page .shipping-option.active {
  background: #f0f7ff;
  border-left: 3px solid #111111;
}
.checkout-page .shipping-option input[type=radio] {
  width: auto;
  margin-right: 10px;
}
.checkout-page .shipping-option .option-name {
  flex: 1;
}
.checkout-page .shipping-option .option-price {
  font-weight: 600;
}
.checkout-page .payment-box {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  color: #666;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.checkout-page .payment-box .payment-icon {
  color: #666;
}
.checkout-page .payment-subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}
.checkout-page .btn-complete {
  width: 100%;
  padding: 18px;
  background: #212121;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.2s;
}
.checkout-page .btn-complete:hover:not(:disabled) {
  background: #3c3c3c;
}
.checkout-page .checkout-sidebar {
  background: #f4f2f2;
  border-left: 1px solid #e6e6e6;
  margin-left: -30px;
  padding-left: 1.2em;
  min-height: 100%;
}
.checkout-page .summary-sticky {
  position: sticky;
  top: 40px;
}
.checkout-page .summary-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid #dbdbdb;
  padding: 12px;
  border-radius: 10px;
}
.checkout-page .summary-item .image-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
}
.checkout-page .summary-item .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.checkout-page .summary-item .image-wrapper .item-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #666;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.checkout-page .summary-item .item-details {
  display: flex;
  flex-direction: column;
}
.checkout-page .summary-item .item-details .item-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.checkout-page .summary-item .item-details .checkout-item-variant {
  font-size: 12px;
  color: #666;
  margin: 2px 0 0;
}
.checkout-page .summary-item .price-breakdown {
  font-size: 12px;
  color: #666;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.checkout-page .summary-item .price-breakdown span {
  margin-top: 2px;
}
.checkout-page .summary-totals {
  border-top: 1px solid #e6e6e6;
  padding-top: 20px;
  margin-top: 20px;
}
.checkout-page .summary-totals .total-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}
.checkout-page .summary-totals .total-row.grand-total {
  font-size: 18px;
  margin-top: 20px;
  border-top: 1px solid #e6e6e6;
  padding-top: 20px;
}
.checkout-page .summary-totals .total-row.grand-total strong {
  font-weight: 700;
}
.checkout-page .summary-totals .total-row.grand-total .total-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-page .summary-totals .total-row.grand-total .total-label small {
  color: #666;
  font-size: 12px;
}
.checkout-page .checkout-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-size: 14px;
}
.checkout-page .checkout-message.error {
  background: #fff5f5;
  color: #c53030;
}
.checkout-page .checkout-message.success {
  background: #f0fff4;
  color: #2f855a;
}
.checkout-page .payment-methods {
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  overflow: hidden;
}
.checkout-page .payment-methods .payment-option-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}
.checkout-page .payment-methods .payment-option-label input[type=radio] {
  width: 13px;
  margin: 0;
}
.checkout-page .payment-method {
  display: block;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.checkout-page .payment-method:last-child {
  border-bottom: none;
}
.checkout-page .payment-method.active {
  background: #fcfcfc;
}
.checkout-page .payment-method .method-content {
  padding: 20px;
  background: #fafafa;
  border-top: 1px solid #eee;
}
.checkout-page .payment-method .method-content .payment-card-box {
  text-align: center;
  color: #666;
  font-size: 13px;
}
.checkout-page .payment-method .method-content .payment-card-box svg {
  margin-bottom: 10px;
  opacity: 0.5;
}
.checkout-page .payment-method .method-content .payment-card-box p {
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.5;
}
.checkout-page .loading-inline {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}
.checkout-page .error-box {
  background: #fff5f5;
  color: #c53030;
  padding: 15px;
  border-radius: 5px;
  font-size: 14px;
  border: 1px solid #fed7d7;
}

@media (max-width: 900px) {
  .checkout-page .checkout-layout {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .checkout-page .checkout-sidebar {
    order: -1;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
  }
}
.checkout-complete-page {
  background-color: #f8fafc;
  padding: 120px 20px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", -apple-system, sans-serif;
}
.checkout-complete-page .complete-card {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.checkout-complete-page .success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}
.checkout-complete-page .success-icon svg {
  width: 40px;
  height: 40px;
}
.checkout-complete-page h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.checkout-complete-page .subtitle {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 32px;
}
.checkout-complete-page .checkout-complete-content {
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 40px;
  border: 1px solid #e2e8f0;
}
.checkout-complete-page .checkout-complete-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1e293b;
  margin: 0;
}
.checkout-complete-page .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.checkout-complete-page .actions .btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
}
.checkout-complete-page .actions .btn.btn-primary {
  background-color: #2563eb;
  color: white;
}
.checkout-complete-page .actions .btn.btn-primary:hover {
  transform: translateY(-2px);
}
.checkout-complete-page .actions .btn.btn-outline {
  background-color: transparent;
  color: #1e293b;
  border: 2px solid #e2e8f0;
}
.checkout-complete-page .actions .btn.btn-outline:hover {
  border-color: #2563eb;
  color: #2563eb;
}

@media (max-width: 480px) {
  .checkout-complete-page {
    padding: 60px 20px;
  }
  .checkout-complete-page .complete-card {
    padding: 40px 24px;
  }
  .checkout-complete-page h1 {
    font-size: 1.8rem;
  }
  .checkout-complete-page .actions {
    flex-direction: column;
  }
  .checkout-complete-page .actions .btn {
    width: 100%;
  }
}
.lf-speaker-item {
  display: block;
  background-color: #24344e;
  box-shadow: 6px 10px 14px 0 rgba(0, 0, 0, 0.15);
  max-width: 296px;
  width: 100%;
  margin-left: 40px;
}
.lf-speaker-item .lf-speaker-profile-img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 280px;
}
.lf-speaker-item .lf-speaker-details {
  background-color: transparent;
  padding: 24px 16px;
}
.lf-speaker-item .lf-speaker-details .lf-speaker-full-name {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.25em;
  margin-bottom: 8px;
}
.lf-speaker-item .lf-speaker-details .lf-speaker-title {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.25em;
  height: 2.5em;
  overflow: hidden;
}
.lf-speaker-item .lf-btn--view-speaker-profile {
  display: block;
  background-color: var(--secondary-color);
  box-shadow: 6px 10px 14px 0 rgba(0, 0, 0, 0.25);
  visibility: hidden;
  width: 100%;
  padding: 9px 9px 12px;
}
.lf-speaker-item .lf-btn--view-speaker-profile .lf-btn-label {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25em;
  letter-spacing: -0.26px;
  white-space: nowrap;
}
.lf-speaker-item:hover .lf-speaker-details {
  background-color: #fbe85f;
}
.lf-speaker-item:hover .lf-speaker-details .lf-speaker-full-name {
  color: var(--black-color);
}
.lf-speaker-item:hover .lf-speaker-details .lf-speaker-title {
  color: var(--black-color);
}
.lf-speaker-item:hover .lf-btn--view-speaker-profile {
  visibility: visible;
}

.lf-event-item {
  max-width: 407px;
  width: 100%;
  padding: 29px 31px 25px;
  border: 5px solid #404f64;
  pointer-events: none;
  cursor: default;
}
.lf-event-item .lf-inner-row-01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.lf-event-item .lf-inner-row-01 .lf-event-time-duration {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.25em;
}
.lf-event-item .lf-inner-row-01 .lf-event-availability {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25em;
  letter-spacing: -0.18px;
  background-color: #fb2d6d;
  padding: 16px;
  border-radius: 38px;
}
.lf-event-item .lf-event-title {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.25em;
  height: 6.25em;
  overflow: hidden;
  margin-bottom: 30px;
}
.lf-event-item .lf-inner-row-02 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 21px;
}
.lf-event-item .lf-inner-row-02 .lf-event-location {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.3em;
  height: 3.9em;
  overflow: hidden;
}
.lf-event-item .lf-btn--view-details {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #354053;
  padding: 16px;
}
.lf-event-item .lf-btn--view-details .lf-btn-label {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.25em;
}
.lf-event-item .lf-btn--view-details:hover {
  background-color: #434b59;
}

.lf-section--custom-footer {
  background-image: unset !important;
}
.lf-section--custom-footer .lf-footer {
  position: relative;
  background-color: #061935;
  max-width: 1800px;
  margin: 0 auto;
}
.lf-section--custom-footer .lf-footer .lf-container-top {
  padding: 50px 25px 10px;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(54, 94, 129, 0.8);
}
.lf-section--custom-footer .lf-footer .lf-container-top > h2 {
  max-width: 1434px;
  margin: 0 auto 64px;
  color: #fff;
  text-align: center;
  font-family: "CS Adley Stamp", var(--custom-first-font-family);
  font-size: clamp(35px, 3.6vw, 64px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}
.lf-section--custom-footer .lf-footer .lf-container-top .lf-partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 34px);
  width: 100%;
  min-height: 126px;
}
.lf-section--custom-footer .lf-footer .lf-container-top .lf-partner-logos .lf-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.lf-section--custom-footer .lf-footer .lf-container-top .lf-partner-logos .lf-img--kilkenny {
  width: 358px;
  height: 90px;
  flex-shrink: 0;
  aspect-ratio: 179/45;
}
.lf-section--custom-footer .lf-footer .lf-container-top .lf-partner-logos .lf-img--violet {
  width: 179px;
  height: 126px;
  align-self: stretch;
  aspect-ratio: 179/126;
}
@media only screen and (max-width: 749px) {
  .lf-section--custom-footer .lf-footer {
    padding: 18px 18px 24px;
  }
  .lf-section--custom-footer .lf-footer .lf-container-top > h2 {
    max-width: 540px;
    font-size: clamp(22px, 7vw, 34px);
  }
  .lf-section--custom-footer .lf-footer .lf-container-top .lf-partner-logos .lf-img--kilkenny {
    width: min(48vw, 358px);
    height: min(12.067vw, 90px);
  }
  .lf-section--custom-footer .lf-footer .lf-container-top .lf-partner-logos .lf-img--violet {
    width: min(24vw, 179px);
    height: min(16.894vw, 126px);
  }
}
@media only screen and (max-width: 480px) {
  .lf-section--custom-footer .lf-footer .lf-container-top .lf-partner-logos {
    flex-direction: column;
    gap: 12px;
  }
  .lf-section--custom-footer .lf-footer .lf-container-top .lf-partner-logos .lf-img--kilkenny {
    width: min(82vw, 358px);
    height: min(20.615vw, 90px);
  }
  .lf-section--custom-footer .lf-footer .lf-container-top .lf-partner-logos .lf-img--violet {
    width: min(45vw, 179px);
    height: min(31.676vw, 126px);
  }
}
.lf-section--custom-footer .lf-footer .lf-container-bot {
  max-width: 1820px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 25px 50px;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  justify-content: end;
  align-items: flex-end;
  gap: 32px;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col {
  width: calc(50% - 16px);
  padding-bottom: 50px;
}
@media only screen and (max-width: 749px) {
  .lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col {
    width: 100%;
  }
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) > h2 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 66px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
}
@media only screen and (max-width: 749px) {
  .lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) > h2 {
    font-size: 56px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) > h2 {
    font-size: 46px;
  }
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) > p {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5em;
  max-width: 235px;
  width: 100%;
  margin-bottom: 24px;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-message {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5em;
  width: 100%;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form {
  max-width: 260px;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form {
    max-width: 100%;
  }
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-field .lf-email-label {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  display: block;
  margin-bottom: 12px;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-field .lf-email-input {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25em;
  background-color: gray;
  width: 100%;
  height: 40px;
  padding: 8px;
  margin-bottom: 12px;
  outline: unset;
  border: unset;
  border-radius: unset;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-field .lf-email-input::placeholder {
  color: var(--black-color);
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-field .lf-btn--subscribe {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  width: 100%;
  padding: 8px;
  border: 1px solid #239bb3;
  cursor: pointer;
  min-height: 52px;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-field .lf-btn--subscribe .lf-btn-label {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 20px;
  font-weight: 500;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-field .lf-btn--subscribe .lf-btn-loader {
  display: none;
  width: 30px;
  height: 30px;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-field .lf-btn--subscribe.--is-loading .lf-btn-label {
  display: none;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-field .lf-btn--subscribe.--is-loading .lf-btn-loader {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-field .lf-btn--subscribe:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-field .lf-btn--subscribe:hover {
  background-color: #239bb3;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-form-error {
  color: #c54a4a;
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  margin-top: 12px;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-form-success {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-form-success .lf-success-icon {
  color: #8fc28f;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(1) .lf-newsletter-form .lf-newsletter-form-success .lf-success-message {
  color: #8fc28f;
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  margin: 0;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(2) .lf-inner-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 100px 40px;
}
@media only screen and (max-width: 480px) {
  .lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(2) .lf-inner-row {
    gap: 50px 0;
  }
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(2) .lf-inner-row .lf-inner-col {
  width: calc(50% - 20px);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
@media only screen and (max-width: 480px) {
  .lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(2) .lf-inner-row .lf-inner-col {
    width: 100%;
  }
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(2) .lf-inner-row .lf-inner-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(2) .lf-inner-row .lf-inner-col ul li {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25em;
  margin-bottom: 4px;
}
.lf-section--custom-footer .lf-footer .lf-container-bot .lf-row .lf-col:nth-child(2) .lf-inner-row .lf-inner-col ul li > a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.lf-section--custom-header {
  position: sticky;
  z-index: 9991;
  top: 0;
  background-image: unset !important;
}
.lf-section--custom-header .lf-header {
  background-color: transparent;
  overflow: visible;
}
.lf-section--custom-header .lf-header .lf-container {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
}
.lf-section--custom-header .lf-header .lf-header-kicker {
  color: rgba(255, 255, 255, 0.32);
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
}
@media only screen and (max-width: 749px) {
  .lf-section--custom-header .lf-header .lf-header-kicker {
    font-size: 12px;
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 92px;
  padding: 4px 5px;
  background-color: var(--primary-color);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}
@media only screen and (max-width: 1080px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    min-height: 80px;
    padding: 8px 26px;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.9);
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-site-link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
}
@media only screen and (max-width: 749px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-site-link {
    min-width: 100px;
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-site-link .lf-site-logo {
  display: block;
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-site-link--mobile {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-site-link--mobile {
    display: flex;
    justify-content: flex-start;
    min-width: 0;
  }
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-site-link--mobile .lf-site-logo {
    width: 178px;
    max-width: min(178px, 65vw);
    height: auto;
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  width: 100%;
}
@media only screen and (max-width: 1080px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    min-height: calc(100vh - 80px);
    margin: 0;
    padding: 6px 24px 24px;
    background-color: var(--primary-color);
    border: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 200ms var(--transition-timing) 0s, transform 200ms var(--transition-timing) 0s, visibility 200ms var(--transition-timing) 0s;
  }
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list > .lf-site-link {
    display: none;
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list .left-menu-layout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 0.641px solid #051630;
  min-height: 28px;
  padding: 3px 18px;
  gap: clamp(18px, 3vw, 56px);
}
@media only screen and (max-width: 1080px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list .left-menu-layout {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list .left-menu-layout li {
  list-style-type: none;
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list .right-menu-layout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 0.641px solid #051630;
  min-height: 28px;
  padding: 3px 18px;
  gap: clamp(18px, 3vw, 56px);
}
@media only screen and (max-width: 1080px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list .right-menu-layout {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list .right-menu-layout li {
  list-style-type: none;
}
@media only screen and (max-width: 1080px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list.--show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list--left {
  grid-column: 1;
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list--right {
  grid-column: 3;
}
@media only screen and (max-width: 1080px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-list--right {
    top: calc(100% + 101px);
    border-top: 0;
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-item {
  min-width: 0;
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-item--mobile-tickets {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-item--mobile-tickets {
    display: block;
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-ticket-button.js-open-cart {
  position: static;
  right: auto;
  top: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  height: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #051630;
  z-index: auto;
  cursor: pointer;
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-ticket-button.js-open-cart:hover, .lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-ticket-button.js-open-cart:focus-visible {
  transform: none;
  background: transparent;
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 20px;
  white-space: nowrap;
  color: #051630;
  text-align: center;
  font-family: "Special Elite";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media only screen and (max-width: 1280px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-link {
    padding: 4px 8px;
  }
}
@media only screen and (max-width: 1080px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-nav-link {
    justify-content: flex-start;
    min-height: 67px;
    padding: 24px 5px;
    font-size: 13px;
    border-width: 0 0 1px;
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-btn--toggle-menu {
  --btn-text-color: transparent;
  --btn-background-color: transparent;
  --btn-border-color: transparent;
  --btn-hover-text-color: transparent;
  --btn-hover-background-color: transparent;
  --btn-hover-border-color: transparent;
  display: none;
  position: relative;
  background-color: transparent;
  max-width: 32px;
  min-width: 32px;
  width: 32px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 1080px) {
  .lf-section--custom-header .lf-header .lf-nav-wrap .lf-btn--toggle-menu {
    display: block;
    flex: 0 0 auto;
  }
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-btn--toggle-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #050505;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-btn--toggle-menu span:nth-child(1) {
  top: 0;
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-btn--toggle-menu span:nth-child(2) {
  top: 10px;
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-btn--toggle-menu span:nth-child(3) {
  top: 20px;
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-btn--toggle-menu.--active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-btn--toggle-menu.--active span:nth-child(2) {
  opacity: 0;
}
.lf-section--custom-header .lf-header .lf-nav-wrap .lf-btn--toggle-menu.--active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.lf-section--home-01 .lf-section {
  position: relative;
}
.lf-section--home-01 .lf-section .lf-top {
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1c8ca1;
  background-size: auto 100%;
  height: 576px;
}
@media only screen and (max-width: 749px) {
  .lf-section--home-01 .lf-section .lf-top {
    height: 600px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-section--home-01 .lf-section .lf-top {
    height: 480px;
  }
}
@media only screen and (max-width: 380px) {
  .lf-section--home-01 .lf-section .lf-top {
    height: 380px;
  }
}
.lf-section--home-01 .lf-section .lf-bot {
  background: linear-gradient(180deg, #ff2e6f 0%, #991c43 100%);
  padding: 40px 25px;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container {
  max-width: 1820px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(1) {
  max-width: 510px;
  width: 100%;
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(1) {
    max-width: 100%;
    width: calc(50% - 10px);
    order: 2;
  }
}
@media only screen and (max-width: 749px) {
  .lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(1) {
    width: 100%;
  }
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(1) > h1 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 68px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1560px) {
  .lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(1) > h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1440px) {
  .lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(1) > h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(1) > h1 {
    font-size: 30px;
  }
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(1) > p {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 35px;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(1) .lf-event-date-label {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25em;
  margin-bottom: 16px;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(1) .lf-event-date-value {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25em;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(2) {
  width: fit-content;
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(2) {
    width: 100%;
    order: 1;
  }
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(2) .lf-golden-ticket-link {
  display: block;
  max-width: 458px;
  min-width: 458px;
  width: 100%;
  margin: 0 auto 18px;
}
@media only screen and (max-width: 749px) {
  .lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(2) .lf-golden-ticket-link {
    min-width: unset;
  }
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(2) .lf-golden-ticket-link .lf-golden-ticket-img {
  width: 100%;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(2) .lf-btn--buy-now {
  --btn-text-color: #07162f;
  --btn-background-color: var(--primary-color);
  --btn-border-color: var(--primary-color);
  --btn-hover-text-color: #07162f;
  --btn-hover-background-color: #d1bb2f;
  --btn-hover-border-color: #d1bb2f;
  max-width: 221px;
  margin: 0 auto;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(3) {
  max-width: 525px;
  width: 100%;
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(3) {
    max-width: 100%;
    width: calc(50% - 10px);
    order: 3;
  }
}
@media only screen and (max-width: 749px) {
  .lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(3) {
    width: 100%;
  }
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(3) > p {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 60px;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(3) .lf-product-description {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3em;
  margin: 0;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(3) .lf-product-description * {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(3) .lf-inner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(3) .lf-inner-row .lf-btn--add-to-cart {
  --btn-text-color: var(--white-color);
  --btn-background-color: transparent;
  --btn-border-color: #239bb3;
  --btn-hover-text-color: var(--white-color);
  --btn-hover-background-color: #239bb3;
  --btn-hover-border-color: #239bb3;
}
.lf-section--home-01 .lf-section .lf-bot .lf-container .lf-row .lf-col:nth-child(3) .lf-inner-row .lf-btn--learn-more {
  --btn-text-color: var(--black-color);
  --btn-background-color: var(--primary-color);
  --btn-border-color: var(--primary-color);
  --btn-hover-text-color: var(--black-color);
  --btn-hover-background-color: #d1bb2f;
  --btn-hover-border-color: #d1bb2f;
}

.lf-section--home-02 .lf-section {
  position: relative;
  background-color: #112540;
  padding-top: 175px;
  padding: 175px 25px;
  overflow: hidden;
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-02 .lf-section {
    padding: 100px 25px;
  }
}
.lf-section--home-02 .lf-section::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  background: linear-gradient(270deg, rgba(17, 37, 64, 0) 0%, #112540 78.01%);
  width: 30vw;
  height: 100%;
}
@media only screen and (max-width: 1440px) {
  .lf-section--home-02 .lf-section::before {
    width: 20vw;
  }
}
@media only screen and (max-width: 749px) {
  .lf-section--home-02 .lf-section::before {
    display: none;
  }
}
.lf-section--home-02 .lf-section::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: linear-gradient(90deg, rgba(17, 37, 64, 0) 0%, #112540 78.01%);
  width: 30vw;
  height: 100%;
}
@media only screen and (max-width: 1440px) {
  .lf-section--home-02 .lf-section::after {
    width: 20vw;
  }
}
@media only screen and (max-width: 749px) {
  .lf-section--home-02 .lf-section::after {
    display: none;
  }
}
.lf-section--home-02 .lf-section .lf-container {
  position: relative;
  z-index: 1;
  max-width: 1820px;
  width: 100%;
  margin: 0 auto;
}
.lf-section--home-02 .lf-section .lf-container > h2 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 88px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 1.25em;
  margin-top: 0;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1440px) {
  .lf-section--home-02 .lf-section .lf-container > h2 {
    font-size: 78px;
  }
}
@media only screen and (max-width: 1280px) {
  .lf-section--home-02 .lf-section .lf-container > h2 {
    font-size: 68px;
  }
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-02 .lf-section .lf-container > h2 {
    font-size: 58px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-section--home-02 .lf-section .lf-container > h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-section--home-02 .lf-section .lf-container > h2 {
    font-size: 38px;
  }
}
.lf-section--home-02 .lf-section .lf-container > h3 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 1.25em;
  margin-top: 0;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1440px) {
  .lf-section--home-02 .lf-section .lf-container > h3 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1280px) {
  .lf-section--home-02 .lf-section .lf-container > h3 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-02 .lf-section .lf-container > h3 {
    font-size: 32px;
  }
}
.lf-section--home-02 .lf-section .lf-container > p {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 1.3em;
  max-width: 1130px;
  width: 90%;
  margin: 0 auto 77px;
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-02 .lf-section .lf-container > p {
    margin: 0 auto 40px;
  }
}
.lf-section--home-02 .lf-section .lf-container > .lf-btn--view-all-speakers {
  --btn-text-color: #ffffff;
  --btn-background-color: transparent;
  --btn-border-color: #ffffff;
  --btn-hover-text-color: #000000;
  --btn-hover-background-color: #ffffff;
  --btn-hover-border-color: #ffffff;
  margin: 0 auto 90px;
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-02 .lf-section .lf-container .lf-speaker-list .lf-speaker-item {
    max-width: 240px;
    margin-left: 22px;
  }
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-02 .lf-section .lf-container .lf-speaker-list .lf-speaker-item .lf-speaker-profile-img {
    height: 208px;
  }
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-02 .lf-section .lf-container .lf-speaker-list .lf-speaker-item .lf-speaker-details {
    padding: 16px;
  }
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-02 .lf-section .lf-container .lf-speaker-list .lf-speaker-item .lf-speaker-details .lf-speaker-full-name {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-02 .lf-section .lf-container .lf-speaker-list .lf-speaker-item .lf-speaker-details .lf-speaker-title {
    font-size: 14px;
    line-height: 1.5em;
    height: 3em;
  }
}

.lf-section--home-03 .lf-section {
  position: relative;
  background-color: #112540;
  padding-top: 195px;
  padding-bottom: 230px;
}
.lf-section--home-03 .lf-section .lf-container {
  max-width: 1820px;
  width: 100%;
  margin: 0 auto;
}
.lf-section--home-03 .lf-section .lf-container .lf-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.lf-section--home-03 .lf-section .lf-container .lf-row > h2 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 88px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  margin-top: 0;
  margin-bottom: 0;
}
.lf-section--home-03 .lf-section .lf-container .lf-row .lf-btn--view-all-events {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 255px;
  width: 100%;
  margin: 0;
  padding: 16px;
  background-color: transparent;
  border: 1px solid var(--white-color);
}
.lf-section--home-03 .lf-section .lf-container .lf-row .lf-btn--view-all-events .lf-btn-label {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.25em;
}
.lf-section--home-03 .lf-section .lf-container .lf-row .lf-btn--view-all-events:hover {
  background-color: var(--white-color);
}
.lf-section--home-03 .lf-section .lf-container .lf-row .lf-btn--view-all-events:hover .lf-btn-label {
  color: var(--black-color);
}
.lf-section--home-03 .lf-section .lf-container .lf-date-label {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  width: 100%;
  margin-bottom: 54px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--white-color);
}
.lf-section--home-03 .lf-section .lf-container .lf-event-list {
  display: block;
  margin-bottom: 75px;
}
.lf-section--home-03 .lf-section .lf-container .lf-event-list .lf-event-item {
  margin-right: 32px;
}

.lf-section--home-04 .lf-section {
  position: relative;
}
.lf-section--home-04 .lf-section .lf-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.lf-section--home-04 .lf-section .lf-row .lf-col {
  width: 50%;
}
@media only screen and (max-width: 749px) {
  .lf-section--home-04 .lf-section .lf-row .lf-col {
    width: 100%;
  }
}
.lf-section--home-04 .lf-section .lf-row .lf-col.col-details {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #239bb3;
}
@media only screen and (max-width: 749px) {
  .lf-section--home-04 .lf-section .lf-row .lf-col.col-details {
    order: 2;
  }
}
.lf-section--home-04 .lf-section .lf-row .lf-col.col-details .lf-content {
  width: 80%;
  padding: 100px 0;
}
@media only screen and (max-width: 749px) {
  .lf-section--home-04 .lf-section .lf-row .lf-col.col-details .lf-content {
    padding: 70px 0;
  }
}
.lf-section--home-04 .lf-section .lf-row .lf-col.col-details .lf-content > h2 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 60px;
  font-style: normal;
  line-height: 1.25em;
  margin-top: 0;
  margin-bottom: 40px;
}
@media only screen and (max-width: 749px) {
  .lf-section--home-04 .lf-section .lf-row .lf-col.col-details .lf-content > h2 {
    font-size: 40px;
  }
}
.lf-section--home-04 .lf-section .lf-row .lf-col.col-details .lf-content > h6 {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 22px;
  font-style: normal;
  line-height: 1.5em;
  margin-top: 0;
  margin-bottom: 22px;
}
.lf-section--home-04 .lf-section .lf-row .lf-col.col-details .lf-content > p {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 17px;
  font-style: normal;
  line-height: 1.5em;
  margin-top: 0px;
  margin-bottom: 0px;
}
.lf-section--home-04 .lf-section .lf-row .lf-col.col-details .lf-content > ol {
  margin: 0;
}
.lf-section--home-04 .lf-section .lf-row .lf-col.col-details .lf-content > ol li {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 17px;
  font-style: normal;
  line-height: 1.5em;
}
.lf-section--home-04 .lf-section .lf-row .lf-col.col-details .lf-content > ol li a {
  color: inherit;
}
@media only screen and (max-width: 749px) {
  .lf-section--home-04 .lf-section .lf-row .lf-col.col-images {
    order: 1;
  }
}
.lf-section--home-04 .lf-section .lf-row .lf-col.col-images .lf-img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.lf-section--home-05 .lf-section {
  position: relative;
  overflow: hidden;
  background-color: #000b18;
  border-top: 5px solid #14324f;
  border-bottom: 1px solid rgba(54, 94, 129, 0.8);
  padding: 80px 24px;
}
.lf-section--home-05 .lf-section .lf-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.lf-section--home-05 .lf-section .lf-container > h2 {
  max-width: 760px;
  margin: 0 auto 64px;
  color: #fff;
  text-align: center;
  font-family: "CS Adley Stamp", var(--custom-first-font-family);
  font-size: clamp(35px, 3.6vw, 64px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}
.lf-section--home-05 .lf-section .lf-container .lf-partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 34px);
  width: 100%;
  min-height: 44px;
}
.lf-section--home-05 .lf-section .lf-container .lf-partner-logos .lf-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.lf-section--home-05 .lf-section .lf-container .lf-partner-logos .lf-img--kilkenny {
  width: clamp(120px, 18vw, 180px);
}
.lf-section--home-05 .lf-section .lf-container .lf-partner-logos .lf-img--violet {
  width: clamp(60px, 8vw, 92px);
}
@media only screen and (max-width: 749px) {
  .lf-section--home-05 .lf-section {
    padding: 18px 18px 24px;
  }
  .lf-section--home-05 .lf-section .lf-container > h2 {
    max-width: 540px;
    font-size: clamp(22px, 7vw, 34px);
  }
}
@media only screen and (max-width: 480px) {
  .lf-section--home-05 .lf-section .lf-partner-logos {
    flex-direction: column;
    gap: 12px;
  }
  .lf-section--home-05 .lf-section .lf-img--kilkenny {
    width: min(74vw, 180px);
  }
  .lf-section--home-05 .lf-section .lf-img--violet {
    width: min(40vw, 86px);
  }
}

.lf-section--home-01-v2 {
  background-image: linear-gradient(rgba(8, 18, 30, 0.84), rgba(8, 18, 30, 0.84)), var(--hero-texture);
  background-position: center;
  background-size: cover;
  padding: 18px 24px 24px;
  overflow: hidden;
}
.lf-section--home-01-v2[v-cloak] {
  display: none;
}
.lf-section--home-01-v2 .lf-section {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
}
.lf-section--home-01-v2 .lf-section .lf-container {
  display: grid;
  grid-template-columns: minmax(320px, 880px) minmax(320px, 880px);
  align-items: stretch;
  gap: 32px;
  margin-bottom: 24px;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-card {
  position: relative;
  min-height: 800px;
  background-color: #1d93a6;
  overflow: hidden;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-card .lf-hero-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 800px;
  padding: 8px 0 0;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content h1 {
  max-width: 760px;
  color: var(--white-color);
  font-family: var(--custom-fifth-font-family);
  font-size: clamp(56px, 5.8vw, 106px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content {
  display: flex;
  justify-content: end;
  width: 100%;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 401px;
  align-items: flex-end;
  gap: 16px;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel .lf-kicker {
  color: #FFF;
  text-align: right;
  font-family: "Special Elite";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 32px */
  text-transform: uppercase;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel p:not(.lf-kicker) {
  max-width: 620px;
  color: #FFF;
  text-align: right;
  font-family: "Special Elite";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel button.js-open-cart.custom-button-cart-home {
  appearance: none;
  position: unset !important;
  transform: unset !important;
  width: 272.385px !important;
  height: 57.141px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 19px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel button.js-open-cart.custom-button-cart-home:hover, .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel button.js-open-cart.custom-button-cart-home:focus, .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel button.js-open-cart.custom-button-cart-home:active {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel button.js-open-cart.custom-button-cart-home > svg {
  display: block;
  width: 100%;
  height: auto;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel button.js-open-cart.custom-button-cart-home .lf-btn--toggle-menu {
  --btn-text-color: transparent;
  --btn-background-color: transparent;
  --btn-border-color: transparent;
  --btn-hover-text-color: transparent;
  --btn-hover-background-color: transparent;
  --btn-hover-border-color: transparent;
  display: none;
  position: relative;
  background-color: transparent;
  max-width: 32px;
  min-width: 32px;
  width: 32px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel button.js-open-cart.custom-button-cart-home .lf-btn--toggle-menu {
    display: block;
  }
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel button.js-open-cart.custom-button-cart-home .lf-btn--toggle-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #050505;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel button.js-open-cart.custom-button-cart-home .lf-btn--toggle-menu span:nth-child(1) {
  top: 0;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel button.js-open-cart.custom-button-cart-home .lf-btn--toggle-menu span:nth-child(2) {
  top: 10px;
}
.lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .inner-content .lf-copy-panel button.js-open-cart.custom-button-cart-home .lf-btn--toggle-menu span:nth-child(3) {
  top: 20px;
}
.lf-section--home-01-v2 .golden-ticket-container {
  display: grid;
  grid-template-columns: minmax(180px, 430px) 1fr;
  align-items: end;
  gap: 46px;
  width: 100%;
  padding-top: 36px;
  border-top: 1px solid rgba(254, 233, 96, 0.55);
}
.lf-section--home-01-v2 .golden-ticket-container .title-content {
  min-width: 0;
}
.lf-section--home-01-v2 .golden-ticket-container .title-content .linear-container {
  width: 100%;
  max-width: 412px;
  height: 11px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, #1A8196 0%, #FEE960 49.29%, #F72D66 100%);
}
.lf-section--home-01-v2 .golden-ticket-container .title-content .golden-ticket-svg {
  width: 100%;
  max-width: 424px;
}
.lf-section--home-01-v2 .golden-ticket-container .title-content .golden-ticket-svg svg {
  display: block;
  width: 100%;
  height: auto;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .golden-description {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1200px;
  color: #FFF;
  font-family: "Special Elite";
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .golden-description .desciption-1 {
  font-size: clamp(18px, 0.9vw, 26px);
  line-height: 130%;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .golden-description .desciption-2 {
  font-size: clamp(16px, 0.72vw, 21px);
  line-height: 150%;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content {
  display: grid;
  grid-template-columns: minmax(150px, 360px) minmax(180px, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 120px;
  padding: 24px 28px 22px 88px;
  background: linear-gradient(90deg, #1A8196 0%, #FEE960 49.29%, #F72D66 100%);
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .image-container {
  width: 100%;
  max-width: 360px;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .image-container img {
  display: block;
  width: 100%;
  height: auto;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .center-text {
  color: #000;
  font-family: "Special Elite";
  font-style: normal;
  font-weight: 400;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .center-text .priority-access {
  margin-bottom: 8px;
  font-size: clamp(13px, 0.85vw, 16px);
  line-height: 100%;
  text-transform: uppercase;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .center-text .description {
  max-width: 500px;
  font-size: clamp(11px, 0.72vw, 14px);
  line-height: 130%;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .golden-ticket-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 260px;
  min-height: 42px;
  padding: 8px 13px;
  background: #EF2968;
  box-shadow: none;
  color: #FFF;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .golden-ticket-button:hover, .lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .golden-ticket-button:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 5px 7px 0 0 #000;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .golden-ticket-button:active {
  transform: translate(-1px, -1px);
  box-shadow: 2px 3px 0 0 #000;
}
.lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .golden-ticket-button svg {
  display: block;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 1280px) {
  .lf-section--home-01-v2 .golden-ticket-container {
    grid-template-columns: minmax(180px, 320px) 1fr;
    gap: 28px;
  }
  .lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content {
    grid-template-columns: minmax(140px, 280px) 1fr;
    padding-left: 32px;
  }
  .lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .golden-ticket-button {
    grid-column: 2;
    justify-self: start;
  }
  .lf-section--home-01-v2 .lf-section .lf-container {
    gap: 22px;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .lf-copy-panel {
    min-height: 300px;
    padding: 36px;
  }
}
@media only screen and (max-width: 900px) {
  .lf-section--home-01-v2 {
    padding: 14px;
  }
  .lf-section--home-01-v2 .golden-ticket-container {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
    padding-top: 24px;
  }
  .lf-section--home-01-v2 .golden-ticket-container .title-content .linear-container {
    max-width: 260px;
    height: 8px;
    margin-bottom: 16px;
  }
  .lf-section--home-01-v2 .golden-ticket-container .title-content .golden-ticket-svg {
    max-width: 320px;
  }
  .lf-section--home-01-v2 .golden-ticket-container .golden-content {
    gap: 20px;
  }
  .lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .image-container {
    max-width: 300px;
  }
  .lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .golden-ticket-button {
    grid-column: auto;
    justify-self: start;
    min-width: 0;
  }
  .lf-section--home-01-v2 .lf-section .lf-container {
    grid-template-columns: 1fr;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-card,
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content,
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-card-img {
    min-height: unset;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-card {
    width: 100%;
    max-width: 620px;
    aspect-ratio: 3/4;
    margin-inline: auto;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-card .lf-hero-card-img {
    object-position: center;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content {
    gap: 28px;
    padding: 0;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content h1 {
    font-size: clamp(44px, 12vw, 82px);
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .lf-copy-panel {
    min-height: unset;
    padding: 28px;
    text-align: left;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .lf-copy-panel p:not(.lf-kicker) {
    margin-left: 0;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .lf-copy-panel .lf-btn--buy-now {
    margin-left: 0;
  }
}
@media only screen and (max-width: 700px) {
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-card {
    max-width: 520px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-section--home-01-v2 .golden-ticket-container .title-content .golden-ticket-svg {
    max-width: 260px;
  }
  .lf-section--home-01-v2 .golden-ticket-container .golden-content .bottom-golden-content .golden-ticket-button {
    width: 100%;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-card {
    max-width: 360px;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content h1 {
    font-size: 42px;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .lf-copy-panel {
    padding: 22px;
    border-width: 3px;
  }
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-content .lf-copy-panel .lf-btn--buy-now {
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 360px) {
  .lf-section--home-01-v2 .lf-section .lf-container .lf-hero-card {
    max-width: 300px;
  }
}

.lf-section--home-03-v2 {
  background-image: linear-gradient(rgba(8, 18, 30, 0.78), rgba(8, 18, 30, 0.78)), var(--hero-texture);
  background-position: center;
  background-size: cover;
  max-width: 1800px;
  margin: 0 auto;
  padding: 80px 0px;
  text-decoration: none;
}
.lf-section--home-03-v2 .lf-section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 60px 88px;
  background-color: #168fa1;
  background-image: linear-gradient(rgba(18, 145, 161, 0.9), rgba(18, 145, 161, 0.9)), var(--hero-texture);
  background-position: center;
  background-size: cover;
}
.lf-section--home-03-v2 .lf-container {
  width: 100%;
}
.lf-section--home-03-v2 .lf-schedule-header {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 485px);
  align-items: start;
  gap: 48px;
  margin-bottom: 42px;
}
.lf-section--home-03-v2 .lf-heading-group .lf-eyebrow {
  margin-bottom: 18px;
  color: #FFF;
  font-family: "Special Elite";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.lf-section--home-03-v2 .lf-heading-group h2 {
  margin: 0;
  color: #FFF;
  font-family: "DM Serif Display", var(--custom-first-font-family);
  font-size: clamp(42px, 3.4vw, 64px);
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  text-transform: uppercase;
}
.lf-section--home-03-v2 .lf-schedule-header > p {
  margin: 0;
  color: #FFF;
  font-family: var(--custom-fourth-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.lf-section--home-03-v2 .lf-loading-state,
.lf-section--home-03-v2 .lf-no-events-found {
  min-height: 160px;
  color: #FFF;
  font-family: var(--custom-fourth-font-family);
  font-size: 14px;
  line-height: 140%;
}
.lf-section--home-03-v2 .lf-schedule-tabs-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  gap: 18px;
  margin-bottom: 28px;
}
.lf-section--home-03-v2 .lf-schedule-tabs {
  display: flex;
  flex-wrap: nowrap;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.lf-section--home-03-v2 .lf-schedule-tabs button {
  flex: 0 0 clamp(190px, 20vw, 285px);
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #FFF;
  font-family: var(--custom-fourth-font-family);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
}
.lf-section--home-03-v2 .lf-schedule-tabs button:first-child {
  flex-basis: 118px;
}
.lf-section--home-03-v2 .lf-schedule-tabs button.is-active {
  background: #FFF;
  color: #EF2968;
}
.lf-section--home-03-v2 .lf-btn--view-all-events {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 182px;
  min-height: 42px;
  padding: 8px 16px;
  background: #EF2968;
  box-shadow: none;
  color: #FFF;
  font-family: var(--custom-fourth-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.lf-section--home-03-v2 .lf-btn--view-all-events:hover, .lf-section--home-03-v2 .lf-btn--view-all-events:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 5px 7px 0 0 #000;
}
.lf-section--home-03-v2 .lf-btn--view-all-events:active {
  transform: translate(-1px, -1px);
  box-shadow: 2px 3px 0 0 #000;
}
.lf-section--home-03-v2 .lf-event-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  min-height: 320px;
  scrollbar-width: none;
}
.lf-section--home-03-v2 .lf-event-grid::-webkit-scrollbar {
  display: none;
}
.lf-section--home-03-v2 .lf-event-grid.flickity-enabled {
  display: block;
  overflow: visible;
}
.lf-section--home-03-v2 .lf-event-grid .flickity-viewport {
  overflow: hidden;
}
.lf-section--home-03-v2 .lf-event-card {
  flex: 0 0 calc((100% - 96px) / 5);
  width: calc((100% - 96px) / 5);
  min-width: 0;
  margin-right: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.lf-section--home-03-v2 .lf-event-card .lf-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  color: #FFF;
  font-family: "Special Elite";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.lf-section--home-03-v2 .lf-event-card h3 {
  margin: 0 0 12px;
  font-family: "Special Elite";
  font-size: clamp(18px, 1.18vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 116%;
}
.lf-section--home-03-v2 .lf-event-card h3 a {
  color: #FFF;
  text-decoration: none;
}
.lf-section--home-03-v2 .lf-event-card h3 a:hover, .lf-section--home-03-v2 .lf-event-card h3 a:focus {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.lf-section--home-03-v2 .lf-event-card .lf-event-image {
  display: none;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 14px 0 12px;
  object-fit: cover;
}
.lf-section--home-03-v2 .lf-event-card p {
  margin: 0;
  color: #FFF;
  font-family: "Special Elite";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
.lf-section--home-03-v2 .lf-event-card.has-image:hover .lf-event-image, .lf-section--home-03-v2 .lf-event-card.has-image:focus-within .lf-event-image {
  display: block;
}
.lf-section--home-03-v2 .lf-event-card.has-image:hover .lf-event-location, .lf-section--home-03-v2 .lf-event-card.has-image:focus-within .lf-event-location {
  display: none;
}
.lf-section--home-03-v2 .lf-speakers-block {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}
.lf-section--home-03-v2 .lf-speakers-block .lf-speakers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}
.lf-section--home-03-v2 .lf-speakers-block h3 {
  margin: 0;
  color: #FFF;
  font-family: "DM Serif Display", var(--custom-first-font-family);
  font-size: clamp(28px, 2vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: capitalize;
}
.lf-section--home-03-v2 .lf-speakers-block .lf-btn--view-all-speakers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 206px;
  min-height: 42px;
  padding: 8px 16px;
  background: #EF2968;
  box-shadow: none;
  color: #FFF;
  font-family: "Special Elite";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.lf-section--home-03-v2 .lf-speakers-block .lf-btn--view-all-speakers:hover, .lf-section--home-03-v2 .lf-speakers-block .lf-btn--view-all-speakers:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 5px 7px 0 0 #000;
}
.lf-section--home-03-v2 .lf-speakers-block .lf-btn--view-all-speakers:active {
  transform: translate(-1px, -1px);
  box-shadow: 2px 3px 0 0 #000;
}
.lf-section--home-03-v2 .lf-speaker-grid {
  display: block;
}
.lf-section--home-03-v2 .lf-speaker-grid .flickity-viewport {
  overflow: hidden;
}
.lf-section--home-03-v2 .lf-speaker-card {
  display: block;
  width: calc((100% - 120px) / 6);
  min-width: 170px;
  margin-right: 24px;
  padding: 6px;
  text-decoration: none;
  background: transparent;
  transition: background-color 180ms ease, transform 180ms ease;
}
.lf-section--home-03-v2 .lf-speaker-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1.18;
  margin-bottom: 14px;
  background: #d7d7d7;
  object-fit: cover;
  object-position: center top;
  border: 0 solid #FEE960;
  transition: border-width 180ms ease, margin-bottom 180ms ease;
}
.lf-section--home-03-v2 .lf-speaker-card h4 {
  display: inline;
  margin: 0 0 4px;
  color: #FFF;
  font-family: "Special Elite";
  font-size: clamp(16px, 1vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  padding: 5px;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.lf-section--home-03-v2 .lf-speaker-card p {
  margin: 6px 0 0;
  color: #FFF;
  font-family: "Special Elite";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.lf-section--home-03-v2 .lf-speaker-card:hover, .lf-section--home-03-v2 .lf-speaker-card:focus-visible {
  background: #FEE960;
  transform: translateY(-4px);
}
.lf-section--home-03-v2 .lf-speaker-card:hover img, .lf-section--home-03-v2 .lf-speaker-card:focus-visible img {
  margin-bottom: 12px;
  border-width: 4px;
}
.lf-section--home-03-v2 .lf-speaker-card:hover h4, .lf-section--home-03-v2 .lf-speaker-card:focus-visible h4 {
  background: #EF2968;
  color: #FFF;
}
.lf-section--home-03-v2 .lf-speaker-card:hover p, .lf-section--home-03-v2 .lf-speaker-card:focus-visible p {
  color: #000;
}
@media only screen and (max-width: 1280px) {
  .lf-section--home-03-v2 {
    padding: 46px 36px 56px;
  }
  .lf-section--home-03-v2 .lf-section {
    padding: 58px 38px 66px;
  }
  .lf-section--home-03-v2 .lf-event-grid {
    min-height: unset;
    margin-bottom: 72px;
  }
  .lf-section--home-03-v2 .lf-event-card {
    flex-basis: calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
  }
  .lf-section--home-03-v2 .lf-speaker-card {
    width: calc((100% - 48px) / 3);
  }
}
@media only screen and (max-width: 900px) {
  .lf-section--home-03-v2 {
    padding: 24px 14px 34px;
  }
  .lf-section--home-03-v2 .lf-section {
    padding: 38px 22px 46px;
  }
  .lf-section--home-03-v2 .lf-schedule-header,
  .lf-section--home-03-v2 .lf-schedule-tabs-row {
    grid-template-columns: 1fr;
  }
  .lf-section--home-03-v2 .lf-speakers-block .lf-speakers-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .lf-section--home-03-v2 .lf-schedule-tabs {
    flex-wrap: nowrap;
  }
  .lf-section--home-03-v2 .lf-event-grid {
    min-height: 260px;
  }
  .lf-section--home-03-v2 .lf-event-card {
    flex-basis: calc((100% - 18px) / 2);
    width: calc((100% - 18px) / 2);
    margin-right: 18px;
  }
  .lf-section--home-03-v2 .lf-speaker-card {
    width: calc((100% - 18px) / 2);
    margin-right: 18px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-section--home-03-v2 .lf-event-card {
    flex: 0 0 auto;
    width: 100%;
    margin-right: 0;
    padding: 16px 0 18px;
  }
  .lf-section--home-03-v2 .lf-event-grid,
  .lf-section--home-03-v2 .lf-event-grid.flickity-enabled {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: min(70vh, 620px);
    min-height: 0;
    margin-bottom: 48px;
    padding-right: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.65) transparent;
    -webkit-overflow-scrolling: touch;
  }
  .lf-section--home-03-v2 .lf-event-grid::-webkit-scrollbar,
  .lf-section--home-03-v2 .lf-event-grid.flickity-enabled::-webkit-scrollbar {
    display: block;
    width: 4px;
  }
  .lf-section--home-03-v2 .lf-event-grid::-webkit-scrollbar-thumb,
  .lf-section--home-03-v2 .lf-event-grid.flickity-enabled::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
  }
}
@media only screen and (max-width: 560px) {
  .lf-section--home-03-v2 .lf-schedule-tabs {
    margin-right: -22px;
    padding-right: 22px;
  }
  .lf-section--home-03-v2 .lf-schedule-tabs button {
    flex-basis: 220px;
  }
  .lf-section--home-03-v2 .lf-btn--view-all-events {
    width: 100%;
  }
  .lf-section--home-03-v2 .lf-speakers-block .lf-btn--view-all-speakers {
    width: 100%;
  }
  .lf-section--home-03-v2 .lf-speaker-card {
    width: 82%;
  }
}

.lf-section--home-04-v2 {
  position: relative;
  overflow: hidden;
  padding: 40px 0px;
  background-image: linear-gradient(rgba(9, 22, 36, 0.78), rgba(9, 22, 36, 0.78)), var(--hero-texture);
  background-position: center;
  background-size: cover;
  margin: 0 auto;
  max-width: 1800px;
}
.lf-section--home-04-v2 .lf-section {
  width: 100%;
  margin: 0 auto;
}
.lf-section--home-04-v2 .lf-visit-panel {
  position: relative;
  min-height: 760px;
  padding: 0px 0 62px;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-yellow-block {
  position: absolute;
  z-index: 0;
  width: clamp(168px, 22vw, 412px);
  background-color: #FEE960;
  opacity: 0.96;
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-yellow-block.lf-yellow-block--top {
  top: 0;
  left: 0;
  width: 100%;
  height: 412px;
  background: linear-gradient(90deg, #FEE960 0%, rgba(254, 233, 96, 0) 47.89%);
  transform-origin: left center;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-yellow-block.lf-yellow-block--bottom {
  right: 0;
  bottom: 0;
  width: min(20.556vw, 290px);
  height: 774px;
  background: linear-gradient(0deg, #FEE960 0%, rgba(254, 233, 96, 0) 100%);
  transform: scaleY(0);
  transform-origin: center bottom;
  transition-delay: 120ms;
}
.lf-section--home-04-v2 .lf-visit-panel.is-yellow-animated .lf-yellow-block--top {
  transform: scaleX(1);
}
.lf-section--home-04-v2 .lf-visit-panel.is-yellow-animated .lf-yellow-block--bottom {
  transform: scaleY(1);
}
.lf-section--home-04-v2 .lf-visit-panel > h2,
.lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro,
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation {
  position: relative;
  z-index: 1;
}
.lf-section--home-04-v2 .lf-visit-panel > h2 {
  margin: 0 0 58px;
  color: #FFF;
  font-family: "CS Adley Stamp";
  font-size: clamp(42px, 4vw, 64px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  text-align: center;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro {
  display: grid;
  grid-template-columns: minmax(190px, 236px) minmax(420px, 600px) minmax(210px, 246px);
  justify-content: center;
  align-items: start;
  gap: 58px;
  margin-bottom: 100px;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-copy-block {
  display: grid;
  gap: 28px;
  min-width: 0;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-copy-block.lf-copy-block--left {
  padding-top: 4px;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-copy-block.lf-copy-block--left p {
  font-size: 13px;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-copy-block.lf-copy-block--right {
  padding-top: 8px;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-copy-block.lf-copy-block--right p {
  font-size: 16px;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-copy-block p {
  margin: 0;
  color: #FFF;
  font-family: "Special Elite";
  font-style: normal;
  font-weight: 400;
  line-height: 147%;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-visit-main-image {
  display: block;
  width: 100%;
  aspect-ratio: 462/301;
  object-fit: cover;
  object-position: center;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-visit-small-image {
  display: block;
  width: 100%;
  max-width: 246px;
  aspect-ratio: 246/180;
  margin-top: 10px;
  object-fit: cover;
  object-position: center;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  margin: 0 auto;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation h3 {
  margin: 0 0 26px 183px;
  color: #FFF;
  font-family: "DM Serif Display", var(--custom-first-font-family);
  font-size: clamp(28px, 2.3vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid {
  display: grid;
  grid-template-columns: minmax(0, 900fr) minmax(0, 530fr) minmax(0, 370fr);
  align-items: stretch;
  min-height: 305px;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list {
  display: grid;
  grid-template-rows: repeat(4, 76px);
  border-top: 1px solid rgba(255, 255, 255, 0.65);
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-item {
  min-width: 0;
  min-height: 0;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-mobile-panel {
  display: none;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  min-height: 0;
  padding: 16px 24px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #FFF;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  transition: background-color 180ms ease, color 180ms ease;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link.is-active {
  background-color: #FFF;
  color: #EF2968;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link:hover svg, .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link:focus-visible svg {
  color: #EF2968;
  filter: drop-shadow(0 0 3px rgba(239, 41, 104, 0.9)) drop-shadow(0 0 8px rgba(239, 41, 104, 0.7));
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link:focus-visible {
  outline: 1px solid #EF2968;
  outline-offset: -1px;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link strong {
  display: block;
  margin-bottom: 4px;
  text-align: left;
  font-family: "Special Elite";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
  text-transform: uppercase;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link small {
  display: block;
  color: currentColor;
  font-family: "Special Elite";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link svg {
  justify-self: end;
  width: 28px;
  height: 28px;
  padding: 6px;
  transition: color 180ms ease, filter 180ms ease;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-details {
  min-height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-left: 1px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-details .lf-hotel-detail {
  display: none;
  margin: 0;
  padding: 18px 28px 16px;
  color: #FFF;
  font-family: "Special Elite";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5em;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-details .lf-hotel-detail.is-active {
  display: block;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-images {
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-images .lf-hotel-image {
  display: none;
  width: 100%;
  height: 272px;
  object-fit: cover;
  object-position: center;
}
.lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-images .lf-hotel-image.is-active {
  display: block;
}
@media only screen and (max-width: 1180px) {
  .lf-section--home-04-v2 {
    padding: 0 12px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro {
    grid-template-columns: minmax(180px, 0.72fr) minmax(360px, 1.35fr) minmax(190px, 0.76fr);
    gap: 34px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation h3 {
    margin-left: 140px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid {
    grid-template-columns: minmax(0, 900fr) minmax(0, 530fr) minmax(0, 370fr);
  }
}
@media only screen and (max-width: 1080px) {
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation {
    border: 1px solid rgba(255, 255, 255, 0.7);
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation h3 {
    display: none;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid {
    grid-template-columns: 1fr;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list {
    grid-template-rows: none;
    border-top: 0;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-item:last-child {
    border-bottom: 0;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-item.is-active .lf-hotel-mobile-panel {
    display: grid;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link {
    min-height: 70px;
    border-bottom: 0;
    background: transparent;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link.is-active {
    background: transparent;
    color: #EF2968;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link svg {
    width: 34px;
    height: 34px;
    padding: 3px;
    transform: rotate(90deg);
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link.is-active svg {
    transform: rotate(-90deg);
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-mobile-panel {
    gap: 20px;
    padding: 0 28px 24px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-mobile-panel p {
    margin: 0;
    color: #FFF;
    font-family: "Special Elite";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-mobile-panel img {
    display: block;
    width: 100%;
    aspect-ratio: 313/158;
    object-fit: cover;
    object-position: center;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-details {
    display: none;
    border-left: 0;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-details .lf-hotel-detail {
    padding: 24px 0;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-images {
    display: none;
  }
}
@media only screen and (max-width: 749px) {
  .lf-section--home-04-v2 {
    padding: 0 18px;
  }
  .lf-section--home-04-v2 .lf-visit-panel {
    min-height: unset;
    padding: 34px 0 44px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-yellow-block {
    display: none;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 58px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-copy-block {
    max-width: 620px;
    padding-top: 0;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-copy-block p {
    font-size: 12px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-visit-main-image {
    order: -1;
    max-width: 680px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-visit-intro .lf-visit-small-image {
    max-width: 360px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation {
    border: 1px solid rgba(255, 255, 255, 0.7);
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation h3 {
    display: none;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid {
    grid-template-columns: 1fr;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list {
    grid-template-rows: none;
    border-top: 0;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-item:last-child {
    border-bottom: 0;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-item.is-active .lf-hotel-mobile-panel {
    display: grid;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link {
    min-height: 70px;
    border-bottom: 0;
    background: transparent;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link.is-active {
    background: transparent;
    color: #EF2968;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link svg {
    width: 34px;
    height: 34px;
    padding: 3px;
    transform: rotate(90deg);
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link.is-active svg {
    transform: rotate(-90deg);
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-mobile-panel {
    gap: 20px;
    padding: 0 28px 24px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-mobile-panel p {
    margin: 0;
    color: #FFF;
    font-family: "Special Elite";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-mobile-panel img {
    display: block;
    width: 100%;
    aspect-ratio: 313/158;
    object-fit: cover;
    object-position: center;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-details {
    display: none;
    border-left: 0;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-details .lf-hotel-detail {
    padding: 24px 0;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-images {
    display: none;
  }
}
@media only screen and (max-width: 560px) {
  .lf-section--home-04-v2 {
    padding: 0 14px;
  }
  .lf-section--home-04-v2 .lf-visit-panel > h2 {
    margin-bottom: 34px;
    line-height: 92%;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-yellow-block.lf-yellow-block--top {
    width: 68%;
    height: 210px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-yellow-block.lf-yellow-block--bottom {
    width: 48%;
    height: 300px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link {
    grid-template-columns: minmax(0, 1fr) 42px;
    min-height: 68px;
    padding: 14px 14px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link strong {
    font-size: 16px;
    line-height: 100%;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-link small {
    font-size: 11px;
    line-height: 115%;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-mobile-panel {
    gap: 18px;
    padding: 0 14px 14px;
  }
  .lf-section--home-04-v2 .lf-visit-panel .lf-accommodation .lf-accommodation-grid .lf-hotel-list .lf-hotel-mobile-panel p {
    font-size: 15px;
    line-height: 1.45;
  }
}

.lf-page--lawfest-2025-highlights {
  color: var(--white-color);
}
.lf-page--lawfest-2025-highlights[v-cloak] {
  display: none;
}
.lf-page--lawfest-2025-highlights .lf-section--lawfest-2025-highlights {
  padding: 32px 20px 52px;
}
.lf-page--lawfest-2025-highlights .lf-container {
  width: min(100%, 1180px);
  margin: 0 auto;
}
.lf-page--lawfest-2025-highlights .lf-highlights-state {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--custom-fourth-font-family);
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}
.lf-page--lawfest-2025-highlights .lf-highlights-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 405px;
  background: #152337;
}
.lf-page--lawfest-2025-highlights .lf-highlights-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #152337;
  padding: 55px clamp(38px, 6.2vw, 72px);
}
.lf-page--lawfest-2025-highlights .lf-highlights-kicker {
  align-self: flex-start;
  background: #ffe76a;
  color: #071c38;
  font-family: var(--custom-fourth-font-family);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 25px;
}
.lf-page--lawfest-2025-highlights h1,
.lf-page--lawfest-2025-highlights h2,
.lf-page--lawfest-2025-highlights h3,
.lf-page--lawfest-2025-highlights p {
  margin-top: 0;
}
.lf-page--lawfest-2025-highlights h1 {
  color: var(--white-color);
  font-family: var(--custom-fifth-font-family);
  font-size: clamp(50px, 5.2vw, 74px);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.lf-page--lawfest-2025-highlights .lf-highlights-hero-copy p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--custom-fourth-font-family);
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 0;
}
.lf-page--lawfest-2025-highlights .lf-highlights-hero-image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 405px;
}
.lf-page--lawfest-2025-highlights .lf-highlights-intro {
  position: relative;
  max-width: 1060px;
  color: var(--white-color);
  font-family: var(--custom-fifth-font-family);
  font-size: clamp(30px, 3.45vw, 47px);
  line-height: 1.02;
  text-transform: none;
  margin: 52px auto 66px;
  padding-left: 30px;
}
.lf-page--lawfest-2025-highlights .lf-highlights-burst {
  display: inline-block;
  color: var(--secondary-color);
  font-family: Arial, sans-serif;
  font-size: 1.3em;
  font-weight: 900;
  line-height: 0;
}
.lf-page--lawfest-2025-highlights .lf-highlights-burst--start {
  position: absolute;
  top: 0.45em;
  left: 0;
}
.lf-page--lawfest-2025-highlights .lf-highlights-ending {
  white-space: nowrap;
}
.lf-page--lawfest-2025-highlights .lf-highlights-burst--end {
  margin: 0 0.06em 0 0.1em;
  transform: translateY(0.08em);
}
.lf-page--lawfest-2025-highlights .lf-highlights-group {
  margin-bottom: 52px;
}
.lf-page--lawfest-2025-highlights .lf-highlights-group > h2 {
  color: var(--white-color);
  font-family: var(--custom-fifth-font-family);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lf-page--lawfest-2025-highlights .lf-highlights-events {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 0.78fr 0.72fr;
  align-items: end;
  gap: 12px;
  overflow: hidden;
}
.lf-page--lawfest-2025-highlights .lf-highlight-event {
  min-width: 0;
  margin: 0;
}
.lf-page--lawfest-2025-highlights .lf-highlight-event a {
  display: block;
}
.lf-page--lawfest-2025-highlights .lf-highlight-event img {
  display: block;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1.15/1;
  border: 1px solid rgba(255, 255, 255, 0.34);
}
.lf-page--lawfest-2025-highlights .lf-highlight-event figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--custom-fourth-font-family);
  font-size: 8px;
  line-height: 1.2;
  margin-top: 6px;
}
.lf-page--lawfest-2025-highlights .lf-highlight-event:nth-child(even) img {
  aspect-ratio: 0.92/1;
}
.lf-page--lawfest-2025-highlights .lf-highlights-speakers {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 13px;
}
.lf-page--lawfest-2025-highlights .lf-highlight-speaker {
  min-width: 0;
}
.lf-page--lawfest-2025-highlights .lf-highlight-speaker img {
  display: block;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  aspect-ratio: 0.86/1;
  margin-bottom: 8px;
}
.lf-page--lawfest-2025-highlights .lf-highlight-speaker h3 {
  color: var(--white-color);
  font-family: var(--custom-fourth-font-family);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 3px;
}
.lf-page--lawfest-2025-highlights .lf-highlight-speaker p {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--custom-fourth-font-family);
  font-size: 7px;
  line-height: 1.15;
  margin-bottom: 0;
}
.lf-page--lawfest-2025-highlights .lf-highlights-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #1596aa;
  padding: 27px 22px;
}
.lf-page--lawfest-2025-highlights .lf-highlight-stat {
  display: grid;
  place-items: center;
  text-align: center;
}
.lf-page--lawfest-2025-highlights .lf-highlight-stat strong {
  color: var(--white-color);
  font-family: var(--custom-fifth-font-family);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 400;
  line-height: 1;
}
.lf-page--lawfest-2025-highlights .lf-highlight-stat span {
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--custom-fourth-font-family);
  font-size: 8px;
  text-transform: uppercase;
}
@media only screen and (max-width: 749px) {
  .lf-page--lawfest-2025-highlights .lf-section--lawfest-2025-highlights {
    padding: 18px 12px 32px;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-hero {
    grid-template-columns: 1fr 1.05fr;
    min-height: 210px;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-hero-copy {
    padding: 20px 16px;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-kicker {
    font-size: 6px;
    margin-bottom: 10px;
  }
  .lf-page--lawfest-2025-highlights h1 {
    font-size: clamp(29px, 9vw, 44px);
    margin-bottom: 12px;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-hero-copy p {
    font-size: 7px;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-hero-image {
    min-height: 210px;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-intro {
    font-size: clamp(17px, 5vw, 25px);
    margin: 28px auto 34px;
    padding-left: 1.2em;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-burst--start {
    left: 0;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-group {
    margin-bottom: 30px;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-group > h2 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-events {
    grid-template-columns: repeat(6, minmax(90px, 1fr));
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-events::-webkit-scrollbar {
    display: none;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-speakers {
    grid-template-columns: repeat(7, minmax(74px, 1fr));
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-speakers::-webkit-scrollbar {
    display: none;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-stats {
    padding: 18px 8px;
  }
  .lf-page--lawfest-2025-highlights .lf-highlight-stat strong {
    font-size: 25px;
  }
  .lf-page--lawfest-2025-highlights .lf-highlight-stat span {
    font-size: 6px;
  }
}
@media only screen and (max-width: 430px) {
  .lf-page--lawfest-2025-highlights .lf-highlights-hero {
    grid-template-columns: 1fr;
  }
  .lf-page--lawfest-2025-highlights .lf-highlights-hero-image {
    min-height: 190px;
  }
}

.lf-page--2025-panel-list .lf-section--01 {
  position: relative;
  padding: 105px 25px 255px;
}
.lf-page--2025-panel-list .lf-section--01 .lf-container {
  max-width: 1820px;
  width: 100%;
  margin: 0 auto;
}
.lf-page--2025-panel-list .lf-section--01 .lf-container > h1 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 1.25em;
  margin-bottom: 112px;
}
@media only screen and (max-width: 1440px) {
  .lf-page--2025-panel-list .lf-section--01 .lf-container > h1 {
    font-size: 56px;
  }
}
@media only screen and (max-width: 1280px) {
  .lf-page--2025-panel-list .lf-section--01 .lf-container > h1 {
    font-size: 52px;
  }
}
@media only screen and (max-width: 1080px) {
  .lf-page--2025-panel-list .lf-section--01 .lf-container > h1 {
    font-size: 46px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--2025-panel-list .lf-section--01 .lf-container > h1 {
    font-size: 42px;
    padding: 0 25px;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-page--2025-panel-list .lf-section--01 .lf-container > h1 {
    font-size: 36px;
  }
}
.lf-page--2025-panel-list .lf-section--01 .lf-container .lf-speaker-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px 35px;
}
.lf-page--2025-panel-list .lf-section--01 .lf-container .lf-speaker-list .lf-speaker-item {
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
}
.lf-page--2025-panel-list .lf-section--01 .lf-container .lf-speaker-list .lf-speaker-item .lf-speaker-details .lf-speaker-full-name {
  height: 2.5em;
  margin-bottom: 0;
}
.lf-page--2025-panel-list .lf-section--01 .lf-container .lf-loading-pane,
.lf-page--2025-panel-list .lf-section--01 .lf-container .lf-error-pane,
.lf-page--2025-panel-list .lf-section--01 .lf-container .lf-no-speakers-found-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
}
.lf-page--2025-panel-list .lf-section--01 .lf-container .lf-loading-pane .lf-label,
.lf-page--2025-panel-list .lf-section--01 .lf-container .lf-error-pane .lf-label,
.lf-page--2025-panel-list .lf-section--01 .lf-container .lf-no-speakers-found-pane .lf-label {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25em;
}

.lf-page--2025-panel-single .lf-section--speaker-data {
  position: relative;
  padding: 100px 25px 90px;
}
.lf-page--2025-panel-single .lf-section--speaker-data .lf-container {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.lf-page--2025-panel-single .lf-section--speaker-data .lf-container .lf-speaker-full-name {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 1.25em;
}
.lf-page--2025-panel-single .lf-section--speaker-data .lf-container .lf-speaker-title {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 32px;
  text-align: center;
  margin-top: 30px;
}
.lf-page--2025-panel-single .lf-section--speaker-data .lf-container .lf-speaker-profile-img {
  width: 100%;
  margin-top: 105px;
}
.lf-page--2025-panel-single .lf-section--speaker-data .lf-container .lf-speaker-bio {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5em;
  margin-top: 30px;
}
.lf-page--2025-panel-single .lf-section--speaker-data .lf-container .lf-loading-pane,
.lf-page--2025-panel-single .lf-section--speaker-data .lf-container .lf-error-pane,
.lf-page--2025-panel-single .lf-section--speaker-data .lf-container .lf-no-speakers-found-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
}
.lf-page--2025-panel-single .lf-section--speaker-data .lf-container .lf-loading-pane .lf-label,
.lf-page--2025-panel-single .lf-section--speaker-data .lf-container .lf-error-pane .lf-label,
.lf-page--2025-panel-single .lf-section--speaker-data .lf-container .lf-no-speakers-found-pane .lf-label {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25em;
}

.lf-page--speaker-list .lf-section--01 {
  position: relative;
  padding: 105px 25px 255px;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-list .lf-section--01 {
    padding: 90px 25px;
  }
}
.lf-page--speaker-list .lf-section--01 .lf-container {
  max-width: 1820px;
  width: 100%;
  margin: 0 auto;
}
.lf-page--speaker-list .lf-section--01 .lf-container > h1 {
  color: var(--white-color);
  font-family: var(--custom-fifth-font-family);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 1.25em;
  margin-top: 0;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1440px) {
  .lf-page--speaker-list .lf-section--01 .lf-container > h1 {
    font-size: 56px;
  }
}
@media only screen and (max-width: 1280px) {
  .lf-page--speaker-list .lf-section--01 .lf-container > h1 {
    font-size: 52px;
  }
}
@media only screen and (max-width: 1080px) {
  .lf-page--speaker-list .lf-section--01 .lf-container > h1 {
    font-size: 46px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-list .lf-section--01 .lf-container > h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-page--speaker-list .lf-section--01 .lf-container > h1 {
    font-size: 36px;
  }
}
.lf-page--speaker-list .lf-section--01 .lf-container > .lf-speaker-intro {
  color: var(--white-color);
  font-family: "Special Elite", var(--custom-second-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 112px;
}
@media only screen and (max-width: 1080px) {
  .lf-page--speaker-list .lf-section--01 .lf-container > .lf-speaker-intro {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 44px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-list .lf-section--01 .lf-container > .lf-speaker-intro {
    font-size: 14px;
  }
  .lf-page--speaker-list .lf-section--01 .lf-container > .lf-speaker-intro br {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .lf-page--speaker-list .lf-section--01 .lf-container > .lf-speaker-intro {
    font-size: 12px;
  }
}
.lf-page--speaker-list .lf-section--01 .lf-container .lf-speaker-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px 35px;
  padding: 40px 24px;
  background-color: #128a9b;
  background-image: url("./assets/SpeakersGrid.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.lf-page--speaker-list .lf-section--01 .lf-container .lf-speaker-list .lf-speaker-item {
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
}
.lf-page--speaker-list .lf-section--01 .lf-container .lf-loading-pane,
.lf-page--speaker-list .lf-section--01 .lf-container .lf-error-pane,
.lf-page--speaker-list .lf-section--01 .lf-container .lf-no-speakers-found-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
}
.lf-page--speaker-list .lf-section--01 .lf-container .lf-loading-pane .lf-label,
.lf-page--speaker-list .lf-section--01 .lf-container .lf-error-pane .lf-label,
.lf-page--speaker-list .lf-section--01 .lf-container .lf-no-speakers-found-pane .lf-label {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25em;
}

.lf-page--speaker-single-v1 .lf-section--speaker-data {
  position: relative;
  background-color: #112540;
  padding: 100px 25px 90px;
}
.lf-page--speaker-single-v1 .lf-section--speaker-data .lf-container {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.lf-page--speaker-single-v1 .lf-section--speaker-data .lf-container .lf-speaker-full-name {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 1.25em;
}
.lf-page--speaker-single-v1 .lf-section--speaker-data .lf-container .lf-speaker-title {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 40px;
  text-align: center;
  margin-top: 30px;
}
.lf-page--speaker-single-v1 .lf-section--speaker-data .lf-container .lf-speaker-profile-img {
  width: 100%;
  margin-top: 105px;
}
.lf-page--speaker-single-v1 .lf-section--speaker-data .lf-container .lf-speaker-bio {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5em;
  margin-top: 30px;
}
.lf-page--speaker-single-v1 .lf-section--speaker-data .lf-container .lf-loading-pane,
.lf-page--speaker-single-v1 .lf-section--speaker-data .lf-container .lf-error-pane,
.lf-page--speaker-single-v1 .lf-section--speaker-data .lf-container .lf-no-speakers-found-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
}
.lf-page--speaker-single-v1 .lf-section--speaker-data .lf-container .lf-loading-pane .lf-label,
.lf-page--speaker-single-v1 .lf-section--speaker-data .lf-container .lf-error-pane .lf-label,
.lf-page--speaker-single-v1 .lf-section--speaker-data .lf-container .lf-no-speakers-found-pane .lf-label {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25em;
}

.lf-page--speaker-single-v2 {
  min-height: 900px;
  padding: 55px 0;
  overflow-x: hidden;
}
.lf-page--speaker-single-v2 .lf-section--profile {
  position: relative;
  background-color: #112540;
  min-height: 345px;
  padding: 55px 25px 0;
}
.lf-page--speaker-single-v2 .lf-section--profile .lf-container {
  background-color: #24344e;
  max-width: 1440px;
  width: 100%;
  min-height: 200px;
  margin: 0 auto;
  border-bottom: 1px solid #4a5971;
}
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  min-height: inherit;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row {
    flex-direction: column;
  }
}
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col {
  width: 50%;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col {
    width: 100%;
  }
}
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col:nth-child(1) .lf-speaker-profile-img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col:nth-child(2) {
  padding: 72px 63px;
}
@media only screen and (max-width: 1080px) {
  .lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col:nth-child(2) {
    padding: 65px 55px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col:nth-child(2) {
    padding: 40px;
  }
}
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col:nth-child(2) > .lf-speaker-full-name {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  margin-top: 0;
  margin-bottom: 16px;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col:nth-child(2) > .lf-speaker-full-name {
    font-size: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col:nth-child(2) > .lf-speaker-full-name {
    font-size: 28px;
  }
}
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col:nth-child(2) > .lf-speaker-title {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 38px;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col:nth-child(2) > .lf-speaker-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col:nth-child(2) > .lf-speaker-title {
    font-size: 16px;
  }
}
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-row .lf-col:nth-child(2) > .lf-speaker-bio {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5em;
  margin-top: 0;
  margin-bottom: 73px;
}
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-loading-pane,
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-error-pane,
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-no-speakers-found-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 400px;
}
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-loading-pane .lf-label,
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-error-pane .lf-label,
.lf-page--speaker-single-v2 .lf-section--profile .lf-container .lf-no-speakers-found-pane .lf-label {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25em;
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows {
  position: relative;
  background-color: #112540;
  padding: 0 25px;
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container {
  background-color: #24344e;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 65px 65px 88px;
  border-bottom: 1px solid #4a5971;
}
@media only screen and (max-width: 1080px) {
  .lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container {
    padding: 65px 55px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container {
    padding: 40px;
  }
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container > h2 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  margin-top: 0;
  margin-bottom: 32px;
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list {
    grid-template-columns: 1fr;
  }
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list .lf-event-item {
  background-color: #24344e;
  max-width: 100%;
  min-width: 0;
  padding: 28px;
  border: 5px solid #404f64;
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list .lf-event-item .lf-event-link {
  display: block;
  text-decoration: none;
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list .lf-event-item .lf-event-link .lf-inner-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1080px) {
  .lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list .lf-event-item .lf-event-link .lf-inner-row {
    flex-direction: column;
  }
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list .lf-event-item .lf-event-link .lf-inner-row .lf-event-title {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.2em;
  height: 3.6em;
  overflow: hidden;
  margin: 0;
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list .lf-event-item .lf-event-link .lf-inner-row .lf-event-availability {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: -0.18px;
  white-space: nowrap;
  background-color: #fb2d6d;
  padding: 16px;
  border-radius: 38px;
}
@media only screen and (max-width: 1080px) {
  .lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list .lf-event-item .lf-event-link .lf-inner-row .lf-event-availability {
    font-size: 16px;
    padding: 12px 14px;
  }
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list .lf-event-item .lf-event-link .lf-event-date-duration {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.25em;
  margin-bottom: 16px;
  padding-bottom: 29px;
  border-bottom: 1px solid var(--white-color);
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list .lf-event-item .lf-event-link .lf-event-location-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 7px;
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list .lf-event-item .lf-event-link .lf-event-location-wrap .lf-svg.svg-icon--pin-location {
  max-width: 9px;
  min-width: 9px;
  width: 100%;
  height: 18.2px;
}
.lf-page--speaker-single-v2 .lf-section--upcoming-shows .lf-container .lf-event-list .lf-event-item .lf-event-link .lf-event-location-wrap .lf-event-location {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.3em;
}
.lf-page--speaker-single-v2 .lf-section--previous-shows {
  position: relative;
  background-color: #112540;
  padding: 0 25px;
}
.lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container {
  background-color: #24344e;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 76px 64px 110px;
  overflow: hidden;
}
@media only screen and (max-width: 1080px) {
  .lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container {
    padding: 65px 55px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container {
    padding: 40px;
  }
}
.lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container > h2 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 25px;
}
.lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container .lf-shows-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media only screen and (max-width: 1080px) {
  .lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container .lf-shows-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container .lf-shows-list {
    grid-template-columns: 1fr;
  }
}
.lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container .lf-shows-list .lf-shows-item {
  width: 100%;
  min-width: 0;
  background-color: transparent;
  padding: 12px;
  border: 1px solid #8e8e8e;
  border-radius: 10px;
}
.lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container .lf-shows-list .lf-shows-item .lf-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 17px;
}
.lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container .lf-shows-list .lf-shows-item .lf-row .lf-col:nth-child(1) {
  max-width: 116px;
  min-width: 116px;
  width: 100%;
  height: 90px;
}
@media only screen and (max-width: 480px) {
  .lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container .lf-shows-list .lf-shows-item .lf-row .lf-col:nth-child(1) {
    max-width: 80px;
    min-width: 80px;
    height: 70px;
  }
}
.lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container .lf-shows-list .lf-shows-item .lf-row .lf-col:nth-child(1) .lf-show-thumbnail {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border: 1px solid var(--white-color);
}
.lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container .lf-shows-list .lf-shows-item .lf-row .lf-col:nth-child(2) {
  width: 100%;
  min-width: 0;
}
.lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container .lf-shows-list .lf-shows-item .lf-row .lf-col:nth-child(2) .lf-show-title {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  height: 3.75em;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 8px;
}
.lf-page--speaker-single-v2 .lf-section--previous-shows .lf-container .lf-shows-list .lf-shows-item .lf-row .lf-col:nth-child(2) .lf-show-date-duration {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-overflow: ellipsis;
  line-height: 1.3em;
  white-space: nowrap;
  height: 1.3em;
  overflow: hidden;
}
.lf-page--speaker-single-v2 .lf-section--navigation {
  position: relative;
  background-color: #112540;
  padding: 45px 25px 95px;
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a {
    overflow: hidden;
  }
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--prev-speaker {
  text-align: left;
  display: block;
  max-width: 400px;
  width: 100%;
  justify-self: start;
  grid-column: 1;
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--prev-speaker .lf-inner-row {
  justify-content: flex-start;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--prev-speaker {
    order: 1;
    max-width: calc(50% - 12px);
  }
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--next-speaker {
  text-align: right;
  display: block;
  max-width: 400px;
  width: 100%;
  justify-self: end;
  grid-column: 3;
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--next-speaker .lf-inner-row {
  justify-content: flex-end;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--next-speaker {
    order: 2;
    max-width: calc(50% - 12px);
  }
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--view-all-speakers {
  --btn-text-color: #ffffff;
  --btn-background-color: transparent;
  --btn-border-color: #ffffff;
  --btn-hover-text-color: #000000;
  --btn-hover-background-color: #ffffff;
  --btn-hover-border-color: #ffffff;
  justify-self: center;
  grid-column: 2;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--view-all-speakers {
    order: 3;
    width: 100%;
  }
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--view-all-speakers .lf-inner-row {
  justify-content: center;
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a .lf-inner-row {
  display: inline-flex;
  align-items: stretch;
  width: 100%;
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a .lf-inner-row .lf-speaker-profile-img {
  background-color: var(--white-color);
  object-fit: cover;
  object-position: center;
  max-width: 103px;
  min-width: 103px;
  width: 100%;
  height: 96px;
}
@media only screen and (max-width: 480px) {
  .lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a .lf-inner-row .lf-speaker-profile-img {
    max-width: 50px;
    min-width: 50px;
    height: 50px;
  }
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a .lf-inner-row .lf-speaker-details {
  background-color: #24344e;
  width: 100%;
  padding: 16px;
}
@media only screen and (max-width: 480px) {
  .lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a .lf-inner-row .lf-speaker-details {
    padding: 8px;
  }
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a .lf-inner-row .lf-speaker-details .lf-speaker-name {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  text-overflow: ellipsis;
  line-height: 1.25em;
  white-space: nowrap;
  height: 1.25em;
  overflow: hidden;
  margin-bottom: 12px;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a .lf-inner-row .lf-speaker-details .lf-speaker-name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a .lf-inner-row .lf-speaker-details .lf-speaker-name {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a .lf-inner-row .lf-speaker-details .lf-btn-label {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: -0.26px;
  white-space: nowrap;
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--prev-speaker:hover .lf-inner-row .lf-speaker-details, .lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--next-speaker:hover .lf-inner-row .lf-speaker-details {
  background-color: var(--white-color);
}
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--prev-speaker:hover .lf-inner-row .lf-speaker-details .lf-speaker-name,
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--prev-speaker:hover .lf-inner-row .lf-speaker-details .lf-btn-label, .lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--next-speaker:hover .lf-inner-row .lf-speaker-details .lf-speaker-name,
.lf-page--speaker-single-v2 .lf-section--navigation .lf-container .lf-grid a.lf-btn--next-speaker:hover .lf-inner-row .lf-speaker-details .lf-btn-label {
  color: var(--black-color);
}

.lf-page--speaker-single-v3 {
  --speaker-v3-bg: transparent;
  --speaker-v3-panel: rgba(12, 32, 52, 0.9);
  --speaker-v3-line: rgba(255, 255, 255, 0.2);
  --speaker-v3-blue: #00a7ff;
  --speaker-v3-pink: #fc2b6e;
  position: relative;
  background: var(--speaker-v3-bg);
  background-size: 18px 18px;
  color: var(--white-color);
  min-height: 100vh;
  padding: 20px 18px 28px;
  overflow: hidden;
}
.lf-page--speaker-single-v3 .lf-container {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
}
.lf-page--speaker-single-v3 .lf-loading-pane,
.lf-page--speaker-single-v3 .lf-error-pane,
.lf-page--speaker-single-v3 .lf-no-speakers-found-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
  background-color: var(--speaker-v3-panel);
  border: 1px solid var(--speaker-v3-line);
}
.lf-page--speaker-single-v3 .lf-loading-pane .lf-label,
.lf-page--speaker-single-v3 .lf-error-pane .lf-label,
.lf-page--speaker-single-v3 .lf-no-speakers-found-pane .lf-label {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.lf-page--speaker-single-v3 .lf-section--profile {
  padding: 16px 0 18px;
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-row {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v3 .lf-section--profile .lf-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-speaker-profile-img {
  display: block;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  aspect-ratio: 1/1;
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-speaker-full-name {
  color: var(--white-color);
  font-family: var(--custom-fifth-font-family);
  font-size: clamp(34px, 6vw, 54px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
  margin: 26px 0 8px;
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-speaker-title {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-speaker-bio {
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--custom-second-font-family);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
  max-width: 390px;
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-speaker-bio p {
  margin: 0 0 10px;
}
.lf-page--speaker-single-v3 .lf-section--upcoming-shows,
.lf-page--speaker-single-v3 .lf-section--previous-shows {
  padding: 0 0 18px;
}
.lf-page--speaker-single-v3 .lf-section--upcoming-shows h2,
.lf-page--speaker-single-v3 .lf-section--previous-shows h2 {
  color: var(--white-color);
  font-family: var(--custom-fifth-font-family);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.lf-page--speaker-single-v3 .lf-event-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v3 .lf-event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 480px) {
  .lf-page--speaker-single-v3 .lf-event-list {
    grid-template-columns: 1fr;
  }
}
.lf-page--speaker-single-v3 .lf-event-item {
  min-width: 0;
}
.lf-page--speaker-single-v3 .lf-event-link {
  display: block;
  color: var(--white-color);
  text-decoration: none;
}
.lf-page--speaker-single-v3 .lf-event-thumbnail {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 7px;
}
.lf-page--speaker-single-v3 .lf-event-title {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  height: 3.45em;
  overflow: hidden;
}
.lf-page--speaker-single-v3 .lf-event-availability {
  display: inline-block;
  color: var(--white-color);
  background-color: var(--speaker-v3-pink);
  font-family: var(--custom-second-font-family);
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  padding: 5px 7px;
  margin: 6px 0 0;
}
.lf-page--speaker-single-v3 .lf-event-date-duration,
.lf-page--speaker-single-v3 .lf-event-location-wrap {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--custom-second-font-family);
  font-size: 9px;
  line-height: 1.25;
  margin-top: 6px;
}
.lf-page--speaker-single-v3 .lf-event-location-wrap {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.lf-page--speaker-single-v3 .lf-event-location-wrap .lf-svg {
  flex: 0 0 auto;
  width: 7px;
  height: 11px;
  margin-top: 1px;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-container {
  border-top: 4px solid var(--speaker-v3-blue);
  padding-top: 10px;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-shows-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v3 .lf-section--previous-shows .lf-shows-list {
    grid-template-columns: 1fr;
  }
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-shows-item {
  min-width: 0;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-show-thumbnail {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 56px;
  height: 42px;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-show-title {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  height: 2.4em;
  overflow: hidden;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-show-date-duration {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--custom-second-font-family);
  font-size: 9px;
  line-height: 1.25;
  margin-top: 5px;
}
.lf-page--speaker-single-v3 .lf-section--navigation {
  padding-top: 18px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-container {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 640px) {
  .lf-page--speaker-single-v3 .lf-section--navigation .lf-grid {
    grid-template-columns: 1fr;
  }
}
.lf-page--speaker-single-v3 .lf-section--navigation a {
  color: var(--white-color);
  text-decoration: none;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker,
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker {
  min-width: 0;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker .lf-inner-row,
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker .lf-inner-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker .lf-speaker-profile-img,
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker .lf-speaker-profile-img {
  object-fit: cover;
  width: 38px;
  height: 38px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker .lf-speaker-name,
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker .lf-speaker-name {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker .lf-btn-label,
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker .lf-btn-label {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--custom-second-font-family);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 2px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker {
  justify-self: end;
  text-align: right;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--view-all-speakers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ef2968;
  box-shadow: none;
  color: #ffffff;
  font-family: var(--custom-fourth-font-family);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  text-decoration: none;
  min-width: 130px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 0;
  border: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--view-all-speakers .lf-btn-label {
  color: inherit;
  font-family: inherit;
  font-size: 9px;
  font-weight: inherit;
  line-height: inherit;
  text-transform: inherit;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--view-all-speakers:hover, .lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--view-all-speakers:focus-visible {
  background: #ef2968;
  border-color: transparent;
  transform: translate(-3px, -3px);
  box-shadow: 5px 7px 0 0 #000000;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--view-all-speakers:hover .lf-btn-label, .lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--view-all-speakers:focus-visible .lf-btn-label {
  color: #ffffff;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--view-all-speakers:active {
  transform: translate(-1px, -1px);
  box-shadow: 2px 3px 0 0 #000000;
}

.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows h2,
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows h2 {
  font-size: clamp(36px, 3vw, 52px);
  margin-bottom: 28px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows {
  padding-bottom: 54px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 28vw, 420px);
  align-items: start;
  justify-content: start;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list::-webkit-scrollbar {
  display: none;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list.has-1-events, .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list.has-2-events {
  grid-template-columns: none;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item {
  max-width: none;
  width: 100%;
  padding: 0;
  border: 0;
  pointer-events: auto;
  cursor: pointer;
  scroll-snap-align: start;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-link {
  transition: transform 180ms ease;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-link:hover, .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-link:focus-visible {
  transform: translateY(-4px);
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-link:focus-visible {
  outline: 2px solid var(--speaker-v3-yellow);
  outline-offset: 5px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-thumbnail {
  height: auto;
  aspect-ratio: 10/7;
  margin-bottom: 10px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-title {
  font-family: var(--custom-fourth-font-family);
  font-size: clamp(15px, 1.05vw, 19px);
  font-weight: 400;
  line-height: 1.08;
  height: auto;
  overflow: visible;
  text-transform: none;
  margin-bottom: 0;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-featured-event-copy {
  display: none;
  min-height: 142px;
  padding: 20px 22px 18px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item:hover .lf-event-link,
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item:focus-within .lf-event-link {
  background-color: var(--speaker-v3-yellow);
  color: #071b2c;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item:hover .lf-featured-event-copy,
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item:focus-within .lf-featured-event-copy {
  display: block;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item:hover .lf-event-thumbnail,
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item:focus-within .lf-event-thumbnail {
  aspect-ratio: 15/8;
  margin: 0;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item:hover .lf-inner-row,
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item:focus-within .lf-inner-row {
  display: none;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-featured-event-date {
  color: #071b2c;
  font-family: var(--custom-fourth-font-family);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-featured-event-title {
  color: var(--white-color);
  font-family: var(--custom-fourth-font-family);
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 12px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-featured-event-title span {
  display: inline;
  background-color: var(--speaker-v3-pink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 5px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-featured-event-description {
  color: #071b2c;
  font-family: var(--custom-fourth-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows {
  padding-bottom: 54px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-shows-list {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 31vw, 500px);
  justify-content: start;
  gap: 38px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-shows-list::-webkit-scrollbar {
  display: none;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-shows-item {
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  padding-top: 11px;
  scroll-snap-align: start;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-show-session {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--custom-fourth-font-family);
  font-size: 11px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-show-title {
  font-family: var(--custom-fourth-font-family);
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 400;
  line-height: 1.15;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows h2,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows h2 {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows {
    padding-bottom: 34px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list.has-1-events,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list.has-2-events,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list.has-3-events {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 82vw);
    justify-content: start;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    padding-bottom: 3px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list::-webkit-scrollbar,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list.has-1-events::-webkit-scrollbar,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list.has-2-events::-webkit-scrollbar,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-list.has-3-events::-webkit-scrollbar {
    display: none;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item {
    scroll-snap-align: start;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-link,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-link:hover,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-link:focus-visible {
    background-color: var(--speaker-v3-yellow);
    color: #071b2c;
    transform: none;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-featured-event-copy {
    display: block;
    min-height: 0;
    padding: 15px 14px 14px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-featured-event-date {
    font-size: 8px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-featured-event-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-featured-event-description {
    font-size: 10px;
    line-height: 1.3;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-thumbnail,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item:hover .lf-event-thumbnail,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-event-item:focus-within .lf-event-thumbnail {
    aspect-ratio: 15/8;
    margin: 0;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--upcoming-shows .lf-inner-row {
    display: none;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows {
    padding-bottom: 22px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-shows-list {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 72vw;
    gap: 12px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-shows-item {
    padding-top: 7px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-show-session {
    font-size: 7px;
    margin-bottom: 6px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-show-title {
    font-size: 10px;
    line-height: 1.08;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation {
    padding-top: 8px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-container {
    min-height: 0;
    padding: 9px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "previous next" "view-all view-all";
    min-height: 0;
    gap: 9px 12px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker {
    grid-area: previous;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker {
    grid-area: next;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker .lf-inner-row,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker .lf-inner-row {
    gap: 6px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker .lf-speaker-profile-img,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker .lf-speaker-profile-img {
    width: 42px;
    height: 42px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker .lf-speaker-name,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker .lf-speaker-name {
    font-size: 9px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker .lf-btn-label,
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker .lf-btn-label {
    font-size: 7px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--view-all-speakers {
    grid-area: view-all;
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 8px 12px;
  }
  .lf-page--speaker-single-v3.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--view-all-speakers .lf-btn-label {
    font-size: 10px;
  }
}

.lf-page--speaker-single-v3 {
  padding: 34px 52px 42px;
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v3 {
    padding: 28px 20px 36px;
  }
}
.lf-page--speaker-single-v3 .lf-section--profile {
  padding: 0 0 108px;
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-row {
  grid-template-columns: minmax(420px, 720px) minmax(420px, 720px);
  justify-content: center;
  gap: 80px;
}
@media only screen and (max-width: 1180px) {
  .lf-page--speaker-single-v3 .lf-section--profile .lf-row {
    grid-template-columns: minmax(320px, 620px) minmax(320px, 620px);
    gap: 48px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v3 .lf-section--profile .lf-row {
    grid-template-columns: 1fr;
  }
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-speaker-profile-img {
  height: 700px;
  aspect-ratio: auto;
}
@media only screen and (max-width: 1180px) {
  .lf-page--speaker-single-v3 .lf-section--profile .lf-speaker-profile-img {
    height: 560px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v3 .lf-section--profile .lf-speaker-profile-img {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-col:nth-child(2) {
  min-height: 700px;
  padding-top: 70px;
}
@media only screen and (max-width: 1180px) {
  .lf-page--speaker-single-v3 .lf-section--profile .lf-col:nth-child(2) {
    min-height: 560px;
    padding-top: 40px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v3 .lf-section--profile .lf-col:nth-child(2) {
    min-height: 0;
    padding-top: 0;
  }
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-speaker-full-name {
  font-size: clamp(58px, 4.25vw, 88px);
  margin-bottom: 18px;
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-speaker-title {
  font-size: clamp(22px, 1.55vw, 32px);
  max-width: 620px;
  margin-bottom: 50px;
}
.lf-page--speaker-single-v3 .lf-section--profile .lf-speaker-bio {
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.65;
  max-width: 680px;
}
.lf-page--speaker-single-v3 .lf-section--upcoming-shows,
.lf-page--speaker-single-v3 .lf-section--previous-shows {
  padding-bottom: 66px;
}
.lf-page--speaker-single-v3 .lf-section--upcoming-shows h2,
.lf-page--speaker-single-v3 .lf-section--previous-shows h2 {
  font-size: clamp(44px, 3vw, 64px);
  margin-bottom: 38px;
}
.lf-page--speaker-single-v3 .lf-event-list {
  gap: 28px;
}
.lf-page--speaker-single-v3 .lf-event-thumbnail {
  height: 240px;
  aspect-ratio: auto;
  margin-bottom: 14px;
}
@media only screen and (max-width: 1180px) {
  .lf-page--speaker-single-v3 .lf-event-thumbnail {
    height: 190px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--speaker-single-v3 .lf-event-thumbnail {
    height: auto;
    aspect-ratio: 16/9;
  }
}
.lf-page--speaker-single-v3 .lf-event-title {
  font-size: clamp(15px, 1vw, 18px);
}
.lf-page--speaker-single-v3 .lf-event-date-duration,
.lf-page--speaker-single-v3 .lf-event-location-wrap {
  font-size: 13px;
}
.lf-page--speaker-single-v3 .lf-event-availability {
  font-size: 12px;
  padding: 8px 12px;
  margin-top: 10px;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-container {
  border-top: 0;
  padding-top: 0;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-shows-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-row {
  grid-template-columns: 1fr;
  gap: 0;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-col:nth-child(1) {
  display: none;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-show-title {
  font-size: clamp(16px, 1vw, 20px);
  height: auto;
}
.lf-page--speaker-single-v3 .lf-section--previous-shows .lf-show-date-duration {
  font-size: 12px;
  margin: 0 0 8px;
  order: -1;
}
.lf-page--speaker-single-v3 .lf-section--navigation {
  padding-top: 34px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-container {
  min-height: 100px;
  padding: 20px 48px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-grid {
  min-height: 60px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker .lf-speaker-profile-img,
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker .lf-speaker-profile-img {
  width: 66px;
  height: 66px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker .lf-speaker-name,
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker .lf-speaker-name {
  font-size: 20px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--prev-speaker .lf-btn-label,
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--next-speaker .lf-btn-label {
  font-size: 10px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--view-all-speakers {
  min-width: 210px;
  padding: 12px 22px;
}
.lf-page--speaker-single-v3 .lf-section--navigation .lf-btn--view-all-speakers .lf-btn-label {
  font-size: 14px;
}

.lf-page--events .lf-section--event-schedule {
  position: relative;
  padding: 92px 25px 215px;
}
.lf-page--events .lf-section--event-schedule .lf-container {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 107px;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row h1 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 88px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  margin-top: 0;
  margin-bottom: 0;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item {
  position: relative;
  padding: 13px;
  cursor: pointer;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item .lf-filter-label {
  color: #b9c1cc;
  font-family: var(--custom-second-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  text-transform: capitalize;
  line-height: 1.25em;
  user-select: none;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-venue .lf-filter-dropdown {
  position: absolute;
  top: 70px;
  z-index: 99;
  background-color: var(--white-color);
  max-width: 305px;
  min-width: 305px;
  width: 100%;
  height: 400px;
  overflow-y: auto;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-venue .lf-filter-dropdown .lf-filter-dropdown-label {
  color: #3b4859;
  font-feature-settings: "dlig" on;
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  text-overflow: ellipsis;
  line-height: 1.25em;
  overflow: hidden;
  padding: 9px 13px;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-venue .lf-filter-dropdown .lf-filter-dropdown-list {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-venue .lf-filter-dropdown .lf-filter-dropdown-list .lf-filter-dropdown-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  padding: 9px 13px;
  cursor: pointer;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-venue .lf-filter-dropdown .lf-filter-dropdown-list .lf-filter-dropdown-item .lf-input[type=checkbox] {
  accent-color: #051630;
  min-width: 17px;
  width: 17px;
  height: 17px;
  margin: 0;
  padding: 0;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-venue .lf-filter-dropdown .lf-filter-dropdown-list .lf-filter-dropdown-item .lf-label {
  color: #051630;
  font-family: var(--custom-second-font-family);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  text-overflow: ellipsis;
  line-height: 1em;
  white-space: nowrap;
  height: 1em;
  overflow: hidden;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-availability .lf-filter-dropdown {
  position: absolute;
  top: 70px;
  z-index: 99;
  background-color: var(--white-color);
  max-width: 230px;
  min-width: 230px;
  width: 100%;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-availability .lf-filter-dropdown .lf-filter-dropdown-label {
  color: #3b4859;
  font-feature-settings: "dlig" on;
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  text-overflow: ellipsis;
  line-height: 1.25em;
  overflow: hidden;
  padding: 9px 13px;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-availability .lf-filter-dropdown .lf-filter-dropdown-list {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-availability .lf-filter-dropdown .lf-filter-dropdown-list .lf-filter-dropdown-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  padding: 9px 13px;
  cursor: pointer;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-availability .lf-filter-dropdown .lf-filter-dropdown-list .lf-filter-dropdown-item .lf-input[type=checkbox] {
  accent-color: #051630;
  min-width: 17px;
  width: 17px;
  height: 17px;
  margin: 0;
  padding: 0;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-row .lf-col .lf-filter-wrap .lf-filter-item.lf-filter-by-availability .lf-filter-dropdown .lf-filter-dropdown-list .lf-filter-dropdown-item .lf-label {
  color: #051630;
  font-family: var(--custom-second-font-family);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  text-overflow: ellipsis;
  line-height: 1em;
  white-space: nowrap;
  height: 1em;
  overflow: hidden;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 135px;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-date-wrap {
  max-width: 255px;
  width: 100%;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-date-wrap .lf-weekday {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  margin-bottom: 27px;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-date-wrap .lf-date {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
}
.lf-page--events .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}

.lf-page--events-schedule-v2 .lf-section--event-schedule {
  position: relative;
  padding: 90px 25px 100px;
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule {
    padding: 90px 0;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container > h1 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 1.25em;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1440px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container > h1 {
    font-size: 56px;
  }
}
@media only screen and (max-width: 1280px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container > h1 {
    font-size: 52px;
  }
}
@media only screen and (max-width: 1080px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container > h1 {
    font-size: 46px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container > h1 {
    font-size: 42px;
    padding: 0 25px;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container > h1 {
    font-size: 36px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container > h5 {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25em;
  letter-spacing: -0.32px;
  margin-bottom: 60px;
  padding: 16px;
  border-top: 1px solid #4a5971;
  border-bottom: 1px solid #4a5971;
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container > h5 {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container > h5 {
    font-size: 12px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap {
  position: relative;
  width: 100%;
  min-height: 400px;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-loading-state {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100px;
  background: rgba(17, 37, 64, 0.55);
  backdrop-filter: blur(3px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-loading-state.--is-loading {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events {
    padding: 0 25px;
    gap: 60px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event {
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: 75px;
  align-items: flex-start;
}
@media only screen and (max-width: 980px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-date-wrap {
  position: sticky;
  top: 90px;
  max-width: 255px;
  width: 100%;
}
@media only screen and (max-width: 980px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-date-wrap {
    position: relative;
    top: auto;
    max-width: 100%;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-date-wrap .lf-day-count {
  color: #94a3b8;
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25em;
  margin-bottom: 14px;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-date-wrap .lf-weekday {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 18px;
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-date-wrap .lf-weekday {
    font-size: 42px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-date-wrap .lf-date {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-date-wrap .lf-date {
    font-size: 24px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-location-groups {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-location-groups .lf-location-group {
  width: 100%;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-location-groups .lf-location-group .lf-location-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #4a5971;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-location-groups .lf-location-group .lf-location-heading .lf-location-name {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-location-groups .lf-location-group .lf-location-heading .lf-location-name {
    font-size: 26px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-grouped-events .lf-day-event .lf-location-groups .lf-location-group .lf-location-heading .lf-location-count {
  color: #94a3b8;
  font-family: var(--custom-second-font-family);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25em;
  white-space: nowrap;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-height: min(760px, 100vh - 260px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0;
  padding-right: 8px;
  text-decoration: none;
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item {
  --event-color: var(--primary-color);
  position: relative;
  text-decoration: none;
  background-color: #1e2736;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 2px solid #404f64;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item .lf-event-color-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: var(--event-color);
  z-index: 2;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row {
  display: grid;
  grid-template-columns: 135px 1fr 200px;
  gap: 36px;
  align-items: flex-start;
  padding: 32px 37px 32px 45px;
}
@media only screen and (max-width: 1080px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row {
    grid-template-columns: 125px 1fr 160px;
    gap: 30px;
    padding: 28px 30px 28px 42px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 25px 27px 25px 35px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-time-col {
  width: 100%;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-time-col .lf-event-time {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1em;
  white-space: nowrap;
}
@media only screen and (max-width: 1080px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-time-col .lf-event-time {
    font-size: 25px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-time-col .lf-event-time {
    font-size: 24px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-time-col .lf-event-duration {
  color: #94a3b8;
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25em;
  margin-top: 7px;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col {
  width: 100%;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col .lf-event-title {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  text-overflow: ellipsis;
  text-transform: capitalize;
  line-height: 1.25em;
  display: block;
  max-height: 2.5em;
  min-height: 2.5em;
  height: auto;
  overflow: hidden;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1080px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col .lf-event-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col .lf-event-title {
    font-size: 24px;
    max-height: 3.75em;
    min-height: 1.25em;
    margin-bottom: 11px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col .lf-event-speaker-list {
  color: #94a3b8;
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.25em;
  min-height: 1.25em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1080px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col .lf-event-speaker-list {
    font-size: 15px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col .lf-event-speaker-list {
    font-size: 13px;
    margin-bottom: 28px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col .lf-event-location-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 16px;
  border: 1px solid #5e6d86;
  border-radius: 39px;
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col .lf-event-location-wrap {
    gap: 5px;
    padding: 8px 10px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col .lf-event-location-wrap .lf-event-location-text {
  color: #94a3b8;
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.25em;
  white-space: nowrap;
}
@media only screen and (max-width: 1080px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col .lf-event-location-wrap .lf-event-location-text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-content-col .lf-event-location-wrap .lf-event-location-text {
    font-size: 13px;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-action-col {
  max-width: 200px;
  width: 100%;
}
@media only screen and (max-width: 1080px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-action-col {
    max-width: 160px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-action-col {
    max-width: 100%;
  }
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-action-col .lf-btn--buy-now {
  --btn-text-color: #07162f;
  --btn-background-color: var(--primary-color);
  --btn-border-color: var(--primary-color);
  --btn-hover-text-color: #07162f;
  --btn-hover-background-color: #d1bb2f;
  --btn-hover-border-color: #d1bb2f;
  pointer-events: auto;
  cursor: pointer;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item > .lf-row .lf-event-action-col .lf-btn--sold-out {
  --btn-text-color: #6d6a55;
  --btn-background-color: #fffbde;
  --btn-border-color: #fffbde;
  --btn-hover-text-color: #6d6a55;
  --btn-hover-background-color: #fffbde;
  --btn-hover-border-color: #fffbde;
  pointer-events: none;
  cursor: default;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-event-list .lf-event-item.--sold-out {
  background-image: url("../assets/event-sold-out-backdrop_v01-439x232.png");
  background-position: center;
  background-repeat: no-repeat;
  background-color: #181f2d;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-no-events-found {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25em;
  letter-spacing: -0.32px;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 400px;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar {
  position: sticky;
  z-index: 5;
  top: 55px;
  background-color: #112540;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-day-tab-list {
  display: flex;
  align-items: stretch;
  gap: 72px;
  overflow-x: auto;
  border-bottom: 1px solid #4a5971;
  margin-bottom: 32px;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-day-tab-list .lf-day-tab-item {
  padding: 0 0 22px;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  opacity: 0.45;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-day-tab-list .lf-day-tab-item.--selected-day {
  opacity: 1;
  border-color: var(--white-color);
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-day-tab-list .lf-day-tab-item .lf-day-count {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-day-tab-list .lf-day-tab-item .lf-day-date {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 28px;
  font-weight: 400;
  white-space: nowrap;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-event-venue-list {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-event-venue-list .lf-event-venue-item {
  --venue-color: #5e6d86;
  width: fit-content;
  height: 52px;
  padding: 5px;
  border: 3px solid var(--venue-color);
  border-radius: 999px;
  cursor: pointer;
  flex: 0 0 auto;
  overflow: hidden;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-event-venue-list .lf-event-venue-item > .lf-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-event-venue-list .lf-event-venue-item > .lf-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--venue-color);
  border-radius: inherit;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 0;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-event-venue-list .lf-event-venue-item > .lf-row > * {
  position: relative;
  z-index: 1;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-event-venue-list .lf-event-venue-item .lf-event-venue-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--venue-color);
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-event-venue-list .lf-event-venue-item .lf-event-venue-name {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 14px;
}
.lf-page--events-schedule-v2 .lf-section--event-schedule .lf-container .lf-event-wrap .lf-primary-toolbar .lf-event-venue-list .lf-event-venue-item.--selected-venue > .lf-row::before {
  transform: translateX(0);
}

.lf-page--events-schedule-v3 {
  --schedule-bg: transparent;
  --schedule-line: rgba(255, 255, 255, 0.45);
  min-height: 100vh;
  color: #fff;
}
.lf-page--events-schedule-v3 .lf-section--event-schedule {
  padding: 52px 11px 90px;
}
.lf-page--events-schedule-v3 .lf-container {
  width: min(100%, 1420px);
  margin: 0 auto;
}
.lf-page--events-schedule-v3 h1 {
  margin: 0 0 66px;
  color: #fff;
  font-family: "CS Adley Stamp", serif;
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.lf-page--events-schedule-v3 > .lf-section .lf-container > h5 {
  display: none;
}
.lf-page--events-schedule-v3 .lf-golden-ticket {
  position: relative;
  display: grid;
  grid-template-columns: clamp(160px, 20.2vw, 286.6px) minmax(0, 1fr) clamp(176px, 22.5vw, 320px);
  align-items: center;
  width: min(100%, 1420px);
  height: 176px;
  margin: 0 auto 58px;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.08));
}
.lf-page--events-schedule-v3 .lf-golden-ticket img {
  display: block;
  width: 100%;
  height: 176px;
  padding: 24px 28px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(90deg, #2498a7 0%, #9cca91 100%);
  object-fit: contain;
  object-position: center;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(8px, 1.4vw, 20px);
  align-self: stretch;
  min-width: 0;
  padding: 20px clamp(12px, 1.7vw, 24px);
  background: linear-gradient(90deg, #a4ce91 0%, #ecec76 29%, #fee45f 53%, #ffae67 77%, #ff716b 100%);
  color: #10243b;
  text-align: center;
  text-transform: uppercase;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy strong {
  flex: 0 1 auto;
  min-width: 0;
  color: #E02861;
  font-family: "CS Adley Stamp", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  white-space: nowrap;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy small {
  display: flex;
  width: 278px;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  color: #000;
  text-align: center;
  font-family: "Special Elite", serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy::before, .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy::after,
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy + .lf-ticket-buy::before, .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy + .lf-ticket-buy::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #102b41;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy::before, .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy + .lf-ticket-buy::before {
  top: -5px;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy::after, .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy + .lf-ticket-buy::after {
  bottom: -5px;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 20px 11px;
  border-radius: 0 3px 3px 0;
  background: #f32d61;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy::before, .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy::after {
  left: -5px;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy b {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 273px);
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #FFF;
  text-align: center;
  font-family: "CS Adley Stamp", serif;
  font-size: clamp(14px, 1.5vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy .lf-ticket-buy-desktop {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 273/58;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy .lf-ticket-buy-desktop svg {
  display: block;
  width: 100%;
  height: 100%;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy .lf-ticket-buy-desktop .lf-ticket-buy-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  pointer-events: none;
}
.lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy .lf-ticket-buy-mobile {
  display: none;
}
.lf-page--events-schedule-v3 .lf-golden-ticket:hover {
  filter: brightness(1.035) drop-shadow(0 4px 9px rgba(0, 0, 0, 0.14));
}
.lf-page--events-schedule-v3 .lf-golden-ticket:focus-visible {
  outline: 2px solid #fee960;
  outline-offset: 4px;
}
.lf-page--events-schedule-v3 .lf-loading-state {
  display: none;
  min-height: 360px;
  place-items: center;
}
.lf-page--events-schedule-v3 .lf-loading-state.--is-loading {
  display: grid;
}
.lf-page--events-schedule-v3 .lf-schedule-toolbar {
  display: grid;
  grid-template-columns: auto 180px 180px 1fr minmax(280px, 360px);
  align-items: center;
  gap: 24px;
  min-height: 160px;
  margin-bottom: 34px;
  padding: 40px 0;
  border-bottom: 1px solid var(--schedule-line);
}
.lf-page--events-schedule-v3 .lf-filter-label {
  color: #fff;
  font: 400 12px/1 "Special Elite", serif;
  text-transform: uppercase;
  white-space: nowrap;
}
.lf-page--events-schedule-v3 .lf-filter-select {
  position: relative;
  display: block;
  min-width: 0;
}
.lf-page--events-schedule-v3 .lf-filter-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.lf-page--events-schedule-v3 .lf-filter-select select {
  width: 100%;
  height: 40px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 0;
  appearance: none;
  background: #239bb3;
  color: #fff;
  font: 400 11px/1 "Special Elite", serif;
  cursor: pointer;
}
.lf-page--events-schedule-v3 .lf-filter-select option {
  background: #112540;
  color: #fff;
}
.lf-page--events-schedule-v3 .lf-event-search {
  grid-column: 5;
  display: flex;
  align-items: center;
  min-width: 0;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: #239bb3;
  color: #fff;
}
.lf-page--events-schedule-v3 .lf-event-search svg {
  flex: 0 0 auto;
  margin-right: 10px;
}
.lf-page--events-schedule-v3 .lf-event-search input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 400 11px/1 "Special Elite", serif;
}
.lf-page--events-schedule-v3 .lf-event-search input::placeholder {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}
.lf-page--events-schedule-v3 .lf-event-search input::-webkit-search-cancel-button {
  filter: invert(1);
}
.lf-page--events-schedule-v3 .lf-schedule-days {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-top: 1px solid var(--schedule-line);
  border-left: 1px solid var(--schedule-line);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.55) transparent;
  -webkit-overflow-scrolling: touch;
}
.lf-page--events-schedule-v3 .lf-schedule-days button {
  flex: 1 0 25%;
  min-width: 230px;
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  border-right: 1px solid var(--schedule-line);
  background: transparent;
  color: #fff;
  text-align: center;
  font: 400 11px/1 "Special Elite", serif;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.lf-page--events-schedule-v3 .lf-schedule-days button.is-active {
  background: #fff;
  color: #E02861;
}
.lf-page--events-schedule-v3 .lf-schedule-days button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid #fee960;
  outline-offset: -3px;
}
.lf-page--events-schedule-v3 .lf-event-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--schedule-line);
  border-left: 1px solid var(--schedule-line);
}
.lf-page--events-schedule-v3 .lf-event-item {
  width: auto;
  max-width: none;
  min-width: 0;
  padding: 0;
  border: 0;
  border-right: 1px solid var(--schedule-line);
  border-bottom: 1px solid var(--schedule-line);
  background: rgba(7, 27, 44, 0.16);
  pointer-events: auto;
  cursor: pointer;
}
.lf-page--events-schedule-v3 .lf-event-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px 16px 20px;
  color: #fff;
  text-decoration: none;
  outline: 3px solid transparent;
  outline-offset: -3px;
  transition: background-color 180ms ease, outline-color 180ms ease;
}
.lf-page--events-schedule-v3 .lf-event-card-link:hover, .lf-page--events-schedule-v3 .lf-event-card-link:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  outline-color: #8748ff;
}
.lf-page--events-schedule-v3 .lf-event-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 12px;
  font: 400 9px/1.15 "Special Elite", serif;
  text-transform: uppercase;
}
.lf-page--events-schedule-v3 .lf-event-meta-row time {
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: nowrap;
}
.lf-page--events-schedule-v3 .lf-venue-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 62%;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  white-space: nowrap;
}
.lf-page--events-schedule-v3 .lf-venue-tag svg {
  flex: 0 0 auto;
}
.lf-page--events-schedule-v3 .lf-venue-tag span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.lf-page--events-schedule-v3 .lf-event-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
  background: #d8d8d8;
  overflow: hidden;
}
.lf-page--events-schedule-v3 .lf-event-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lf-page--events-schedule-v3 .lf-event-image-wrap img.is-placeholder {
  padding: 22px;
  object-fit: contain;
}
.lf-page--events-schedule-v3 .lf-event-image-wrap .lf-sold-out {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(16, 36, 59, 0.72);
  color: #fee960;
  font: 400 28px/1 "CS Adley Stamp", serif;
  text-transform: uppercase;
}
.lf-page--events-schedule-v3 .lf-event-item h2 {
  margin: 0 0 22px;
  color: #fff;
  font-family: "Special Elite", serif;
  font-size: clamp(17px, 1.35vw, 23px);
  font-weight: 400;
  line-height: 1.08;
}
.lf-page--events-schedule-v3 .lf-event-speakers {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: #fff;
  font: 400 9px/1.25 "Special Elite", serif;
}
.lf-page--events-schedule-v3 .lf-speaker-avatars {
  display: flex;
  flex: 0 0 auto;
  padding-left: 6px;
}
.lf-page--events-schedule-v3 .lf-speaker-avatar {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-left: -6px;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #239bb3;
  color: #fff;
  font: 400 7px/1 "Special Elite", serif;
}
.lf-page--events-schedule-v3 .lf-speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lf-page--events-schedule-v3 .lf-speaker-names {
  min-width: 0;
}
.lf-page--events-schedule-v3 .lf-card-footer {
  display: none;
}
.lf-page--events-schedule-v3 .lf-no-events-found {
  padding: 90px 20px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 1200px) {
  .lf-page--events-schedule-v3 .lf-golden-ticket {
    grid-template-columns: minmax(120px, 22%) minmax(0, 1fr) minmax(130px, 22%);
    height: clamp(112px, 12.5vw, 150px);
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket img {
    height: 100%;
    padding: clamp(14px, 2vw, 24px);
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy {
    gap: clamp(6px, 1vw, 12px);
    padding: 14px clamp(10px, 1.5vw, 18px);
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy strong {
    font-size: clamp(30px, 4.7vw, 56px);
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy small {
    width: auto;
    flex: 1 1 auto;
    font-size: clamp(10px, 1.35vw, 16px);
    line-height: 1.08;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy {
    padding: 14px 10px;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy b {
    font-size: clamp(12px, 1.5vw, 18px);
  }
}
@media only screen and (max-width: 1080px) {
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy small {
    width: auto;
    flex-basis: auto;
  }
  .lf-page--events-schedule-v3 .lf-event-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lf-page--events-schedule-v3 .lf-schedule-toolbar {
    grid-template-columns: auto minmax(140px, 1fr) minmax(140px, 1fr) minmax(220px, 1.5fr);
  }
  .lf-page--events-schedule-v3 .lf-event-search {
    grid-column: 4;
  }
}
@media only screen and (max-width: 780px) {
  .lf-page--events-schedule-v3 .lf-section--event-schedule {
    padding: 32px 11px 60px;
  }
  .lf-page--events-schedule-v3 h1 {
    margin-bottom: 34px;
    font-size: clamp(31px, 9vw, 48px);
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket {
    grid-template-columns: minmax(96px, 24%) minmax(0, 1fr) minmax(105px, 25%);
    height: 118px;
    margin-bottom: 32px;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    text-align: left;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy strong {
    font-size: clamp(27px, 5.2vw, 40px);
    line-height: 0.92;
    white-space: normal;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy small {
    flex: 0 1 auto;
    align-self: auto;
    font-size: clamp(9px, 1.8vw, 12px);
    text-align: left;
  }
  .lf-page--events-schedule-v3 .lf-schedule-toolbar {
    grid-template-columns: auto 1fr 1fr;
    gap: 12px;
    min-height: 0;
    padding: 28px 0;
  }
  .lf-page--events-schedule-v3 .lf-event-search {
    grid-column: 1/-1;
  }
  .lf-page--events-schedule-v3 .lf-schedule-days button {
    flex-basis: 42%;
    min-width: 190px;
  }
  .lf-page--events-schedule-v3 .lf-event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 520px) {
  .lf-page--events-schedule-v3 .lf-section--event-schedule {
    padding-inline: 8px;
  }
  .lf-page--events-schedule-v3 h1 {
    margin-bottom: 24px;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    width: calc(100% - 24px);
    max-width: 430px;
    height: auto;
    margin: 0 auto 28px;
    filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.28));
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.98/1;
    padding: 28px 24px;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(180deg, #2999a7 0%, #4fa8a4 56%, #d6dd67 100%);
    object-fit: contain;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    min-height: 0;
    padding: 28px 26px 32px;
    border-top: 2px dashed #10243b;
    border-bottom: 2px dashed #10243b;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff45e 0%, #ffd75e 44%, #ff936f 100%);
    text-align: left;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy strong {
    font-size: clamp(32px, 12vw, 54px);
    line-height: 0.9;
    white-space: normal;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy small {
    display: block;
    width: 100%;
    font-size: clamp(13px, 4.5vw, 20px);
    line-height: 1.18;
    text-align: left;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy::before,
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy::after,
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy + .lf-ticket-buy::before,
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-copy + .lf-ticket-buy::after {
    display: none;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy {
    padding: 26px 18px 22px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(180deg, #ff6b6c 0%, #f52b69 100%);
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
    min-height: 48px;
    padding: 11px 12px;
    border: 0;
    background: #f52b69;
    box-shadow: 4px 5px 0 #000000;
    color: #fff;
    font-size: clamp(13px, 5vw, 20px);
    line-height: 1.1;
    white-space: normal;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy b::before,
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy b::after {
    display: none;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy .lf-ticket-buy-desktop {
    display: none;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy .lf-ticket-buy-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    color: #fff;
    text-align: left;
  }
  .lf-page--events-schedule-v3 .lf-golden-ticket .lf-ticket-buy .lf-ticket-buy-mobile i {
    font-family: Arial, sans-serif;
    font-size: 1.25em;
    font-style: normal;
    line-height: 0.8;
  }
  .lf-page--events-schedule-v3 .lf-schedule-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
    padding: 20px 0;
  }
  .lf-page--events-schedule-v3 .lf-filter-label, .lf-page--events-schedule-v3 .lf-event-search {
    grid-column: 1;
  }
  .lf-page--events-schedule-v3 .lf-filter-select select, .lf-page--events-schedule-v3 .lf-event-search {
    height: 38px;
  }
  .lf-page--events-schedule-v3 .lf-filter-label {
    font-size: 8px;
  }
  .lf-page--events-schedule-v3 .lf-schedule-days button {
    flex-basis: 72%;
    min-width: 170px;
    min-height: 44px;
    font-size: 9px;
  }
  .lf-page--events-schedule-v3 .lf-event-list {
    grid-template-columns: 1fr;
  }
  .lf-page--events-schedule-v3 .lf-event-card-link {
    padding: 10px;
  }
  .lf-page--events-schedule-v3 .lf-event-meta-row {
    margin-bottom: 8px;
    font-size: 8px;
  }
  .lf-page--events-schedule-v3 .lf-venue-tag {
    padding: 5px 6px;
  }
  .lf-page--events-schedule-v3 .lf-event-image-wrap {
    margin-bottom: 12px;
  }
  .lf-page--events-schedule-v3 .lf-event-item h2 {
    font-size: 21px;
  }
  .lf-page--events-schedule-v3 .lf-event-speakers {
    margin-bottom: 12px;
    font-size: 11px;
  }
}

.lf-page--golden-ticket {
  --pass-navy: #071c38;
  --pass-teal: #1596a9;
  --pass-yellow: #fee960;
  --pass-pink: #f52d70;
  color: var(--white-color);
}
.lf-page--golden-ticket .lf-section--golden-ticket-product {
  position: relative;
  padding: 34px 20px 52px;
}
.lf-page--golden-ticket .lf-section--golden-ticket-product .lf-container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.lf-page--golden-ticket .lf-section--golden-ticket-product .isloadingPage {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}
.lf-page--golden-ticket .lf-pass-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
}
.lf-page--golden-ticket .lf-pass-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 30px 26px;
}
.lf-page--golden-ticket .lf-pass-intro-copy h1 {
  color: var(--white-color);
  font-family: var(--custom-fifth-font-family);
  font-size: clamp(35px, 3.2vw, 54px);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.lf-page--golden-ticket .lf-pass-intro-copy h5 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  color: var(--white-color);
  font-family: var(--custom-fourth-font-family);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.lf-page--golden-ticket .lf-pass-description {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--custom-fourth-font-family);
  font-size: 11px;
  line-height: 1.48;
  margin-bottom: 22px;
}
.lf-page--golden-ticket .lf-pass-description p {
  margin: 0 0 9px;
}
.lf-page--golden-ticket .lf-btn--register {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 273px;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 273/58;
  background: transparent;
  color: var(--white-color);
  font-family: var(--custom-fourth-font-family);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.lf-page--golden-ticket .lf-btn--register:hover, .lf-page--golden-ticket .lf-btn--register:focus-visible {
  background: transparent;
  color: var(--white-color);
  box-shadow: none;
}
.lf-page--golden-ticket .lf-btn--register .lf-register-ticket-shape {
  display: block;
  width: 100%;
  height: 100%;
}
.lf-page--golden-ticket .lf-btn--register .lf-register-ticket-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.lf-page--golden-ticket .lf-pass-intro-media {
  min-width: 0;
  background-color: #3aa1b8;
}
.lf-page--golden-ticket .lf-pass-intro-media .lf-golden-ticket-img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
}
.lf-page--golden-ticket .lf-pass-purchase {
  background: linear-gradient(rgba(5, 130, 150, 0.12), rgba(5, 130, 150, 0.12)), url("./assets/SpeakersGrid.webp") center/cover no-repeat, var(--pass-teal);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 38px;
  padding: 38px 36px 58px;
  scroll-margin-top: 30px;
}
.lf-page--golden-ticket .lf-pass-purchase > h2 {
  color: var(--white-color);
  font-family: var(--custom-fifth-font-family);
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 36px;
}
.lf-page--golden-ticket .lf-pass-purchase-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  align-items: stretch;
}
.lf-page--golden-ticket .lf-pass-order-card {
  background-color: var(--pass-yellow);
  color: var(--pass-navy);
  padding: 38px 38px 34px;
}
.lf-page--golden-ticket .lf-pass-order-card h3 {
  color: inherit;
  font-family: var(--custom-fourth-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 6px;
}
.lf-page--golden-ticket .lf-pass-price {
  font-family: var(--custom-fourth-font-family);
  font-size: 30px;
  line-height: 1;
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(7, 28, 56, 0.72);
  margin-bottom: 25px;
}
.lf-page--golden-ticket .lf-pass-quantity-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: var(--custom-fourth-font-family);
  font-size: 11px;
  margin-bottom: 21px;
}
.lf-page--golden-ticket .lf-pass-quantity-control {
  display: grid;
  grid-template-columns: repeat(3, 26px);
  align-items: center;
  text-align: center;
}
.lf-page--golden-ticket .lf-pass-quantity-control button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: transparent;
  color: var(--pass-navy);
  border: 1px solid rgba(7, 28, 56, 0.2);
  cursor: pointer;
}
.lf-page--golden-ticket .lf-btn--add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: 38px;
  background-color: var(--pass-pink);
  color: var(--white-color);
  padding: 8px 12px;
  border: 0;
  box-shadow: 3px 4px 0 #071c38;
  margin: 0 0 23px;
}
.lf-page--golden-ticket .lf-btn--add-to-cart .lf-btn-label {
  color: inherit;
  font-family: var(--custom-fourth-font-family);
  font-size: 12px;
  text-transform: uppercase;
}
.lf-page--golden-ticket .lf-btn--add-to-cart:hover, .lf-page--golden-ticket .lf-btn--add-to-cart:focus-visible {
  background-color: var(--pass-pink);
  color: var(--white-color);
  transform: translateY(-2px);
}
.lf-page--golden-ticket .lf-pass-assurance {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--pass-navy);
  font-family: var(--custom-fourth-font-family);
  font-size: 9px;
  line-height: 1.3;
}
.lf-page--golden-ticket .lf-pass-assurance svg {
  flex: 0 0 auto;
}
.lf-page--golden-ticket .lf-pass-details {
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.lf-page--golden-ticket .lf-pass-detail-row {
  display: block;
  min-height: 73px;
  padding: 15px 14px;
}
.lf-page--golden-ticket .lf-pass-detail-row + .lf-pass-detail-row {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}
.lf-page--golden-ticket .lf-pass-detail-row h3 {
  color: var(--white-color);
  font-family: var(--custom-fifth-font-family);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: none;
  padding: 0;
  margin: 0 0 9px;
}
.lf-page--golden-ticket .lf-time-and-location-value,
.lf-page--golden-ticket .lf-about-value {
  color: var(--white-color);
  font-family: var(--custom-fourth-font-family);
  font-size: 10px;
  line-height: 1.45;
  text-align: left;
  max-width: none;
  margin: 0;
  padding: 0;
}
.lf-page--golden-ticket .lf-time-and-location-value span,
.lf-page--golden-ticket .lf-about-value span {
  display: inline-block;
  margin: 0 10px;
}
.lf-page--golden-ticket .lf-about-value * {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.lf-page--golden-ticket .lf-about-value p {
  margin: 0 0 8px;
}
.lf-page--golden-ticket .lf-about-value ul,
.lf-page--golden-ticket .lf-about-value ol {
  padding-left: 18px;
  margin: 0;
}
.lf-page--golden-ticket .lf-about-value ul li,
.lf-page--golden-ticket .lf-about-value ol li {
  padding-left: 4px;
  margin-bottom: 9px;
}
.lf-page--golden-ticket .lf-no-pass {
  min-height: 50vh;
  display: grid;
  place-items: center;
  font-family: var(--custom-fourth-font-family);
}
@media only screen and (max-width: 749px) {
  .lf-page--golden-ticket .lf-section--golden-ticket-product {
    padding: 24px 16px 36px;
  }
  .lf-page--golden-ticket .lf-pass-intro {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .lf-page--golden-ticket .lf-pass-intro-copy {
    padding: 26px 20px;
  }
  .lf-page--golden-ticket .lf-pass-intro-copy h1 {
    font-size: 40px;
  }
  .lf-page--golden-ticket .lf-pass-intro-media {
    aspect-ratio: 1.12/1;
  }
  .lf-page--golden-ticket .lf-pass-purchase {
    margin-top: 26px;
    padding: 24px 16px;
  }
  .lf-page--golden-ticket .lf-pass-purchase-grid {
    grid-template-columns: 1fr;
  }
  .lf-page--golden-ticket .lf-pass-order-card {
    padding: 24px 20px;
  }
  .lf-page--golden-ticket .lf-pass-details {
    border-top: 0;
  }
  .lf-page--golden-ticket .lf-pass-detail-row {
    padding: 14px 16px;
  }
  .lf-page--golden-ticket .lf-pass-detail-row h3 {
    padding: 0;
  }
  .lf-page--golden-ticket .lf-time-and-location-value,
  .lf-page--golden-ticket .lf-about-value {
    padding: 0;
  }
}

.lf-page--policies .lf-section--content {
  background-color: #112540;
  padding: 65px 25px 100px;
  min-height: 100vh;
}
.lf-page--policies .lf-section--content .lf-container {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
.lf-page--policies .lf-section--content .lf-container * {
  color: #fff;
  font-family: var(--custom-second-font-family);
}
.lf-page--policies .lf-section--content .lf-container h1 {
  text-align: center;
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 42px;
  font-family: var(--custom-first-font-family);
}
.lf-page--policies .lf-section--content .lf-container h1 span {
  font-family: var(--custom-first-font-family);
}
.lf-page--policies .lf-section--content .lf-container p {
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 24px;
}
.lf-page--policies .lf-section--content .lf-container ul,
.lf-page--policies .lf-section--content .lf-container ol {
  margin: 0 0 24px 22px;
  padding: 0;
}
.lf-page--policies .lf-section--content .lf-container li {
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
}
.lf-page--policies .lf-section--content .lf-container strong,
.lf-page--policies .lf-section--content .lf-container b {
  font-weight: 700;
}

.lf-product--event-single-v1 {
  background-color: #112540;
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 {
  position: relative;
  padding: 95px 25px 75px;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-01 {
    padding: 40px 25px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 130px;
}
@media only screen and (max-width: 1440px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row {
    gap: 100px;
  }
}
@media only screen and (max-width: 1280px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row {
    gap: 60px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row {
    flex-direction: column-reverse;
    gap: 25px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) {
  max-width: 430px;
  min-width: 430px;
  width: 100%;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) {
    max-width: 100%;
    min-width: unset;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-date {
  color: var(--secondary-color);
  font-family: var(--custom-second-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3em;
  white-space: nowrap;
  position: relative;
  margin: 44px 0 16px;
  padding-left: 50px;
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  display: block;
  background-color: var(--secondary-color);
  width: 40px;
  height: 1px;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-date {
    font-size: 14px;
    margin: 0 0 16px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-title {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3em;
  max-height: 3.9em;
  min-height: 1.3em;
  height: auto;
  overflow: hidden;
  margin-bottom: 56px;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-description {
  color: var(--white-color);
  font-family: var(--custom-third-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3em;
  margin-bottom: 100px;
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-inner-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 480px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-inner-row {
    flex-wrap: wrap;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-inner-row .lf-btn--buy-now {
  --btn-text-color: #07162f;
  --btn-background-color: var(--primary-color);
  --btn-border-color: var(--primary-color);
  --btn-hover-text-color: #07162f;
  --btn-hover-background-color: #d1bb2f;
  --btn-hover-border-color: #d1bb2f;
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-inner-row .lf-btn--add-to-cart {
  --btn-text-color: #fee960;
  --btn-background-color: transparent;
  --btn-border-color: #fee960;
  --btn-hover-text-color: #07162f;
  --btn-hover-background-color: #fee960;
  --btn-hover-border-color: #fee960;
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(2) {
  max-width: 50%;
  width: 100%;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(2) {
    max-width: 100%;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-01 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-event-featured-img {
  display: block;
  width: 100%;
  height: auto;
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 {
  position: relative;
  padding: 0 25px;
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 43px 0 230px;
  border-top: 1px solid #4a5971;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container {
    padding: 32px 0 102px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 130px;
}
@media only screen and (max-width: 1440px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row {
    gap: 100px;
  }
}
@media only screen and (max-width: 1280px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row {
    gap: 60px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row {
    flex-direction: column;
    gap: 45px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) {
  position: sticky;
  top: 105px;
  max-width: 430px;
  width: 100%;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) {
    position: relative;
    top: unset;
    max-width: 100%;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) > h5 {
  color: var(--secondary-color);
  font-family: var(--custom-second-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3em;
  margin-bottom: 40px;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) > h5 {
    margin: 0 0 25px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px;
  }
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 480px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item {
    width: 100%;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-svg {
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-svg {
    width: 18px;
    height: 18px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col > h3 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  margin: 0 0 16px;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col > h3 {
    font-size: 16px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col > p {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3em;
  margin: 0;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col > p {
    font-size: 12px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col .lf-variant-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin: 0 0 24px;
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col .lf-variant-list .lf-variant-btn {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 62px;
  padding: 18px 20px;
  background: #1c2f4a;
  border: 1px solid #4a5971;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col .lf-variant-list .lf-variant-btn {
    min-height: 54px;
    padding: 14px 16px;
    font-size: 14px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col .lf-variant-list .lf-variant-btn:hover {
  border-color: var(--primary-color);
  background: rgba(254, 233, 96, 0.08);
  transform: translateY(-1px);
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col .lf-variant-list .lf-variant-btn.--active {
  color: #07162f;
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(254, 233, 96, 0.18);
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col .lf-variant-list .lf-variant-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.04);
  border-color: #4a5971;
  transform: none;
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col .lf-btn--buy-now {
  --btn-text-color: #07162f;
  --btn-background-color: var(--primary-color);
  --btn-border-color: var(--primary-color);
  --btn-hover-text-color: #07162f;
  --btn-hover-background-color: #d1bb2f;
  --btn-hover-border-color: #d1bb2f;
  width: 100%;
  margin-top: 8px;
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(1) .lf-event-details-list .lf-event-details-item .lf-inner-row .lf-inner-col .lf-btn--buy-now:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) {
  width: 100%;
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .p-01 {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3em;
  margin: 0 0 52px;
  padding: 13px 0 13px 40px;
  border-left: 1px solid var(--secondary-color);
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .p-01 {
    font-size: 23px;
    margin: 0 0 32px;
    padding: 9px 0 9px 22px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .p-01 {
    font-size: 18px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .p-02 {
  color: var(--white-color);
  font-family: var(--custom-third-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3em;
  margin: 0;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .p-02 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .p-02 {
    font-size: 14px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-row > h3 {
  color: var(--secondary-color);
  font-family: var(--custom-first-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  margin: 0;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-row > h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-row > h3 {
    font-size: 24px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-row .lf-speaker-count {
  color: #cfcfcf;
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3em;
  white-space: nowrap;
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-speaker-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-speaker-list > .lf-speaker-item {
  background-color: transparent;
  box-shadow: unset;
  max-width: 100%;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid #4a5971;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-speaker-list > .lf-speaker-item {
    padding: 19px 0;
  }
}
@media only screen and (max-width: 480px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-speaker-list > .lf-speaker-item {
    padding: 16px 0;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-speaker-list > .lf-speaker-item .lf-speaker-link .lf-speaker-full-name {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25em;
  margin-bottom: 16px;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-speaker-list > .lf-speaker-item .lf-speaker-link .lf-speaker-full-name {
    font-size: 23px;
    margin-bottom: 13px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-speaker-list > .lf-speaker-item .lf-speaker-link .lf-speaker-full-name {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-speaker-list > .lf-speaker-item .lf-speaker-link .lf-speaker-title {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3em;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-speaker-list > .lf-speaker-item .lf-speaker-link .lf-speaker-title {
    font-size: 14px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-speakers-wrap > .lf-speaker-list > .lf-speaker-item .lf-speaker-link .lf-speaker-title {
    font-size: 13px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap {
  background-color: #24344e;
  width: 100%;
  margin-top: 115px;
  padding: 52px 48px;
  border-radius: 10px;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap {
    margin-top: 77px;
    padding: 27px 25px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap {
    margin-top: 40px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap > .lf-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px 16px;
}
@media only screen and (max-width: 1280px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap > .lf-row {
    flex-direction: column;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap > .lf-row > .lf-col > h3 {
  color: var(--white-color);
  font-family: var(--custom-first-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  margin: 0 0 16px;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap > .lf-row > .lf-col > h3 {
    font-size: 28px;
    margin: 0 0 13px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap > .lf-row > .lf-col > h3 {
    font-size: 24px;
    margin: 0 0 8px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap > .lf-row > .lf-col > p {
  color: var(--white-color);
  font-family: var(--custom-second-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3em;
  margin: 0;
}
@media only screen and (max-width: 749px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap > .lf-row > .lf-col > p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap > .lf-row > .lf-col > p {
    font-size: 14px;
  }
}
.lf-product--event-single-v1 .lf-section--product-event-section-02 .lf-container > .lf-row > .lf-col:nth-child(2) .lf-buy-ticket-now-wrap > .lf-row .lf-btn--buy-ticket-now {
  --btn-text-color: #07162f;
  --btn-background-color: var(--primary-color);
  --btn-border-color: var(--primary-color);
  --btn-hover-text-color: #07162f;
  --btn-hover-background-color: #d1bb2f;
  --btn-hover-border-color: #d1bb2f;
}

.lf-product--event-single-v2 {
  --event-v2-bg: #10263d;
  --event-v2-line: rgba(255, 255, 255, 0.28);
  min-height: 100vh;
  padding: 18px 18px 90px;
  color: #fff;
  background: #1c1c1c;
}
.lf-product--event-single-v2 .lf-event-pass-strip {
  display: grid;
  grid-template-columns: 150px 1fr 190px 190px;
  align-items: center;
  width: min(100%, 1380px);
  min-height: 58px;
  margin: 0 auto 54px;
  background: linear-gradient(90deg, #a7d18f, #fee960 58%, #ff776c);
  color: #10263d;
  text-decoration: none;
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-event-pass-strip img {
  width: 100%;
  height: 58px;
  padding: 9px 14px;
  background: #249baa;
  object-fit: contain;
}
.lf-product--event-single-v2 .lf-event-pass-strip .lf-pass-strip-title {
  padding-left: 24px;
  color: #e82d66;
  font: 400 28px/1 "CS Adley Stamp", serif;
}
.lf-product--event-single-v2 .lf-event-pass-strip .lf-pass-strip-copy {
  font: 700 10px/1.05 var(--custom-first-font-family);
  text-align: center;
}
.lf-product--event-single-v2 .lf-event-pass-strip .lf-pass-strip-action {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 12px;
  background: #ef2968;
  color: #fff;
  font: 700 10px/1 var(--custom-second-font-family);
}
.lf-product--event-single-v2 .lf-event-pass-strip:focus-visible {
  outline: 2px solid #fee960;
  outline-offset: 4px;
}
.lf-product--event-single-v2 > .lf-loading-region {
  min-height: 65vh;
}
.lf-product--event-single-v2 .lf-section {
  padding-inline: 0;
}
.lf-product--event-single-v2 .lf-container {
  width: min(100%, 1240px);
  max-width: none;
  margin-inline: auto;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 {
  padding: 0;
  border-bottom: 3px solid #199bb1;
  overflow: hidden;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 > .lf-container > .lf-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 0;
  aspect-ratio: 12/5;
  min-height: 0;
  isolation: isolate;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 > .lf-container > .lf-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 27, 44, 0.98) 0%, rgba(7, 27, 44, 0.91) 38%, rgba(7, 27, 44, 0.25) 69%, rgba(7, 27, 44, 0.08) 100%);
  pointer-events: none;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-col:first-child {
  position: relative;
  z-index: 2;
  max-width: 650px;
  min-width: 0;
  padding: 62px 38px;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-col:last-child {
  position: absolute;
  inset: 0;
  z-index: -2;
  max-width: none;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0 0 16px;
  padding: 0;
  color: #fff;
  font: 700 11px/1 var(--custom-second-font-family);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-event-meta > * {
  position: relative;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-event-meta > *:not(:last-child)::after {
  content: "•";
  position: absolute;
  left: calc(100% + 9px);
  color: #9ccf83;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-event-title {
  max-height: none;
  margin: 0 0 24px;
  color: #fff;
  font: 400 clamp(34px, 4.3vw, 62px)/0.98 "CS Adley Stamp", serif;
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-event-description {
  margin: 0 0 30px;
  color: #e7ebef;
  font: 400 15px/1.55 var(--custom-second-font-family);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-event-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 13px 22px;
  background: #ef2968;
  color: #fff;
  font: 700 11px/1 var(--custom-second-font-family);
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-event-hero-cta:hover {
  background: #cc2056;
  transform: translateY(-2px);
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-event-hero-cta:focus-visible {
  outline: 2px solid #fee960;
  outline-offset: 3px;
}
.lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-event-featured-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  object-fit: cover;
  object-position: center;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 {
  padding: 0;
  background: transparent;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-container {
  width: min(100%, 1040px);
  padding: 58px 0 82px;
  border-top: 0;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 > .lf-container > .lf-row {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(245px, 0.85fr);
  align-items: start;
  gap: 48px;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 > .lf-container > .lf-row > .lf-col {
  width: 100%;
  max-width: none;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 > .lf-container > .lf-row > .lf-col:first-child {
  order: 2;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 > .lf-container > .lf-row > .lf-col:last-child {
  order: 1;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 h5 {
  margin: 28px 0 12px;
  color: #fff;
  font: 700 10px/1 var(--custom-second-font-family);
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-details-list {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.42);
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-details-item {
  padding: 13px 16px;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-details-item:last-child {
  display: none;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-details-item:nth-last-child(2) {
  border-bottom: 0;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-details-item .lf-inner-row {
  display: block;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-details-item .lf-svg {
  display: none;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-details-item h3 {
  margin: 0 0 3px;
  color: #fff;
  font: 700 10px/1.25 var(--custom-second-font-family);
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-details-item p {
  color: #d0d8df;
  font: 400 9px/1.4 var(--custom-second-font-family);
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-price-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 18px;
  background: #fee960;
  color: #10263d;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-price-card small, .lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-price-card span {
  font: 700 9px/1.2 var(--custom-second-font-family);
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-price-card strong {
  margin: 8px 0 6px;
  font: 700 32px/1 var(--custom-first-font-family);
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-price-card button {
  width: 100%;
  margin: 16px 0 9px;
  padding: 11px;
  border: 0;
  background: #ef2968;
  color: #fff;
  font: 700 9px/1 var(--custom-second-font-family);
  text-transform: uppercase;
  cursor: pointer;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-price-card em {
  font: 400 8px/1.3 var(--custom-second-font-family);
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-long-description {
  margin-bottom: 38px;
  padding-left: 20px;
  border-left: 3px solid #ef2968;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-long-description h2 {
  max-width: 620px;
  margin: 0 0 20px;
  color: #fff;
  font: 400 clamp(20px, 2vw, 29px)/1.05 "CS Adley Stamp", serif;
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-long-description div {
  color: #dedede;
  font: 400 11px/1.6 var(--custom-second-font-family);
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-long-description p + p {
  margin-top: 13px;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-variant-list {
  margin: 12px 0;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-variant-btn {
  padding: 8px 10px;
  border: 1px solid #10263d;
  background: transparent;
  color: #10263d;
  cursor: pointer;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-variant-btn.--active {
  background: #ef2968;
  color: #fff;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-btn--buy-now {
  --btn-text-color: #fff;
  --btn-background-color: #ef2968;
  --btn-border-color: #ef2968;
  --btn-hover-text-color: #fff;
  --btn-hover-background-color: #cf2056;
  --btn-hover-border-color: #cf2056;
  min-width: 150px;
  padding: 11px 18px;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-speakers-wrap {
  border: 0;
  padding: 0;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-speakers-wrap > .lf-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-speakers-wrap h3 {
  color: #fff;
  font: 400 20px/1 var(--custom-first-font-family);
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-speakers-wrap .lf-speaker-count {
  color: #fee960;
  font: 700 10px/1 var(--custom-second-font-family);
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-speaker-list {
  margin: 0;
  padding: 0;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-speaker-item {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--event-v2-line);
  background: transparent;
  box-shadow: none;
  list-style: none;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-speaker-link {
  display: block;
  padding: 16px 0;
  color: #fff;
  text-decoration: none;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-speaker-full-name {
  margin-bottom: 5px;
  font: 700 11px/1.2 var(--custom-second-font-family);
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-speaker-title {
  color: #bdc8d2;
  font: 400 9px/1.3 var(--custom-second-font-family);
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-share-event {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-share-event h3 {
  margin-right: 8px;
  color: #fff;
  font: 700 10px/1 var(--custom-second-font-family);
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-share-event a {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--event-v2-line);
  color: #fff;
  font: 700 10px/1 var(--custom-second-font-family);
  text-decoration: none;
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-share-event a:hover, .lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-share-event a:focus-visible {
  border-color: #fee960;
  color: #fee960;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-source-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 580px);
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #102239;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-source-block span {
  display: grid;
  gap: 5px;
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-source-block strong {
  color: #fff;
  font: 400 16px/1.1 var(--custom-first-font-family);
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-source-block small {
  color: #aebbc6;
  font: 400 9px/1.2 var(--custom-second-font-family);
}
.lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-source-block a {
  flex: 0 0 auto;
  padding: 9px 12px;
  background: #ef2968;
  color: #fff;
  font: 700 8px/1 var(--custom-second-font-family);
  text-decoration: none;
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-event-not-found {
  display: grid;
  place-items: center;
  gap: 20px;
  min-height: 60vh;
  text-align: center;
}
.lf-product--event-single-v2 .lf-event-not-found h1 {
  color: #fff;
  font-family: "CS Adley Stamp", serif;
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-event-not-found a {
  color: #fee960;
}
.lf-product--event-single-v2 .lf-section--related-events {
  padding: 0;
  background: transparent;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-container {
  padding-top: 52px;
  border-top: 1px solid var(--event-v2-line);
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.lf-product--event-single-v2 .lf-section--related-events h2 {
  margin: 0;
  color: #fff;
  font: 400 28px/1 "CS Adley Stamp", serif;
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-heading > a {
  padding: 9px 13px;
  background: #ef2968;
  color: #fff;
  font: 700 9px/1 var(--custom-second-font-family);
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-heading > a:hover,
.lf-product--event-single-v2 .lf-section--related-events .lf-related-heading > a:focus-visible {
  background: #ff3f7c;
  transform: translateY(-2px);
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card {
  min-width: 0;
  border: 1px solid var(--event-v2-line);
  background: rgba(8, 27, 46, 0.32);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card:hover,
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card:focus-within {
  border-color: #fee960;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(-6px);
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 14px;
  color: #fff;
  text-decoration: none;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-meta {
  display: grid;
  grid-template-columns: minmax(74px, 0.8fr) minmax(100px, 1.2fr);
  align-items: stretch;
  gap: 12px;
  min-height: 42px;
  margin-bottom: 12px;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-datetime {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card time,
.lf-product--event-single-v2 .lf-section--related-events .lf-related-datetime span {
  color: #fff;
  font: 400 11px/1.15 "Special Elite";
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-venue {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(126, 157, 184, 0.58);
  color: #fff;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-venue svg {
  flex: 0 0 auto;
  width: 11px;
  height: 14px;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-venue span {
  overflow-wrap: anywhere;
  font: 700 8px/1.2 var(--custom-second-font-family);
  text-transform: uppercase;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card img {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 13px;
  background: #f4f2ed;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card:hover img,
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font: 400 18px/1.1 var(--custom-first-font-family);
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: auto;
  padding: 9px 12px;
  background: #ef2968;
  color: #fff;
  font: 700 9px/1 var(--custom-second-font-family);
  text-transform: uppercase;
  transition: background-color 180ms ease;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-cta b {
  font-size: 13px;
  line-height: 0;
  transition: transform 180ms ease;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card:hover .lf-related-cta,
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card:focus-within .lf-related-cta {
  background: #ff3f7c;
}
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card:hover .lf-related-cta b,
.lf-product--event-single-v2 .lf-section--related-events .lf-related-card:focus-within .lf-related-cta b {
  transform: translateX(4px);
}
@media only screen and (max-width: 900px) {
  .lf-product--event-single-v2 {
    padding-inline: 14px;
  }
  .lf-product--event-single-v2 .lf-event-pass-strip {
    grid-template-columns: 120px 1fr 120px;
  }
  .lf-product--event-single-v2 .lf-event-pass-strip .lf-pass-strip-copy {
    display: none;
  }
  .lf-product--event-single-v2 .lf-section--product-event-section-01 > .lf-container > .lf-row {
    grid-template-columns: 1fr;
    aspect-ratio: 12/5;
    min-height: 0;
  }
  .lf-product--event-single-v2 .lf-section--product-event-section-02 > .lf-container > .lf-row {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .lf-product--event-single-v2 .lf-section--product-event-section-02 > .lf-container > .lf-row > .lf-col {
    order: initial;
  }
  .lf-product--event-single-v2 .lf-section--related-events .lf-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 640px) {
  .lf-product--event-single-v2 {
    padding: 10px 10px 60px;
  }
  .lf-product--event-single-v2 .lf-event-pass-strip {
    grid-template-columns: 88px 1fr 86px;
    min-height: 46px;
    margin-bottom: 34px;
  }
  .lf-product--event-single-v2 .lf-event-pass-strip img {
    height: 46px;
    padding: 8px;
  }
  .lf-product--event-single-v2 .lf-event-pass-strip .lf-pass-strip-title {
    padding-left: 10px;
    font-size: 17px;
  }
  .lf-product--event-single-v2 .lf-event-pass-strip .lf-pass-strip-action {
    padding: 6px;
    font-size: 7px;
    text-align: center;
  }
  .lf-product--event-single-v2 .lf-section--product-event-section-01 > .lf-container > .lf-row {
    aspect-ratio: auto;
    min-height: 540px;
    align-items: end;
  }
  .lf-product--event-single-v2 .lf-section--product-event-section-01 > .lf-container > .lf-row::after {
    background: linear-gradient(0deg, rgba(7, 27, 44, 0.98) 0%, rgba(7, 27, 44, 0.82) 48%, rgba(7, 27, 44, 0.18) 100%);
  }
  .lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-col:first-child {
    max-width: none;
    padding: 210px 22px 34px;
  }
  .lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-event-featured-img {
    min-height: 540px;
  }
  .lf-product--event-single-v2 .lf-section--product-event-section-01 .lf-event-title {
    font-size: clamp(30px, 10vw, 48px);
  }
  .lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-container {
    padding: 42px 0 70px;
  }
  .lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-details-list {
    grid-template-columns: 1fr;
  }
  .lf-product--event-single-v2 .lf-section--product-event-section-02 .lf-event-details-item:last-child {
    grid-column: auto;
  }
  .lf-product--event-single-v2 .lf-section--related-events .lf-related-heading > a {
    display: none;
  }
  .lf-product--event-single-v2 .lf-section--related-events .lf-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
  }
  .lf-product--event-single-v2 .lf-section--related-events .lf-related-card {
    width: 100%;
  }
}

.lf-page--2026-panel-list {
  background-image: linear-gradient(rgba(8, 18, 30, 0.78), rgba(8, 18, 30, 0.78)), var(--hero-texture);
  background-position: center;
  background-size: cover;
}
.lf-page--2026-panel-list .lf-section--2026-panel {
  max-width: 1760px;
  margin: 0 auto;
  padding: 78px 0 0;
}
.lf-page--2026-panel-list .lf-panel-header {
  max-width: 900px;
  margin: 0 auto 74px;
  padding: 0 20px;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
}
.lf-page--2026-panel-list .lf-panel-header h1 {
  margin: 0 0 12px;
  font-family: "DM Serif Display", var(--custom-first-font-family);
  font-size: clamp(42px, 4.2vw, 76px);
  font-weight: 400;
  line-height: 0.96;
}
.lf-page--2026-panel-list .lf-kicker,
.lf-page--2026-panel-list .lf-subtitle {
  font-family: "Special Elite";
  font-size: clamp(9px, 0.72vw, 13px);
  line-height: 1.25;
  letter-spacing: 0;
}
.lf-page--2026-panel-list .lf-panel-shell {
  min-height: 1200px;
  padding: 86px 60px 130px;
  background-color: #168fa1;
  background-image: linear-gradient(rgba(18, 145, 161, 0.92), rgba(18, 145, 161, 0.92)), var(--hero-texture);
  background-position: center;
  background-size: cover;
}
.lf-page--2026-panel-list .lf-panel-rule {
  max-width: 1508px;
  margin: 0 auto 52px;
  color: #FFF;
  text-transform: uppercase;
}
.lf-page--2026-panel-list .lf-panel-rule strong {
  display: block;
  margin-bottom: 11px;
  font-family: var(--custom-fifth-font-family);
  font-size: clamp(24px, 2.75vw, 48px);
  font-weight: 400;
  line-height: 1;
}
.lf-page--2026-panel-list .lf-panel-rule em {
  display: block;
  font-family: "Special Elite";
  font-size: clamp(13px, 1.68vw, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.lf-page--2026-panel-list .lf-panel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 54px 46px;
  max-width: 1508px;
  margin: 0 auto;
}
.lf-page--2026-panel-list .lf-panel-speaker {
  display: block;
  min-width: 0;
  padding: 14px;
  color: #FFF;
  text-decoration: none;
  background: transparent;
  transition: background-color 180ms ease, transform 180ms ease;
}
.lf-page--2026-panel-list .lf-panel-speaker:hover, .lf-page--2026-panel-list .lf-panel-speaker:focus-visible {
  background: #FEE960;
  transform: translateY(-4px);
}
.lf-page--2026-panel-list .lf-panel-speaker:hover .lf-panel-speaker-image, .lf-page--2026-panel-list .lf-panel-speaker:focus-visible .lf-panel-speaker-image {
  border-color: #FEE960;
}
.lf-page--2026-panel-list .lf-panel-speaker:hover h2, .lf-page--2026-panel-list .lf-panel-speaker:focus-visible h2 {
  background: #EF2968;
  color: #FFF;
}
.lf-page--2026-panel-list .lf-panel-speaker:hover p, .lf-page--2026-panel-list .lf-panel-speaker:focus-visible p {
  color: #000;
}
.lf-page--2026-panel-list .lf-panel-speaker-image {
  display: block;
  width: 100%;
  aspect-ratio: 230/310;
  margin-bottom: 12px;
  border: 0 solid #FEE960;
  object-fit: cover;
  object-position: center top;
  transition: border-color 180ms ease;
}
.lf-page--2026-panel-list .lf-panel-speaker-copy h2 {
  display: inline;
  margin: 0;
  color: #FFF;
  font-family: "Special Elite";
  font-size: clamp(16px, 1.95vw, 18px);
  font-weight: 400;
  line-height: 1.06;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.lf-page--2026-panel-list .lf-panel-speaker-copy p {
  margin: 7px 0 0;
  color: #FFF;
  font-family: "Special Elite";
  font-size: clamp(13px, 0.58vw, 16px);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.lf-page--2026-panel-list .lf-panel-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.lf-page--2026-panel-list .lf-panel-state .lf-label {
  color: #FFF;
  font-family: "Special Elite";
  font-size: 18px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1280px) {
  .lf-page--2026-panel-list .lf-panel-shell {
    min-height: auto;
    padding: 64px 38px 90px;
  }
  .lf-page--2026-panel-list .lf-panel-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px 28px;
  }
}
@media only screen and (max-width: 820px) {
  .lf-page--2026-panel-list .lf-section--2026-panel {
    padding-top: 54px;
  }
  .lf-page--2026-panel-list .lf-panel-header {
    margin-bottom: 46px;
  }
  .lf-page--2026-panel-list .lf-panel-shell {
    padding: 42px 20px 62px;
  }
  .lf-page--2026-panel-list .lf-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 18px;
  }
}
@media only screen and (max-width: 480px) {
  .lf-page--2026-panel-list .lf-panel-grid {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

html {
  background-color: #112540;
}

body {
  min-height: 100vh;
  background-color: #112540;
  background-image: url("./assets/landing-bg.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
