.operator-details h1 {
    font-family: obviously-variable, sans-serif;
    font-variation-settings: "ital" 0, "wdth" 150, "wght" 600;
    font-size: 2em;
    text-transform: uppercase;
    color: var(--blue);
}
.operator-details h2 {
    font-family: TAY Road Runner, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
}
.operator-details .social-links {
    display: flex;
    column-gap: 5px;
}
.icon-container {
  display: flex;
  justify-content: center; 
  align-items: center;       
  background-color: var(--black);
  width: 40px;             
  height: 40px;
  border-radius: 5px;      
}

.icon-container i {
  color: white;            
  font-size: 18px;        
}
.hide-splash-operator {
   display: none !important;
}

.operator-profile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.operator-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.operator-featured,
.operator-details {
    width: 100%;
}

.operator-featured-image,
.operator-image-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.operator-featured-image img {
    display: block;
    width: 95%;
    height: 95%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    padding-bottom: 10px;
}

.operator-image-trigger:focus-visible,
.operator-gallery-prev:focus-visible,
.operator-gallery-next:focus-visible,
.operator-lightbox-close:focus-visible,
.operator-lightbox-prev:focus-visible,
.operator-lightbox-next:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

.operator-gallery {
    width: 100%;
}

.operator-gallery-grid,
.operator-gallery-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.operator-gallery-item {
    flex: 1 1 0;
    min-width: 0;
}

.operator-gallery-grid[data-count="1"] .operator-gallery-item {
    flex-basis: 100%;
    max-width: 100%;
}

.operator-gallery-grid[data-count="2"] .operator-gallery-item {
    flex-basis: calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
}

.operator-gallery-grid[data-count="3"] .operator-gallery-item {
    flex-basis: calc(33.333% - 0.667rem);
    max-width: calc(33.333% - 0.667rem);
}

.operator-gallery-grid[data-count="4"] .operator-gallery-item {
    flex-basis: calc(25% - 0.75rem);
    max-width: calc(25% - 0.75rem);
}

.operator-gallery-item .operator-image-trigger,
.operator-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
}

.operator-gallery-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.operator-gallery-slider {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.operator-gallery-viewport {
    flex: 1 1 auto;
    overflow: hidden;
    min-width: 0;
}

.operator-gallery--slider .operator-gallery-track {
    transition: transform 0.3s ease;
    will-change: transform;
}

.operator-gallery--slider .operator-gallery-item {
    flex: 0 0 calc(25% - 0.75rem);
    max-width: calc(25% - 0.75rem);
}

.operator-gallery-prev,
.operator-gallery-next,
.operator-lightbox-prev,
.operator-lightbox-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.operator-gallery-prev:disabled,
.operator-gallery-next:disabled,
.operator-lightbox-prev:disabled,
.operator-lightbox-next:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.operator-lightbox-slideshow {
    position: relative;
}

.operator-lightbox-viewport {
    position: relative;
    overflow: hidden;
}

.operator-lightbox-slide {
    display: none;
}

.operator-lightbox-slide.active {
    display: block;
}

.operator-lightbox-slide img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 12rem);
    object-fit: contain;
    margin: 0 auto;
}

.operator-slide-caption {
    margin: 0.75rem 0 0;
    text-align: center;
}

.operator-lightbox-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.operator-lightbox-status {
    margin: 0;
    min-width: 5rem;
    text-align: center;
}

/* Lightbox modal */
.operator-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.operator-lightbox[hidden] {
    display: none;
}

.operator-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.operator-lightbox-panel {
    position: relative;
    z-index: 1;
    width: min(1200px, 100%);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    border-radius: 4px;
    padding: 3rem 1rem 1rem;
}

.operator-lightbox-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99;
    background-color: var(--white);
    color: var(--blue);
    font-size: 25px;
    font-weight: bold;
}

body.operator-lightbox-open {
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (min-width: 992px) {
    .operator-featured,
    .operator-details {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .operator-gallery--slider .operator-gallery-item {
        flex-basis: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }

    .operator-gallery-grid[data-count="3"] .operator-gallery-item,
    .operator-gallery-grid[data-count="4"] .operator-gallery-item {
        flex-basis: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }

    .operator-lightbox-slide img {
        max-height: 360px;
    }
}

/* Events */

.event-schedule .schedule-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--orange);
    margin-bottom: 5px;
}
.event-meta .event-recurrence {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--orange);
    margin-bottom: 5px;
}

.event-info h1 {
    font-family: obviously-variable, sans-serif;
    font-variation-settings: "ital" 0, "wdth" 150, "wght" 600;
    font-size: 2em;
    text-transform: uppercase;
    color: var(--blue);
}

.event-info h2 {
    font-family: TAY Road Runner, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
}
.event-date {
   padding-top: 10px;
   padding-bottom: 10px;
}
.eventIntro.row {
    margin-bottom: 30px;
}

.event-image {
    display: flex;
    justify-content: center;
}

.event-image img {
    max-height: 500px;
}