.zozo-event-builder svg {
    width: 16px;
    height: 16px;
}
.zozo-event-filter-links {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}
.zozo-event-filter-links a {
    padding: 6px 10px;
    background: #89eeff57;
    border-radius: 12px;
    text-decoration: none;
    color: #0b1220;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-event-filter-links a.active {
    background: var(--zozo-primary);
    color: #ffffff;
}
.zozo-event-items li {
    margin-bottom: 8px;
}
.zozo-event-items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.zozo-event-item {
    align-items: center;
}
.zozo-event-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
    color: #0b1220;
}
.zozo-event-dates {
    font-size: 12px;
    color: #64748b;
}
.img-style-squared img {
    border-radius: 0;
}
.img-style-rounded img {
    border-radius: 12px;
}
.img-style-rounded-circle img {
    border-radius: 50%;
}

.event-builder-inner.overlay-default .post-overlay-items,
.zozo-masonry-event-calendar-inner.overlay-default .post-overlay-items,
.zozo-organizer-inner.overlay-default .post-overlay-items,
.zozo-location-inner.overlay-default .post-overlay-items,
.zozo-taxonomy-inner.overlay-default .post-overlay-items {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto;
	transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-builder-inner.overlay-hover .post-overlay-items,
.zozo-masonry-event-calendar-inner.overlay-hover .post-overlay-items,
.zozo-organizer-inner.overlay-hover .post-overlay-items,
.zozo-location-inner.overlay-hover .post-overlay-items,
.zozo-taxonomy-inner.overlay-hover .post-overlay-items {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none;
	transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-builder-inner.overlay-hover:hover .post-overlay-items,
.zozo-masonry-event-calendar-inner.overlay-hover:hover .post-overlay-items,
.zozo-organizer-inner.overlay-hover:hover .post-overlay-items,
.zozo-location-inner.overlay-hover:hover .post-overlay-items,
.zozo-taxonomy-inner.overlay-hover:hover .post-overlay-items {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto;
}

.event-builder-inner,
.zozo-organizer-inner,
.zozo-masonry-event-calendar-inner,
.zozo-location-inner,
.zozo-taxonomy-inner {
	position: relative;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 255, 255, 0.78);
}

.location-name a, 
.organizer-name a {
    text-decoration: none;
    transition: color .25s ease;
    color: #0b1220;
}
.organizer-link img {
    margin-right: 10px;
}
.post-title a:hover,
.location-name a:hover, 
.organizer-name a:hover,
.variation-dark .post-title a:hover,
.variation-dark .el-organizer-name a:hover {
    color: var(--zozo-primary);
}
.loc-country,
.loc-city,
.loc-state,
.loc-latitude,
.loc-longitude{
    color: var(--zozo-primary);
}
.post-thumb {
    position: relative;
    overflow: hidden;
}
.post-overlay-items{
    position:absolute;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:opacity .3s ease;
    z-index:1;
}
.overlay-hover .post-thumb:hover .post-overlay-items {
    opacity: 1;
}
.overlay-always .post-overlay-items {
    opacity: 1;
}
.eb-overlay-animation-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.eb-shine-sweep .eb-overlay-animation-layer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.25) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
}
.eb-shine-sweep:hover .eb-overlay-animation-layer::before {
    animation: ebShineSweep 700ms ease;
}
.zozo-event-list-wrapper .eb-shine-sweep:hover .eb-overlay-animation-layer::before {
    animation: ebShineSweep var(--eb-overlay-speed, 700ms) ease;
}
@keyframes ebShineSweep {
    0% { left: -150%; }
    100% { left: 150%; }
}
.eb-shine-circle .eb-overlay-animation-layer::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 60%);
    opacity: 0;
    transform: scale(0.6);
}
.eb-shine-circle:hover .eb-overlay-animation-layer::before {
    animation: ebRadial 600ms ease;
}
@keyframes ebRadial {
    0% { opacity: 0; transform: scale(0.4); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: scale(1.2); }
}
.zozo-event-list-wrapper .eb-shine-circle:hover .eb-overlay-animation-layer::before {
    animation: ebRadial var(--eb-overlay-speed, 600ms) ease;
}
.eb-shine-blur .eb-overlay-animation-layer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.18);
    filter: blur(10px);
    transform: skewX(-20deg);
}
.eb-shine-blur:hover .eb-overlay-animation-layer::before {
    animation: ebBlurSweep 900ms ease;
}
.zozo-event-list-wrapper .eb-shine-blur:hover .eb-overlay-animation-layer::before {
    animation: ebBlurSweep var(--eb-overlay-speed, 900ms) ease;
}
@keyframes ebBlurSweep {
    0% { left: -120%; }
    100% { left: 120%; }
}
.post-location,
.post-organizer,
.eb-post-category,
.eb-post-tag,
.post-label,
.post-title {
    display: flex;
}
/* =========================================================
   LOCATION GRID/LIST — DEFAULT
========================================================= */
.zozo-location-wrapper.layout-default .event-builder-inner {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-location-wrapper.layout-default .event-builder-inner:hover {
    border-color: rgb(40 164 255 / 10%);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-location-wrapper.layout-default .post-thumb img {
    object-fit: cover;
}
.zozo-location-wrapper.layout-default .zozo-event-content,
.zozo-location-wrapper.layout-default .event-content {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.zozo-location-wrapper.layout-default .post-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}
.zozo-location-wrapper.layout-default .loc-state {
    font-size: 13px;
    color: #64748b;
}
/* =========================================================
   LOCATION GRID/LIST — CLASSIC
========================================================= */
.zozo-location-wrapper.layout-classic .event-builder-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.zozo-location-wrapper.layout-classic .event-builder-inner:hover {
    transform: translateY(-4px);
    border-color: rgb(40 164 255 / 10%);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.zozo-location-wrapper.layout-classic .post-thumb {
    position: relative;
    overflow: hidden;
}
.zozo-location-wrapper.layout-classic .post-thumb img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.zozo-location-wrapper.layout-classic .event-builder-inner:hover .post-thumb img {
    transform: scale(1.05);
}
.zozo-location-wrapper.layout-classic .zozo-event-content,
.zozo-location-wrapper.layout-classic .event-content {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zozo-location-wrapper.layout-classic .post-title {
    font-size: 20.8px;
    font-weight: 700;
    margin: 0;
}
.zozo-location-wrapper.layout-classic .loc-state {
    font-size: 14px;
    color: var(--zozo-primary);
    font-weight: 600;
}
/* =========================================================
   LOCATION GRID/LIST — CLASSIC PRO
========================================================= */
.zozo-location-wrapper.layout-classic-pro .event-builder-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.zozo-location-wrapper.layout-classic-pro .event-builder-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-location-wrapper.layout-classic-pro .post-thumb {
    overflow: hidden;
}
.zozo-location-wrapper.layout-classic-pro .post-thumb img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.zozo-location-wrapper.layout-classic-pro .event-builder-inner:hover .post-thumb img {
    transform: scale(1.07);
}
.zozo-location-wrapper.layout-classic-pro .zozo-event-content,
.zozo-location-wrapper.layout-classic-pro .event-content {
    padding: 28px 30px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.zozo-location-wrapper.layout-classic-pro .post-title {
    font-size: 23.2px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}
.zozo-location-wrapper.layout-classic-pro .loc-state {
    font-size: 14px;
    font-weight: 700;
    color: var(--zozo-primary);
}
.zozo-location-wrapper.layout-classic-pro .ec-read-more a {
    display: inline-flex;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--zozo-primary);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.zozo-location-wrapper.layout-classic-pro .ec-read-more a:hover {
    background: #0ec1ff;
    transform: translateY(-2px);
}
/* =========================================================
   LOCATION GRID/LIST — MODERN
========================================================= */
.zozo-location-wrapper.layout-modern .event-builder-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
}
.zozo-location-wrapper.layout-modern .event-builder-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-location-wrapper.layout-modern .post-thumb img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.zozo-location-wrapper.layout-modern .event-builder-inner:hover .post-thumb img {
    transform: scale(1.04);
}
.zozo-location-wrapper.layout-modern .zozo-event-content,
.zozo-location-wrapper.layout-modern .event-content {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zozo-location-wrapper.layout-modern .post-title {
    font-size: 19.2px;
    font-weight: 700;
    margin: 0;
}
.zozo-location-wrapper.layout-modern .loc-state {
    font-size: 13px;
    font-weight: 600;
    color: var(--zozo-primary);
}
/* =========================================================
   LOCATION SLIDER — DEFAULT
========================================================= */
.zozo-location-slider-wrapper.layout-default .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-location-slider-wrapper.layout-default .event-builder-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-location-slider-wrapper.layout-default .event-builder-inner:hover {
    border-color: rgb(40 164 255 / 10%);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-location-slider-wrapper.layout-default .post-thumb img {
    object-fit: cover;
}
.zozo-location-slider-wrapper.layout-default .zozo-event-content,
.zozo-location-slider-wrapper.layout-default .event-content {
    flex: 1;
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* =========================================================
   LOCATION SLIDER — CLASSIC
========================================================= */
.zozo-location-slider-wrapper.layout-classic .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-location-slider-wrapper.layout-classic .event-builder-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.zozo-location-slider-wrapper.layout-classic .event-builder-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.zozo-location-slider-wrapper.layout-classic .post-thumb img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.zozo-location-slider-wrapper.layout-classic .event-builder-inner:hover .post-thumb img {
    transform: scale(1.05);
}
.zozo-location-slider-wrapper.layout-classic .zozo-event-content,
.zozo-location-slider-wrapper.layout-classic .event-content {
    flex: 1;
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* =========================================================
   LOCATION SLIDER — CLASSIC PRO
========================================================= */
.zozo-location-slider-wrapper.layout-classic-pro .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-location-slider-wrapper.layout-classic-pro .event-builder-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.zozo-location-slider-wrapper.layout-classic-pro .event-builder-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-location-slider-wrapper.layout-classic-pro .post-thumb img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.zozo-location-slider-wrapper.layout-classic-pro .event-builder-inner:hover .post-thumb img {
    transform: scale(1.07);
}
.zozo-location-slider-wrapper.layout-classic-pro .zozo-event-content,
.zozo-location-slider-wrapper.layout-classic-pro .event-content {
    flex: 1;
    padding: 28px 30px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.zozo-location-slider-wrapper.layout-classic-pro .post-title {
    font-size: 23.2px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}
.zozo-location-slider-wrapper.layout-classic-pro .ec-read-more a {
    display: inline-flex;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--zozo-primary);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.zozo-location-slider-wrapper.layout-classic-pro .ec-read-more a:hover {
    background: #0ec1ff;
    transform: translateY(-2px);
}
/* =========================================================
   LOCATION SLIDER — MODERN
========================================================= */
.zozo-location-slider-wrapper.layout-modern .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-location-slider-wrapper.layout-modern .event-builder-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
}
.zozo-location-slider-wrapper.layout-modern .event-builder-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-location-slider-wrapper.layout-modern .post-thumb img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.zozo-location-slider-wrapper.layout-modern .event-builder-inner:hover .post-thumb img {
    transform: scale(1.04);
}
.zozo-location-slider-wrapper.layout-modern .zozo-event-content,
.zozo-location-slider-wrapper.layout-modern .event-content {
    flex: 1;
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* =========================================================
   TAXONOMY GRID/LIST — DEFAULT
========================================================= */
.zozo-taxonomy-wrapper.layout-default .zozo-taxonomy-inner {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-taxonomy-wrapper.layout-default .zozo-taxonomy-inner:hover {
    border-color: rgb(40 164 255 / 10%);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-taxonomy-wrapper.layout-default .post-thumb img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.zozo-taxonomy-wrapper.layout-default .zozo-event-content,
.zozo-taxonomy-wrapper.layout-default .event-content {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.zozo-taxonomy-wrapper.layout-default .post-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
/* =========================================================
   TAXONOMY GRID/LIST — CLASSIC
========================================================= */
.zozo-taxonomy-wrapper.layout-classic .zozo-taxonomy-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.zozo-taxonomy-wrapper.layout-classic .zozo-taxonomy-inner:hover {
    transform: translateY(-4px);
    border-color: rgb(40 164 255 / 10%);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.zozo-taxonomy-wrapper.layout-classic .post-thumb {
    overflow: hidden;
}
.zozo-taxonomy-wrapper.layout-classic .post-thumb img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.zozo-taxonomy-wrapper.layout-classic .zozo-taxonomy-inner:hover .post-thumb img {
    transform: scale(1.05);
}
.zozo-taxonomy-wrapper.layout-classic .zozo-event-content,
.zozo-taxonomy-wrapper.layout-classic .event-content {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zozo-taxonomy-wrapper.layout-classic .post-title {
    font-size: 21.6px;
    font-weight: 700;
    margin: 0;
}
/* =========================================================
   TAXONOMY GRID/LIST — CLASSIC PRO
========================================================= */
.zozo-taxonomy-wrapper.layout-classic-pro .zozo-taxonomy-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.zozo-taxonomy-wrapper.layout-classic-pro .zozo-taxonomy-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-taxonomy-wrapper.layout-classic-pro .post-thumb {
    overflow: hidden;
}
.zozo-taxonomy-wrapper.layout-classic-pro .post-thumb img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.zozo-taxonomy-wrapper.layout-classic-pro .zozo-taxonomy-inner:hover .post-thumb img {
    transform: scale(1.08);
}
.zozo-taxonomy-wrapper.layout-classic-pro .zozo-event-content,
.zozo-taxonomy-wrapper.layout-classic-pro .event-content {
    padding: 28px 30px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.zozo-taxonomy-wrapper.layout-classic-pro .post-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}
.zozo-taxonomy-wrapper.layout-classic-pro .ec-read-more a {
    display: inline-flex;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--zozo-primary);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.zozo-taxonomy-wrapper.layout-classic-pro .ec-read-more a:hover {
    background: #0ec1ff;
    transform: translateY(-2px);
}
/* =========================================================
   TAXONOMY GRID/LIST — MODERN
========================================================= */
.zozo-taxonomy-wrapper.layout-modern .zozo-taxonomy-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
}
.zozo-taxonomy-wrapper.layout-modern .zozo-taxonomy-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-taxonomy-wrapper.layout-modern .post-thumb img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.zozo-taxonomy-wrapper.layout-modern .zozo-taxonomy-inner:hover .post-thumb img {
    transform: scale(1.04);
}
.zozo-taxonomy-wrapper.layout-modern .zozo-event-content,
.zozo-taxonomy-wrapper.layout-modern .event-content {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zozo-taxonomy-wrapper.layout-modern .post-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
/* =========================================================
   TAXONOMY SLIDER — DEFAULT
========================================================= */
.zozo-taxonomy-slider-wrapper.layout-default .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-taxonomy-slider-wrapper.layout-default .zozo-taxonomy-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-taxonomy-slider-wrapper.layout-default .zozo-taxonomy-inner:hover {
    border-color: rgb(40 164 255 / 10%);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-taxonomy-slider-wrapper.layout-default .post-thumb img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.zozo-taxonomy-slider-wrapper.layout-default .zozo-event-content,
.zozo-taxonomy-slider-wrapper.layout-default .event-content {
    flex: 1;
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* =========================================================
   TAXONOMY SLIDER — CLASSIC
========================================================= */
.zozo-taxonomy-slider-wrapper.layout-classic .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-taxonomy-slider-wrapper.layout-classic .zozo-taxonomy-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.zozo-taxonomy-slider-wrapper.layout-classic .zozo-taxonomy-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.zozo-taxonomy-slider-wrapper.layout-classic .post-thumb img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.zozo-taxonomy-slider-wrapper.layout-classic .zozo-taxonomy-inner:hover .post-thumb img {
    transform: scale(1.05);
}
.zozo-taxonomy-slider-wrapper.layout-classic .zozo-event-content,
.zozo-taxonomy-slider-wrapper.layout-classic .event-content {
    flex: 1;
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* =========================================================
   TAXONOMY SLIDER — CLASSIC PRO
========================================================= */
.zozo-taxonomy-slider-wrapper.layout-classic-pro .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-taxonomy-slider-wrapper.layout-classic-pro .zozo-taxonomy-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.zozo-taxonomy-slider-wrapper.layout-classic-pro .zozo-taxonomy-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-taxonomy-slider-wrapper.layout-classic-pro .post-thumb img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.zozo-taxonomy-slider-wrapper.layout-classic-pro .zozo-taxonomy-inner:hover .post-thumb img {
    transform: scale(1.08);
}
.zozo-taxonomy-slider-wrapper.layout-classic-pro .zozo-event-content,
.zozo-taxonomy-slider-wrapper.layout-classic-pro .event-content {
    flex: 1;
    padding: 28px 30px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.zozo-taxonomy-slider-wrapper.layout-classic-pro .post-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}
.zozo-taxonomy-slider-wrapper.layout-classic-pro .ec-read-more a {
    display: inline-flex;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--zozo-primary);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.zozo-taxonomy-slider-wrapper.layout-classic-pro .ec-read-more a:hover {
    background: #0ec1ff;
    transform: translateY(-2px);
}
/* =========================================================
   TAXONOMY SLIDER — MODERN
========================================================= */
.zozo-taxonomy-slider-wrapper.layout-modern .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-taxonomy-slider-wrapper.layout-modern .zozo-taxonomy-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
}
.zozo-taxonomy-slider-wrapper.layout-modern .zozo-taxonomy-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-taxonomy-slider-wrapper.layout-modern .post-thumb img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.zozo-taxonomy-slider-wrapper.layout-modern .zozo-taxonomy-inner:hover .post-thumb img {
    transform: scale(1.04);
}
.zozo-taxonomy-slider-wrapper.layout-modern .zozo-event-content,
.zozo-taxonomy-slider-wrapper.layout-modern .event-content {
    flex: 1;
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* =========================================================
   CLASSIC PRO — SCOPED TAB STYLES
========================================================= */
.zozo-organizer-wrapper.layout-classic-pro .zozo-organizer-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: #89eeff57;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-organizer-wrapper.layout-classic-pro .zozo-organizer-tabs button {
    flex: 1;
    background: #ffffff;
    border: none;
    padding: 10px 22px;
    font-size: 14.96px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.7);
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-organizer-wrapper.layout-classic-pro .zozo-organizer-tabs button.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--zozo-primary), #007ea9);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
}
.zozo-organizer-wrapper.layout-classic-pro .zozo-organizer-tabs button:hover:not(.active) {
    background: rgba(16, 185, 129, 0.12);
    color: var(--zozo-primary);
    transform: translateY(-2px);
}
.zozo-location-wrapper.layout-classic-pro .zozo-location-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: #89eeff57;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-location-wrapper.layout-classic-pro .zozo-location-tabs button {
    flex: 1;
    background: #ffffff;
    border: none;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.7);
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-location-wrapper.layout-classic-pro .zozo-location-tabs button.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--zozo-primary), #007ea9);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
}
.zozo-location-wrapper.layout-classic-pro .zozo-location-tabs button:hover:not(.active) {
    background: rgba(16, 185, 129, 0.12);
    color: var(--zozo-primary);
    transform: translateY(-2px);
}
.zozo-taxonomy-wrapper.layout-classic-pro .zozo-taxonomy-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: #89eeff57;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-taxonomy-wrapper.layout-classic-pro .zozo-taxonomy-tabs button {
    flex: 1;
    background: #ffffff;
    border: none;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.7);
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-taxonomy-wrapper.layout-classic-pro .zozo-taxonomy-tabs button.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--zozo-primary), #007ea9);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
}
.zozo-taxonomy-wrapper.layout-classic-pro .zozo-taxonomy-tabs button:hover:not(.active) {
    background: rgba(16, 185, 129, 0.12);
    color: var(--zozo-primary);
    transform: translateY(-2px);
}
/* Location List horizontal */
.zozo-location-wrapper.zozo-view-list.layout-default .location-list-layout,
.zozo-location-wrapper.zozo-view-list.layout-classic .location-list-layout,
.zozo-location-wrapper.zozo-view-list.layout-classic-pro .location-list-layout,
.zozo-location-wrapper.zozo-view-list.layout-modern .location-list-layout {
    display: grid;
    gap: 24px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.zozo-location-wrapper.zozo-view-list.layout-default .location-list-layout {
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-location-wrapper.zozo-view-list.layout-default .location-list-layout:hover {
    border-color: rgb(40 164 255 / 10%);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-location-wrapper.zozo-view-list.layout-classic .location-list-layout {
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.zozo-location-wrapper.zozo-view-list.layout-classic .location-list-layout:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.zozo-location-wrapper.zozo-view-list.layout-classic-pro .location-list-layout {
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.zozo-location-wrapper.zozo-view-list.layout-classic-pro .location-list-layout:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-location-wrapper.zozo-view-list.layout-modern .location-list-layout {
    padding: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.zozo-location-wrapper.zozo-view-list.layout-modern .location-list-layout:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-location-wrapper.zozo-view-list .event-media img {
    object-fit: cover;
}
.zozo-location-wrapper.zozo-view-list.layout-classic .event-media img {
    border-radius: 16px;
}
.zozo-location-wrapper.zozo-view-list.layout-classic-pro .event-media img {
    border-radius: 20px;
    min-height: 280px;
}
.zozo-location-wrapper.zozo-view-list.layout-modern .event-media img {
    border-radius: 18px;
}
/* Taxonomy List horizontal */
.zozo-taxonomy-wrapper.zozo-view-list.layout-default .taxonomy-list-layout,
.zozo-taxonomy-wrapper.zozo-view-list.layout-classic .taxonomy-list-layout,
.zozo-taxonomy-wrapper.zozo-view-list.layout-classic-pro .taxonomy-list-layout,
.zozo-taxonomy-wrapper.zozo-view-list.layout-modern .taxonomy-list-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 24px;
    align-items: center;
}
.zozo-taxonomy-wrapper.zozo-view-list.layout-default .taxonomy-list-layout {
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-taxonomy-wrapper.zozo-view-list.layout-default .taxonomy-list-layout:hover {
    border-color: rgb(40 164 255 / 10%);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-taxonomy-wrapper.zozo-view-list.layout-classic .taxonomy-list-layout {
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.zozo-taxonomy-wrapper.zozo-view-list.layout-classic .taxonomy-list-layout:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.zozo-taxonomy-wrapper.zozo-view-list.layout-classic-pro .taxonomy-list-layout {
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.zozo-taxonomy-wrapper.zozo-view-list.layout-classic-pro .taxonomy-list-layout:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-taxonomy-wrapper.zozo-view-list.layout-modern .taxonomy-list-layout {
    padding: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.zozo-taxonomy-wrapper.zozo-view-list.layout-modern .taxonomy-list-layout:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-taxonomy-wrapper.zozo-view-list .taxonomy-list-layout .post-thumb img,
.zozo-taxonomy-wrapper.zozo-view-list .event-media img {
    object-fit: cover;
    border-radius: 12px;
}
.zozo-taxonomy-wrapper.zozo-view-list.layout-classic .taxonomy-list-layout .post-thumb img,
.zozo-taxonomy-wrapper.zozo-view-list.layout-classic .event-media img {
    border-radius: 16px;
}
.zozo-taxonomy-wrapper.zozo-view-list.layout-classic-pro .taxonomy-list-layout .post-thumb img,
.zozo-taxonomy-wrapper.zozo-view-list.layout-classic-pro .event-media img {
    border-radius: 20px;
    min-height: 280px;
}
.zozo-taxonomy-wrapper.zozo-view-list.layout-modern .taxonomy-list-layout .post-thumb img,
.zozo-taxonomy-wrapper.zozo-view-list.layout-modern .event-media img {
    border-radius: 18px;
}
/* =========================================================
   RESPONSIVE TABLET (max-width: 991px)
========================================================= */
@media (max-width: 991px) {
    /* Grid column adjustments */
    .zozo-event-grid-wrapper .row > [class*="col-"],
    .zozo-organizer-wrapper .zozo-organizer-grid > [class*="col-"],
    .zozo-location-wrapper .zozo-location-grid > [class*="col-"],
    .zozo-taxonomy-wrapper .zozo-taxonomy-grid > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .zozo-organizer-wrapper.zozo-view-list .organizer-list-layout,
    .zozo-location-wrapper.zozo-view-list .location-list-layout,
    .zozo-taxonomy-wrapper.zozo-view-list .taxonomy-list-layout {
        grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
        gap: 20px;
    }
    /* Classic-pro horizontal cards */
    .zozo-event-list-wrapper.layout-classic-pro .event-builder-inner,
    .zozo-event-list-wrapper.view-list.layout-classic-pro .event-builder-inner {
        border-radius: 24px;
    }
    .zozo-organizer-wrapper.zozo-view-list.layout-classic-pro .organizer-list-layout,
    .zozo-location-wrapper.zozo-view-list.layout-classic-pro .location-list-layout,
    .zozo-taxonomy-wrapper.zozo-view-list.layout-classic-pro .taxonomy-list-layout {
        grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
        padding: 22px;
        border-radius: 24px;
    }
    .zozo-organizer-wrapper.zozo-view-list .zozo-organizer-list-item .zozo-organizer-inner,
    .zozo-location-wrapper.zozo-view-list .zozo-location-list-item .location-list-layout {
        gap: 16px;
    }
    .zozo-organizer-wrapper.zozo-view-list.layout-classic-pro .event-media img,
    .zozo-location-wrapper.zozo-view-list.layout-classic-pro .event-media img,
    .zozo-taxonomy-wrapper.zozo-view-list.layout-classic-pro .taxonomy-list-layout .post-thumb img,
    .zozo-taxonomy-wrapper.zozo-view-list.layout-classic-pro .event-media img {
        min-height: 220px;
        border-radius: 18px;
    }
}
/* =========================================================
   RESPONSIVE MOBILE (max-width: 767px)
========================================================= */
@media (max-width: 767px) {
    .zozo-event-grid-wrapper .row > [class*="col-"],
    .zozo-organizer-wrapper .zozo-organizer-grid > [class*="col-"],
    .zozo-location-wrapper .zozo-location-grid > [class*="col-"],
    .zozo-taxonomy-wrapper .zozo-taxonomy-grid > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .zozo-event-masonry-wrapper .zozo-event-masonry:not(.isotope) {
        --ec-columns: var(--ec-columns-mobile, var(--ec-columns));
        grid-template-columns: repeat(var(--ec-columns), minmax(0, 1fr));
    }
    .zozo-organizer-wrapper.zozo-view-list .organizer-list-layout,
    .zozo-location-wrapper.zozo-view-list .location-list-layout,
    .zozo-taxonomy-wrapper.zozo-view-list .taxonomy-list-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        padding: 18px;
    }
    .zozo-organizer-wrapper.zozo-view-list .event-media img,
    .zozo-location-wrapper.zozo-view-list .event-media img,
    .zozo-taxonomy-wrapper.zozo-view-list .taxonomy-list-layout .post-thumb img,
    .zozo-taxonomy-wrapper.zozo-view-list .event-media img {
        min-height: 200px;
    }
    .zozo-organizer-wrapper.zozo-view-list .organizer-list-layout{
        display:grid;
        grid-template-columns:1fr;
        gap:18px;
        padding:18px;
    }
    .zozo-organizer-wrapper.zozo-view-list .event-media{
        width:100%;
        max-width:100%;
        min-width:0;
        flex:none;
    }
    .zozo-organizer-wrapper.zozo-view-list .post-thumb{
        width:100%;
    }
    .zozo-organizer-wrapper.zozo-view-list .post-thumb img{
        width:100%;
        height:220px;
        display:block;
        object-fit:cover;
    }
    .zozo-organizer-wrapper.zozo-view-list .organizer-content{
        width:100%;
        max-width:100%;
        min-width:0;
    }
    .zozo-organizer-wrapper.zozo-view-list .organizer-content {
        width: 100%;
        max-width: 100%;
    }
    .zozo-organizer-wrapper.zozo-view-list .post-thumb img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
    .zozo-organizer-wrapper.zozo-view-list .organizer-list-layout {
        display: block !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 18px;
    }
    .zozo-organizer-wrapper.zozo-view-list .event-media {
        width: 100% !important;
        margin-bottom: 18px;
    }
    .zozo-organizer-wrapper.zozo-view-list .post-thumb {
        height: auto !important;
        overflow: hidden;
    }
    .zozo-organizer-wrapper.zozo-view-list .post-thumb img {
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .zozo-organizer-wrapper.zozo-view-list .organizer-content {
        display: block !important;
        height: auto !important;
    }
    .zozo-location-wrapper.zozo-view-list .zozo-location-list-item .location-list-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .zozo-event-list-wrapper.layout-classic-pro .event-builder-inner,
    .zozo-event-list-wrapper.view-list.layout-classic-pro .event-builder-inner {
        border-radius: 20px;
    }
    .zozo-organizer-wrapper.zozo-view-list.layout-classic-pro .organizer-list-layout,
    .zozo-location-wrapper.zozo-view-list.layout-classic-pro .location-list-layout,
    .zozo-taxonomy-wrapper.zozo-view-list.layout-classic-pro .taxonomy-list-layout {
        grid-template-columns: minmax(0, 1fr);
        padding: 18px;
        border-radius: 20px;
    }
    .zozo-organizer-wrapper.zozo-view-list.layout-classic-pro .event-media img,
    .zozo-location-wrapper.zozo-view-list.layout-classic-pro .event-media img,
    .zozo-taxonomy-wrapper.zozo-view-list.layout-classic-pro .taxonomy-list-layout .post-thumb img,
    .zozo-taxonomy-wrapper.zozo-view-list.layout-classic-pro .event-media img {
        min-height: 200px;
        border-radius: 16px;
    }
    .zozo-event-slide-wrapper .event-builder-inner:hover,
    .zozo-organizer-slider-wrapper .event-builder-inner:hover,
    .zozo-location-slider-wrapper .event-builder-inner:hover,
    .zozo-taxonomy-slider-wrapper .zozo-taxonomy-inner:hover {
        transform: none;
    }
    .zozo-organizer-wrapper.layout-classic-pro .zozo-organizer-tabs,
    .zozo-location-wrapper.layout-classic-pro .zozo-location-tabs,
    .zozo-taxonomy-wrapper.layout-classic-pro .zozo-taxonomy-tabs {
        flex-wrap: wrap;
    }
    .zozo-organizer-wrapper.layout-classic-pro .zozo-organizer-tabs button,
    .zozo-location-wrapper.layout-classic-pro .zozo-location-tabs button,
    .zozo-taxonomy-wrapper.layout-classic-pro .zozo-taxonomy-tabs button {
        flex: 1 1 auto;
        min-width: calc(50% - 5px);
        font-size: 14px;
        padding: 8px 14px;
    }
}
.organizer-name,
.eb-post-tag a,
.location-name,
.eb-post-category a{
   color: var(--zozo-primary);
}
.organizer-name:hover,
.eb-post-tag a:hover,
.location-name:hover,
.eb-post-category a:hover {
    color: var(--zozo-secondary-color);
}
.zozo-event-pagination-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.zozo-event-pagination {
    display: flex;
}
.zozo-event-pagination li > a,
.zozo-event-pagination li > span {
    display: inline-flex;
    margin: 0 6px;
    gap: 6px;
    background: #f1f1f1;
    color: #0b1220;
    border-radius: 8px;
    padding: 14px 16px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-event-pagination li {
    display: inline-block;
    text-decoration: none;
}
.zozo-event-pagination .active > span {
    background-color: var(--zozo-secondary-color);
    color: #ffffff;
}
.zozo-event-pagination a:hover {
    background: var(--zozo-primary);
    color: #ffffff;
}
.zozo-event-pagination .current {
    pointer-events: none;
}
.zozo-page-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.zozo-page-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.zozo-page-icon svg,
.zozo-page-icon i {
    width: 1em;
    height: 1em;
}
.zozo-page-text {
    padding: 0 !important;
}
.zozo-event-skeleton-loader {
    display: none;
    margin-top: 20px;
}
.skeleton-item {
    height: 180px;
    background: linear-gradient(
        90deg,
        #89eeff57 25%,
        #f5f5f5 37%,
        #89eeff57 63%
    );
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
    margin-bottom: 15px;
    border-radius: 12px;
}
@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}
.page-load-status {
    display: none;
}
.infinite-scroll-request {
    display: none;
}
.infinite-scroll-last,
.infinite-scroll-error {
    display: none;
    text-align: center;
}
.load-btn-scroll {
    pointer-events: none;
    font-size: 0;
    position: relative;
    min-width: 100px;
    height: 40px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
/* Dots container */
.load-btn-scroll .loader-dots {
    display: flex;
    gap: 6px;
}
.load-btn-scroll .loader-dots span {
    width: 10px;
    height: 10px;
    background: var(--zozo-secondary-color);
    border-radius: 50%;
    display: inline-block;
    animation: bounce 0.6s infinite alternate;
}
.load-btn-scroll .loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}
.load-btn-scroll .loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes bounce {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }
}
.zozo-btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: zozo-spin .8s linear infinite;
    vertical-align: middle;
}
@keyframes zozo-spin {
    to {
        transform: rotate(360deg);
    }
}
.zozo-event-loadmore-btn.is-loading .zozo-btn-text {
    display: none;
}
.zozo-event-loadmore-btn.is-loading .zozo-btn-spinner {
    display: inline-block;
}
.zozo-event-loadmore-btn.is-loading {
    pointer-events: none;
    opacity: .85;
}
.zozo-event-loadmore-btn,
.ec-read-more a {
    border: none;
    padding: 12px 24px;
    line-height: 1;
    background: var(--zozo-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.zozo-event-loadmore-btn:hover,
.ec-read-more a:hover {
    background: var(--zozo-secondary-color);
    color: #fff;
}
.zozo-list-event-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--zozo-secondary-color);
    color: #ffffff;
    border-radius: 12px;
    text-align: center;
    width: 48px;
    padding: 5px 7px 5px 5px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    z-index: 10;
}
.zozo-list-event-date-badge .day {
    font-size: 19.2px;
    display: block;
}
.zozo-list-event-date-badge .month {
    font-size: 11.2px;
    letter-spacing: 1px;
}
.zozo-list-event-date-badge .year {
    font-size: 12px;
    opacity: 0.8;
}
/* CONTENT */
.zozo-view-list .event-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.zozo-view-list .event-builder-inner,
.zozo-view-list .post-thumb {
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}
.zozo-view-list .post-thumb img {
    height: auto;
    max-width: 100%;
}
@media (max-width: 768px) {
    .zozo-view-list .event-list-layout {
        grid-template-columns: 1fr;
    }
    .zozo-view-list .event-media img {
        min-height: 220px;
    }
}
.post-title {
    font-size: 24px;
    margin: 0 0 12px;
    font-weight: 600;
    line-height: 35px;
}
.post-title a {
    text-decoration: none;
    color: #0b1220;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-organizer,
.post-location,
.eb-post-category,
.eb-post-tag,
.post-label,
.post-phone,
.el-organizer-name {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.label-name {
    color: #ffffff;
    font-size: 12px;
    padding: 6px 12px;
    line-height: 1;
    border-radius: 20px;
    background: var(--zozo-primary);
}
.zozo-event-masonry {
    position: relative;
    width: 100%;
    --ec-gutter: 0px;
}
/* Pre-Isotope / non-Isotope fallback sizing (editor Macy sets its own widths). */
.zozo-event-masonry:not(.isotope) .ec-masonry-item {
    width: calc(
        (100% - ((var(--ec-columns) - 1) * var(--ec-gutter)))
        / var(--ec-columns)
    );
    margin-bottom: var(--ec-gutter);
}
.zozo-masonry-event-calendar-inner {
    height: auto !important;
    display: block !important;
    overflow: hidden;
}
.ec-masonry-item {
    height: auto !important;
}
.post-thumb img {
    display: block;
    object-fit: cover;
}
.ec-masonry-item:nth-child(3n) img {
    aspect-ratio: 4/5;
}
.ec-masonry-item:nth-child(2n) img {
    aspect-ratio: 16/9;
}
.ec-masonry-item:nth-child(5n) img {
    aspect-ratio: 1/1;
}
/* CSS Grid only when Isotope is NOT active (avoids fighting absolute layout). */
.zozo-event-masonry:not(.isotope) {
    display: grid;
    grid-template-columns: repeat(var(--ec-columns), minmax(0, 1fr));
    gap: var(--ec-gutter);
}
/* Frontend Isotope owns positioning — neutralize grid/float competition. */
.zozo-event-masonry.isotope {
    display: block;
    grid-template-columns: none;
    gap: 0;
}
.zozo-event-masonry.isotope > .ec-masonry-item,
.zozo-event-masonry.isotope > .ec-isotope-item {
    float: none;
    clear: none;
    box-sizing: border-box;
    /* Horizontal gutter: Isotope masonry.gutter. Vertical: JS margin-bottom. */
    margin-left: 0;
    margin-right: 0;
}
@media (max-width: 1024px) {
    .zozo-event-masonry-wrapper .zozo-event-masonry:not(.isotope) {
        --ec-columns: var(--ec-columns-tablet, var(--ec-columns));
        grid-template-columns: repeat(var(--ec-columns), minmax(0, 1fr));
    }
}
@media (max-width: 767px) {
    .zozo-event-masonry-wrapper .zozo-event-masonry:not(.isotope) {
        --ec-columns: var(--ec-columns-mobile, var(--ec-columns));
        grid-template-columns: repeat(var(--ec-columns), minmax(0, 1fr));
    }
}
.ec-masonry-item {
    box-sizing: border-box;
    break-inside: avoid;
    transform: translateZ(0);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}
.ec-masonry-item.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
}
.ec-masonry-item.is-visible {
    opacity: 1;
}
.zozo-masonry-sizer {
    display: none;
}
.elementor-editor-active .zozo-event-masonry {
    padding-left: 0;
}
/* No !important — Isotope JS sets margin-bottom for vertical gutter. */
.zozo-event-masonry:not(.isotope) > .ec-isotope-item {
    margin-bottom: var(--ec-gutter, 0px);
}
/* Slider-styles */
.zozo-event-swiper-wrapper {
    position: relative;
    width: 100%;
}
.swiper .swiper-button-next, .swiper .swiper-button-prev {
    padding: 24px;
    background: var(--zozo-primary);
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--zozo-secondary-color);
    color: #fff;
}
.zozo-event-swiper-wrapper .swiper {
    width: 100%;
}
.zozo-event-swiper-wrapper .row {
    margin-left: 0;
    margin-right: 0;
}
.zozo-event-swiper-wrapper .swiper-slide[class*="col-"] {
    max-width: 100%;
}
.zozo-organizers-swiper .swiper-vertical .swiper-wrapper {
    align-items: center;
}
.zozo-organizers-swiper .swiper-vertical .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zozo-organizers-swiper .swiper-vertical .post-thumb img {
    max-height: 100%;
    width: auto;
}
.zozo-location-swiper .swiper-vertical .swiper-wrapper {
    align-items: center;
}
.zozo-location-swiper .swiper-vertical .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zozo-location-swiper .swiper-vertical .post-thumb img {
    max-height: 100%;
    width: auto;
}
.zozo-taxnomy-swiper .swiper-vertical .swiper-wrapper {
    align-items: center;
}
.zozo-taxnomy-swiper .swiper-vertical .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zozo-taxnomy-swiper .swiper-vertical .post-thumb img {
    max-height: 100%;
    width: auto;
}
.swiper-cards .swiper-slide{
    overflow: hidden;
}
.swiper.swiper-cards{
    overflow: hidden;
}
.ec-isotope-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 18px;
    margin: 30px 0 40px;
}
.ec-filter-group {
    display: flex;
    gap: 10px;
}
.ec-isotope-filters button {
    position: relative;
    background: transparent;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    cursor: pointer;
    border-radius: 999px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease;
    outline: none;
}
.ec-isotope-filters button:hover {
    color: var(--zozo-secondary-color);
    background: none;
    border-color: var(--zozo-secondary-color);
}
.ec-isotope-filters button.active {
    background: var(--zozo-primary);
    color: #ffffff;
    border-color: var(--zozo-primary);
}
.ec-isotope-filters button.active:hover {
    transform: none;
}
.swiper-slide-shadow,
.swiper-slide-shadow-left,
.swiper-slide-shadow-right,
.swiper-slide-shadow-top,
.swiper-slide-shadow-bottom,
.swiper-cube-shadow {
    display: none !important;
}
.zozo-event-swiper-wrapper,
.zozo-event-swiper-wrapper .swiper {
    overflow: hidden;
}
.zozo-event-swiper-wrapper .swiper-slide {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}
.zozo-event-swiper-wrapper .swiper-slide-active {
    z-index: 9;
}
.zozo-event-swiper-wrapper .swiper-slide .event-content {
    position: relative;
    z-index: 2;
    background: #ffffff;
}
@media (max-width: 768px) {
    .ec-isotope-filters {
        gap: 10px;
    }
    .ec-isotope-filters button {
        font-size: 12px;
        padding: 6px 14px;
    }
}
.organizer-social a {
    display: inline-block;
    color: #ffffff;
    background: var(--zozo-primary);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.organizer-social a:hover {
    opacity: 0.8;
}
.organizer-social a.facebook {
    background: #3b5998;
}
.organizer-social a.instagram {
    background: #e4405f;
}
.organizer-social a.linkedin {
    background: #0077b5;
}
.organizer-social a.twitter {
    background: #000;
}
.organizer-additional-box {
    margin-top: 25px;
    padding: 20px;
    background: #89eeff57;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.additional-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0b1220;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.skill-item {
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    text-align: center;
    font-size: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.skill-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-organizer-grid .post-thumb {
    position: relative;
    overflow: hidden;
}
.zozo-organizer-grid .post-thumb img {
    object-fit: cover;
    object-position: center;
    display: block;
}
.zozo-organizer-grid-wrapper .zozo-event-content {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zozo-organizer-grid-wrapper .post-title {
    margin: 0 0 4px;
}
.zozo-organizer-grid-wrapper .post-excerpt {
    margin-top: 4px;
    color: #64748b;
}
.zozo-organizer-grid-wrapper .ec-read-more {
    margin-top: 12px;
}
.zozo-view-list .zozo-organizer-item {
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.zozo-view-list .organizer-list-layout {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    /* background: #ffffff; */
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.zozo-view-list .organizer-list-layout:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}
.zozo-view-list .event-media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.zozo-view-list .event-media img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
/* CONTENT */
.zozo-view-list .organizer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.zozo-organizer-wrapper.zozo-view-list .zozo-organizer-list,
.zozo-organizer-wrapper.zozo-view-list .zozo-organizer-item,
.zozo-organizer-wrapper.zozo-view-list .zozo-organizer-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.zozo-organizer-list-item .zozo-organizer-inner {
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.zozo-organizer-list-item .event-media .post-thumb,
.zozo-organizer-list-item .event-media img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.zozo-organizer-list-item .organizer-content {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.zozo-organizer-list-item .ec-read-more {
    margin-top: 10px;
}
@media (max-width: 991px) {
    .zozo-view-list .organizer-list-layout {
        grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
        gap: 20px;
    }
    .zozo-organizer-list-item .zozo-organizer-inner {
        gap: 16px;
    }
    .zozo-organizer-list-item .event-media {
        flex: 0 1 42%;
        width: 42%;
        max-width: 300px;
    }
}
@media (max-width: 767px) {
    .zozo-view-list .organizer-list-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        padding: 18px;
    }
    .zozo-view-list .event-media img {
        min-height: 200px;
    }
    .zozo-organizer-list-item .zozo-organizer-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .zozo-organizer-list-item .event-media {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    .zozo-organizer-list-item .organizer-content {
        width: 100%;
    }
}
.zozo-location-grid .post-thumb {
    position: relative;
    overflow: hidden;
}
.zozo-location-grid .post-thumb img {
    object-fit: cover;
    object-position: center;
    display: block;
}
.zozo-location-grid-wrapper .zozo-event-content {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zozo-location-grid-wrapper .post-title {
    margin: 0 0 4px;
}
.zozo-location-grid-wrapper .post-excerpt {
    margin-top: 4px;
    color: #64748b;
}
.zozo-location-grid-wrapper .ec-read-more {
    margin-top: 12px;
}
/* List view */
.zozo-view-list .zozo-location-item {
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.zozo-view-list .location-list-layout {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.zozo-view-list .location-list-layout:hover {
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}
.zozo-view-list .event-media,
.zozo-view-list .location-list-layout > .event-media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.zozo-view-list .event-media img,
.zozo-view-list .location-list-layout > .event-media img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.zozo-view-list .location-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.zozo-location-wrapper.zozo-view-list .zozo-location-list,
.zozo-location-wrapper.zozo-view-list .zozo-location-item,
.zozo-location-wrapper.zozo-view-list .zozo-location-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.zozo-location-list-item .location-list-layout {
    display: grid;
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}
.zozo-location-list-item .event-media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.zozo-location-list-item .event-media .post-thumb,
.zozo-location-list-item .event-media img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
@media (max-width: 991px) {
    .zozo-view-list .location-list-layout,
    .zozo-location-list-item .location-list-layout {
        grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .zozo-view-list .location-list-layout,
    .zozo-location-list-item .location-list-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        padding: 18px;
    }
    .zozo-view-list .event-media img,
    .zozo-view-list .location-list-layout > .event-media img {
        min-height: 200px;
    }
}
.zozo-taxonomy-grid .post-thumb {
    position: relative;
    overflow: hidden;
}
.zozo-taxonomy-grid .post-thumb img {
    object-fit: cover;
    object-position: center;
    display: block;
}
.zozo-taxonomy-wrapper .zozo-event-content {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zozo-taxonomy-wrapper .post-title {
    margin: 0 0 4px;
}
.zozo-taxonomy-wrapper .post-excerpt {
    margin-top: 4px;
    color: #64748b;
}
.zozo-taxonomy-wrapper .ec-read-more {
    margin-top: 12px;
}
/* List view */
.zozo-view-list .zozo-taxonomy-list-item {
    margin-bottom: 30px;
}
.zozo-view-list .taxonomy-list-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 24px;
    padding: 24px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.zozo-view-list .taxonomy-list-layout:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
    border-color: rgb(40 164 255 / 10%);
}
.zozo-view-list .event-media {
    width: 100%;
    height: 100%;
    align-content: center;
}
.zozo-view-list .event-media img {
    height: 100%;
    object-fit: cover;
}
.zozo-view-list .taxonomy-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (max-width: 768px) {
    .zozo-view-list .taxonomy-list-layout {
        grid-template-columns: 1fr;
    }
}
.zozo-sponsor-grid.is-grid {
    display: grid;
    gap: 25px;
}
.zozo-sponsor-grid.is-marquee {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 25px;
    will-change: transform;
    transform: translate3d(0,0,0);
}
.zozo-sponsor-item {
    background: #ffffff;
    padding: 25px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 12px;
}
.zozo-sponsors-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.zozo-sponsor-section {
    overflow: hidden;
    width: 100%;
}
.zozo-sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
    border-color: rgb(40 164 255 / 10%);
}
.zozo-sponsor-item img {
    max-width: 120px;
    margin: 0 auto 10px;
}
.zozo-sponsor-grid.is-marquee .zozo-sponsor-item {
    flex: 0 0 auto;
    width: 450px;
    gap: 10px;
}
.zozo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 3px 8px;
    background: var(--zozo-secondary-color);
    color: #ffffff;
    border-radius: 3px;
}
.zozo-sponsor-heading h2 {
    text-align: center;
    margin: 40px 0 20px;
    color: #0b1220;
}
.zozo-sponsor-item img {
    transition: all 0.3s ease;
}
.zozo-sponsor-item:hover img {
    transform: scale(1.08);
}
.zozo-sponsor-cta {
    text-align: center;
    margin-top: 50px;
}
.zozo-cta-btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--zozo-secondary-color);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-cta-btn:hover {
    background: #ffffff;
    color: #0b1220;
}
.zozo-coming-countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.zozo-coming-countdown div {
    text-align: center;
}
.zozo-coming-countdown span {
    font-size: 32px;
    font-weight: 700;
}
.zozo-expired {
    text-align: center;
    font-size: 18px;
}
.zozo-coming-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--zozo-secondary-color), #1f2937);
    color: #ffffff;
    overflow: hidden;
}
.zozo-coming-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}
.zozo-coming-inner {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}
.zozo-coming-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
.zozo-coming-desc {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
}
/* COUNTDOWN */
.zozo-style-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.zozo-style-modern .cd-box {
    background: rgba(255,255,255,0.1);
    padding: 20px 25px;
    border-radius: 12px;
    min-width: 90px;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-style-modern .cd-box:hover {
    transform: translateY(-5px);
}
.zozo-style-modern span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}
.zozo-style-modern label {
    font-size: 12px;
    opacity: 0.7;
    color: #ffffff;
}
.zozo-coming-cta {
    margin-top: 40px;
}
.zozo-coming-cta .zozo-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--zozo-primary), #007ea9);
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-coming-cta .zozo-btn:hover {
    background: linear-gradient(135deg, #0ec1ff, #007ea9);
}
.zozo-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        270deg,
        var(--zozo-primary),
        #007ea9,
        var(--zozo-secondary-color),
        #0ec1ff
    );
    background-size: 800% 800%;
    animation: gradientMove 15s ease infinite;
    z-index: 0;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.zozo-bg-blobs::before,
.zozo-bg-blobs::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: floatBlob 12s infinite ease-in-out;
}
.zozo-bg-blobs::before {
    background: #007ea9;
    top: 10%;
    left: 10%;
}
.zozo-bg-blobs::after {
    background: var(--zozo-primary);
    bottom: 10%;
    right: 10%;
    animation-delay: 5s;
}
@keyframes floatBlob {
    0%,
    100% {
        transform: translate(0,0);
    }
    50% {
        transform: translate(50px, -50px);
    }
}
.zozo-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}
.zozo-video-btn {
    width: 80px;
    height: 80px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-video-btn:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid #ffffff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.zozo-video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.zozo-video-inner {
    position: relative;
    width: 80%;
    max-width: 900px;
}
.zozo-video-inner iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}
.zozo-video-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
}
.zozo-video-wrap {
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}
.zozo-coming-countdown.gsap-style {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.comming-cd-box {
    position: relative;
    width: 90px;
    height: 100px;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
}
.comming-cd-box span {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    height: 40px;
    line-height: 40px;
    transform: translateY(0);
    will-change: transform, opacity;
    font-variant-numeric: tabular-nums;
}
.comming-cd-box label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.anim-number {
    position: absolute;
    left: 0;
    right: 0;
    font-size: 34px;
    font-weight: 700;
    color: var(--zozo-primary);
    z-index: 3;
    pointer-events: none;
}
.comming-cd-box {
    position: relative;
    overflow: hidden;
}
.comming-cd-box span {
    display: inline-block;
    min-width: 40px;
    text-align: center;
}
.anim-number {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
}
@media (max-width: 768px) {
    .zozo-coming-wrapper {
        min-height: auto;
        padding: 80px 20px;
    }
    .zozo-coming-inner {
        width: 100%;
        max-width: 100%;
    }
    .zozo-coming-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .zozo-coming-desc {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    /* COUNTDOWN */
.zozo-style-modern,
.zozo-coming-countdown.gsap-style {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}
.zozo-style-modern .cd-box,
.comming-cd-box {
    flex: 1;
    min-width: 0;
    width: auto;
    height: auto;
    padding: 14px 6px;
    border-radius: 12px;
}
.zozo-style-modern span,
.comming-cd-box span,
.anim-number {
    font-size: 20px;
    line-height: 1;
    height: auto;
    min-width: auto;
}
.zozo-style-modern label,
.comming-cd-box label {
    font-size: 10px;
    margin-top: 6px;
    display: block;
    color: #ffffff;
}
.zozo-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
}
.zozo-video-wrap {
    margin: 25px 0;
    gap: 10px;
    flex-direction: column;
}
.zozo-video-btn {
    width: 65px;
    height: 65px;
}
.play-icon {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
}
.zozo-video-inner {
    width: 95%;
}
.zozo-video-inner iframe {
    height: 275px;
}
.zozo-video-close {
    top: -35px;
    right: 5px;
    font-size: 24px;
}
.zozo-bg-blobs::before,
.zozo-bg-blobs::after {
    width: 250px;
    height: 250px;
    filter: blur(80px);
}
}
/* Pricing Table */
.pricing-table-wrapper {
    overflow: hidden;
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.pricing-table-info > * {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}
.pricing-inner-wrapper {
    padding: 35px 0;
}
.pricing-inner-wrapper > *:last-child {
    margin-bottom: 0;
}
.content-area .page .pricing-table-body ul {
    padding: 0;
}
ul.pricing-features-list > li {
    display: inline-block;
    border: medium none;
    background: unset;
    padding-left: 0;
    padding-right: 0;
}
li.list-group-item.feature-inactive {
    color: #64748b;
    opacity: 0.3;
}
.pricing-icon > span {
    font-size: 60px;
}
.corner-ribbon {
    width: 180px;
    background: var(--zozo-primary);
    position: absolute;
    top: 25px;
    left: -50px;
    text-align: center;
    line-height: 30px;
    letter-spacing: 1px;
    color: #ffffff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.corner-ribbon.top-left {
    top: 25px;
    left: -50px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.corner-ribbon.top-right {
    top: 17px;
    right: -55px;
    left: auto;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
}
.corner-ribbon.bottom-left {
    top: auto;
    bottom: 25px;
    left: -50px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.corner-ribbon.bottom-right {
    top: auto;
    right: -50px;
    bottom: 25px;
    left: auto;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.pricing-table-wrapper .pricing-title {
    font-size: 23px;
    line-height: 1;
    color: #0b1220;
}
.price-after p {
    margin-bottom: 0;
}
.pricing-inner-wrapper > .pricing-image {
    padding: 0;
}
.pricing-table-wrapper .btn {
    color: #ffffff;
}
.pricing-table-wrapper .btn:hover {
    color: #ffffff;
}
.pricing-style-default .pricing-table-info {
    background: var(--zozo-secondary-color);
    color: #ffffff;
}
.pricing-style-default .pricing-table-foot .btn {
    display: block;
}
.pricing-table-wrapper.pricing-style-classic,
.pricing-style-classic .pricing-table-info p {
    background: #ffffff;
    color: #0b1220;
}
.pricing-style-classic .pricing-title {
    font-size: 24px;
}
.pricing-style-classic .price-text p {
    font-size: 36px;
}
.pricing-style-classic .btn {
    display: block;
    padding: 15px 0;
}
.pricing-style-classic .btn:hover {
    color: #ffffff;
}
.pricing-style-classic.pricing-table-wrapper:hover ul li:before {
    color: inherit;
}
.pricing-style-classic.pricing-table-wrapper ul > li {
    padding: 4px 0;
    color: inherit;
}
.pricing-style-classic .price-after {
    font-weight: 400;
}
.pricing-style-classic .pricing-inner-wrapper > * {
    padding: 0;
}
.pricing-style-classic .pricing-inner-wrapper > .pricing-table-body {
    margin-bottom: 0;
}
.pricing-style-classic .pricing-inner-wrapper {
    padding-bottom: 0;
}
.pricing-table-wrapper.pricing-style-classic .pricing-inner-wrapper {
    border-bottom: 3px solid var(--zozo-primary);
}
.pricing-style-modern .pricing-inner-wrapper {
    border-radius: 12px;
}
.pricing-style-modern ul.pricing-features-list > li {
    box-shadow: 0px 6px 3px -7px rgb(0 0 0 / 50%);
    -webkit-box-shadow: 0px 6px 3px -7px rgb(0 0 0 / 50%);
    -moz-box-shadow: 0px 6px 9px -7px rgba(0,0,0,0.5);
    -ms-box-shadow: 0px 6px 9px -7px rgba(0,0,0,0.5);
    -o-box-shadow: 0px 6px 9px -7px rgba(0,0,0,0.5);
}
.pricing-style-modern ul.pricing-features-list > li:last-child {
    box-shadow: none;
}
.pricing-style-modern .pricing-table-foot .btn {
    display: block;
    border-radius: 0;
}
figure.pricing-image,
figure.pricing-image > img {
    display: inline-block;
}
.pricing-table-wrapper ul > li {
    padding: 7px 0;
    margin: 0;
}
.pricing-table-wrapper ul {
    padding: 0;
    margin: 0;
}
.pricing-icon-wrap .pricing-icon {
    display: inline-block;
    text-align: center;
}
.cea-shape-circle .pricing-icon,
.cea-shape-square .pricing-icon {
    padding: 30px;
}
.pricing-icon i,
.pricing-icon svg {
    position: relative;
    transform: rotate(0deg);
    display: block;
}
.cea-shape-circle .pricing-icon {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.cea-view-framed .pricing-icon {
    color: #0b1220;
    border: 3px solid #0b1220;
    background-color: transparent;
}
.pricing-video {
    width: 500px;
    margin: auto;
    height: 315px;
}
.pricing-icon svg {
    width: 25px;
}
/* event-bilder-schedule-styles  */
.zozo-single-schedule-widget{
    padding:32px;
    background:#ffffff;
    border:1px solid rgba(15, 23, 42, 0.06);
    border-radius:28px;
    box-shadow:0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-schedule-heading{
    font-size:20px;
    font-weight:800;
    color:#0b1220;
    margin-bottom:24px;
}
.zozo-single-schedule-list{
    position:relative;
    padding-left:40px;
}
.zozo-single-session-card{
    position:relative;
    padding:0 0 35px 25px;
}
.zozo-single-schedule-list .zozo-single-session-card::before{
    content:'';
    position:absolute;
    left:-32px;
    top:6px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--zozo-primary);
    border:3px solid #fff;
    box-shadow:0 0 0 3px rgba(16,185,129,0.2);
}
.zozo-session-time{
    color:var(--zozo-primary);
    font-weight:700;
    margin-bottom:6px;
}
.zozo-single-session-card h5{
    margin:0 0 6px;
    font-size:16px;
    color:#0b1220;
}
.zozo-single-session-card p{
    color:#64748b;
    line-height:1.6;
}
.zozo-single-tabs-nav{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}
.zozo-single-tab-btn{
    padding:10px 18px;
    border-radius:12px;
    background:#89eeff57;
    border:1px solid rgba(15, 23, 42, 0.06);
    cursor:pointer;
    transition:all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-single-tab-btn.active{
    background:var(--zozo-primary);
    color:#fff;
}
.zozo-event-schedule-swiper{
    padding-bottom:50px;
}
.zozo-event-schedule-swiper .swiper-slide{
    background:#fff;
    padding:20px;
    border-radius:20px;
    border:1px solid rgba(15, 23, 42, 0.06);
}
/* Organizer Slider */
.zozo-organizer-slider{
    position:relative;
}
/* Leave space inside the slider for controls */
.zozo-organizer-slider .swiper{
    padding-bottom:70px;
}
/* Pagination */
.zozo-organizer-slider .swiper-pagination{
    position:absolute;
    left:50%;
    bottom:25px;
    transform:translateX(-50%);
    width:auto;
    z-index:20;
}
/* Navigation */
.zozo-organizer-slider .swiper-button-prev,
.zozo-organizer-slider .swiper-button-next{
    position:absolute;
    bottom:18px;
    top:auto;
    transform:none;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    z-index:20;
}
.zozo-organizer-slider .swiper-button-prev{
    left:25px;
}
.zozo-organizer-slider .swiper-button-next{
    right:25px;
}
.zozo-event-file-list,
.zozo-location-details{
    list-style: none;
}
.zozo-label{
    padding: 4px;
}
.event-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
    transition: all .35s ease;
}
.event-details h3 a {
    text-decoration: none;
    color: #0b1220;
    transition: color 0.2s ease;
    margin-left: 10px;
}
.event-details-date {
    color: #64748b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--zozo-primary);
    font-size: 13.6px;
    font-weight: 600;
    margin-left: 10px;
}
.event-details p {
    color: #475569;
    line-height: 1.7;
    font-size: 15.2px;
    margin-left: 10px;
}
.zozo-readmore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    max-width: max-content;
    padding: 12px 22px;
    margin: 0px 0 18px 10px;
    background: #10b981;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(16, 185, 129, .25);
    transition: all .3s ease;
}
.zozo-readmore-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}
.zozo-event-map-widget{
    display:block;
    box-sizing:border-box;
    width:100%;
    overflow: hidden;
}
.zozo-event-map{
    display:block;
    box-sizing:border-box;
    width:100%;
}
.zozo-event-map iframe{
    display:block;
    width:100%;
    border:0;
}
.zozo-map-btn-wrap{
    display:block;
}
.zozo-map-btn{
    display:inline-block;
    box-sizing:border-box;
    text-decoration:none;
    transition:all .3s ease;
}
.zozo-event-timeline-filter{
    display: flex;
}
/* Recurring event Event Ended notice */
.zozo-eb-event-ended-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px 0;
    padding: 14px 16px;
    border: 1px solid #e2b96e;
    border-left-width: 4px;
    border-radius: 6px;
    background: #fff8eb;
    color: #5c4510;
    box-sizing: border-box;
}
.zozo-eb-event-ended-icon {
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 1.4;
}
.zozo-eb-event-ended-title {
    display: block;
    margin: 0 0 4px;
    font-size: 15px;
}
.zozo-eb-event-ended-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}
.zozo-eb-event-ended-inline {
    margin-top: 8px;
    padding: 8px 10px;
}
.zozo-eb-date-badge-ended {
    opacity: 0.85;
}
.zozo-countdown-ended .ended,
.zozo-countdown .ended {
    margin-top: 10px;
    font-weight: 600;
}
/*-------------------------------------------------------------------------------------------
 Widget Element Styles
-------------------------------------------------------------------------------------------*/
/*-------------------------------------------
Event Date Badge
--------------------------------------------*/
.el-zozo-grid-event-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    padding: 8px 12px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
    z-index: 2;
}
.el-zozo-grid-event-date-badge .el-day {
    font-size: 24px;
    display: block;
    line-height: 1;
}
.el-zozo-grid-event-date-badge .el-month {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.el-zozo-grid-event-date-badge .el-year {
    font-size: 12px;
    opacity: 0.8;
}
/*-------------------------------------------
Event Builder Inner
--------------------------------------------*/
.event-builder-inner {
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}
/*-------------------------------------------------------------------------------------------
 Elementor - Event Dark Mode
-------------------------------------------------------------------------------------------*/
.variation-dark .event-builder-inner, 
.zozo-taxonomy-wrapper.variation-dark .event-builder-inner, 
.zozo-event-masonry-wrapper.variation-dark .event-builder-inner, 
.zozo-location-wrapper.variation-dark .event-builder-inner, 
.zozo-organizer-slider-wrapper.variation-dark .zozo-organizer-inner,
.zozo-location-slider-wrapper.variation-dark .event-builder-inner,
.organizer-list-layout.variation-dark .event-builder-inner, 
.zozo-taxonomy-slider-wrapper.variation-dark .event-builder-inner,
.zozo-event-grid-wrapper.variation-dark .event-builder-inner,
.variation-dark .zozo-masonry-event-calendar-inner,
.zozo-organizer-slider-wrapper.variation-dark .event-builder-inner,
.zozo-organizer-wrapper.variation-dark .event-builder-inner,
.zozo-organizer-wrapper.variation-dark .zozo-organizer-inner,
.zozo-event-slide-wrapper.variation-dark .event-builder-inner,
.zozo-event-list-wrapper.variation-dark .event-builder-inner {
    background: #000;
    color: #fff;
}
.variation-dark .post-title a,
.variation-dark .el-organizer-name a {
    color: #ffffff;
}
.variation-dark .ec-read-more a {
    background: #ffffff;
    color: #0b1220;
}
/*-------------------------------------------------------------------------------------------
 Elementor - Event Grid
-------------------------------------------------------------------------------------------*/
.zozo-event-grid-wrapper .post-thumb {
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}
.zozo-event-grid-wrapper .post-thumb img {
    object-fit: cover;
}
.zozo-event-grid-wrapper .post-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}
.zozo-event-grid-wrapper .post-excerpt {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 16px;
}
.zozo-event-grid-wrapper:not(.layout-default) .post-thumb {
    margin-right: -24px;
    margin-left: -24px;
    margin-top: -24px;
    margin-bottom: 18px;
}
.zozo-event-grid-wrapper:not(.layout-default) .post-thumb img {
    transition: transform 0.3s ease;
}
.zozo-event-grid-wrapper:not(.layout-default) .event-builder-inner:hover .post-thumb img {
    transform: scale(1.04);
}
/*-------------------------------------------
 Grid Classic
--------------------------------------------*/
.zozo-event-grid-wrapper.layout-classic .event-builder-inner {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.35s ease;
    padding: 24px;
}
.zozo-event-grid-wrapper.layout-classic .event-builder-inner:hover {
    transform: translateY(-4px);
    border-color: rgb(40 164 255 / 10%);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.zozo-event-grid-wrapper.layout-classic .post-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(15, 23, 42, 0.08));
    pointer-events: none;
}
.zozo-event-grid-wrapper.layout-classic .el-zozo-grid-event-date-badge {
    top: 16px;
    left: 16px;
    min-width: 64px;
    padding: 10px 12px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
/*-------------------------------------------
 Grid Modern
--------------------------------------------*/
.zozo-event-grid-wrapper.layout-modern .event-builder-inner {
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    padding: 24px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: all 0.35s ease;
}
.zozo-event-grid-wrapper.layout-modern .event-builder-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-event-grid-wrapper.layout-modern .el-zozo-grid-event-date-badge {
    top: 0;
    left: 0;
    width: 88px;
    height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4));
    color: #fff;
    border-radius: 0 0 20px 0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}
/*-------------------------------------------
 Grid Classic Pro
--------------------------------------------*/
.zozo-event-grid-wrapper.layout-classic-pro .event-builder-inner {
    border-radius: 12px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    transition: all 0.35s ease;
    padding: 24px;
}
.zozo-event-grid-wrapper.layout-classic-pro .event-builder-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-event-grid-wrapper.layout-classic-pro .post-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.28), transparent 55%);
    pointer-events: none;
}
.zozo-event-grid-wrapper.layout-classic-pro .el-zozo-grid-event-date-badge {
    top: 20px;
    left: 20px;
    min-width: 76px;
    padding: 12px 14px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}
.zozo-event-grid-wrapper.layout-classic-pro .label-name {
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
}
/*-------------------------------------------------------------------------------------------
 Elementor - Event List
-------------------------------------------------------------------------------------------*/
.event-media {
    position: relative;
    overflow: hidden;
}
.event-builder-inner.row {
    align-items: center;
}
.event-builder-inner.row > * {
    padding-left: 0;
    padding-right: 0;
}
.zozo-event-list-wrapper .event-content {
    padding: 24px;
}
.zozo-event-list-wrapper:not(.layout-default) .event-media img {
    object-fit: cover;
    transition: transform 0.35s ease;
}
.zozo-event-list-wrapper:not(.layout-default) .event-builder-inner:hover .event-media img {
    transform: scale(1.05);
}
/*-------------------------------------------
 List Classic
--------------------------------------------*/
.zozo-event-list-wrapper.layout-classic .event-builder-inner {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.35s ease;
}
.zozo-event-list-wrapper.layout-classic .event-builder-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.zozo-event-list-wrapper.layout-classic .zozo-list-event-date-badge,
.zozo-event-list-wrapper.layout-classic .el-zozo-grid-event-date-badge {
    top: 16px;
    left: 16px;
    min-width: 64px;
    padding: 10px 12px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
/*-------------------------------------------
 List Modern
--------------------------------------------*/
.zozo-event-list-wrapper.layout-modern .event-builder-inner {
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.35s ease;
}
.zozo-event-list-wrapper.layout-modern .event-builder-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-event-list-wrapper.layout-modern .zozo-list-event-date-badge,
.zozo-event-list-wrapper.layout-modern .el-zozo-grid-event-date-badge {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4));
    color: #fff;
    border-radius: 0 0 20px 0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}
/*-------------------------------------------
 List Classic Pro
--------------------------------------------*/
.zozo-event-list-wrapper.layout-classic-pro .event-builder-inner {
    border-radius: 12px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    transition: all 0.35s ease;
}
.zozo-event-list-wrapper.layout-classic-pro .event-builder-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-event-list-wrapper.layout-classic-pro .zozo-list-event-date-badge,
.zozo-event-list-wrapper.layout-classic-pro .el-zozo-grid-event-date-badge {
    top: 20px;
    left: 20px;
    min-width: 76px;
    padding: 12px 14px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}
/*-------------------------------------------------------------------------------------------
 Elementor - Event Masonry
-------------------------------------------------------------------------------------------*/
.zozo-masonry-event-calendar-inner .post-thumb {
    margin-bottom: 12px;
}
.zozo-event-masonry-wrapper:not(.layout-default) .zozo-masonry-event-calendar-inner {
    padding: 24px;
}
.zozo-event-masonry-wrapper:not(.layout-default) .post-thumb {
    margin-right: -24px;
    margin-left: -24px;
    margin-top: -24px;
    margin-bottom: 18px;
}
.zozo-event-masonry-wrapper:not(.layout-default) .post-thumb img {
    transition: transform 0.35s ease;
}
.zozo-event-masonry-wrapper:not(.layout-default) .zozo-masonry-event-calendar-inner:hover .post-thumb img {
    transform: scale(1.05);
}
/*-------------------------------------------
 Masonry Classic
--------------------------------------------*/
.zozo-event-masonry-wrapper.layout-classic .zozo-masonry-event-calendar-inner {
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.35s ease;
    padding: 24px;
}
.zozo-event-masonry-wrapper.layout-classic .zozo-masonry-event-calendar-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
/*-------------------------------------------
 Masonry Classic Pro
--------------------------------------------*/
.zozo-event-masonry-wrapper.layout-classic-pro .zozo-masonry-event-calendar-inner {
    border-radius: 12px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    transition: all 0.35s ease;
    padding: 24px;
}
.zozo-event-masonry-wrapper.layout-classic-pro .zozo-masonry-event-calendar-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
/*-------------------------------------------
 Masonry Modern
--------------------------------------------*/
.zozo-event-masonry-wrapper.layout-modern .zozo-masonry-event-calendar-inner {
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.35s ease;
}
.zozo-event-masonry-wrapper.layout-modern .zozo-masonry-event-calendar-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-event-masonry-wrapper.layout-modern .el-zozo-grid-event-date-badge {
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4));
    color: #fff;
    border-radius: 0 0 18px 0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}
/*-------------------------------------------
 Masonry Classic Pro
--------------------------------------------*/
.zozo-event-masonry-wrapper.layout-classic-pro .zozo-masonry-event-calendar-inner {
    border-radius: 12px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    transition: all 0.35s ease;
}
.zozo-event-masonry-wrapper.layout-classic-pro .zozo-masonry-event-calendar-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-event-masonry-wrapper.layout-classic-pro .el-zozo-grid-event-date-badge {
    top: 20px;
    left: 20px;
    min-width: 76px;
    padding: 12px 14px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}
/*-------------------------------------------------------------------------------------------
 Elementor - Event Slider
-------------------------------------------------------------------------------------------*/
.zozo-event-slide-wrapper .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-event-slide-wrapper .event-builder-inner {
    width: 100%;
}
.zozo-event-slide-wrapper .post-thumb {
    margin-bottom: 12px;
}
.zozo-event-slide-wrapper:not(.layout-default) .event-builder-inner {
    padding: 24px;
}
.zozo-event-slide-wrapper:not(.layout-default) .post-thumb {
    margin-right: -24px;
    margin-left: -24px;
    margin-top: -24px;
    margin-bottom: 18px;
}
.zozo-event-slide-wrapper:not(.layout-default) .post-thumb img {
    transition: transform 0.35s ease;
}
.zozo-event-slide-wrapper:not(.layout-default) .event-builder-inner:hover .post-thumb img {
    transform: scale(1.05);
}
/*-------------------------------------------
 Slider Classic
--------------------------------------------*/
.zozo-event-slide-wrapper.layout-classic .event-builder-inner {
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    transition: all 0.35s ease;
}
.zozo-event-slide-wrapper.layout-classic .event-builder-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
/*-------------------------------------------
 Slider Classic Pro
--------------------------------------------*/
.zozo-event-slide-wrapper.layout-classic-pro .event-builder-inner {
    border-radius: 12px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    transition: all 0.35s ease;
}
.zozo-event-slide-wrapper.layout-classic-pro .event-builder-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-event-slide-wrapper.layout-classic-pro .el-zozo-grid-event-date-badge {
    top: 20px;
    left: 20px;
    min-width: 76px;
    padding: 12px 14px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}
/*-------------------------------------------
 Slider Modern
--------------------------------------------*/
.zozo-event-slide-wrapper.layout-modern .event-builder-inner {
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.35s ease;
}
.zozo-event-slide-wrapper.layout-modern .event-builder-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-event-slide-wrapper.layout-modern .el-zozo-grid-event-date-badge {
    top: 0;
    left: 0;
    width: 88px;
    height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4));
    color: #fff;
    border-radius: 0 0 20px 0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}
/*-------------------------------------------------------------------------------------------
 Elementor - Event Countdown
-------------------------------------------------------------------------------------------*/
.zozo-countdown {
    display: flex;
    min-height: 400px;
    position: relative;
}
/*-------------------------------------------
 Countdown Modern
--------------------------------------------*/
.zozo-countdown.layout-modern {
    position: relative;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.layout-modern .cd-image {
    display: none;
}
.layout-modern .cd-title {
    color: #ffffff;
}
.zozo-countdown.layout-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
    z-index: 1;
}
.layout-modern .cd-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    padding: 60px;
}
.layout-modern .cd-box {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}
/*-------------------------------------------
 Countdown Minimal
--------------------------------------------*/
.zozo-countdown.layout-minimal {
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #ffffff;
}
.layout-minimal .cd-image {
    width: 50%;
    min-height: 100%;
}
.layout-minimal .cd-content {
    width: 65%;
    padding: 30px 40px;
}
.layout-minimal .cd-box {
    background: #89eeff57;
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.layout-minimal .cd-title {
    color: #0b1220;
}
/*-------------------------------------------
 Countdown Boxed
--------------------------------------------*/
.zozo-countdown.layout-boxed {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
    transition: all 0.35s ease;
}
.layout-boxed .cd-image {
    width: 45%;
}
.layout-boxed .cd-content {
    width: 55%;
    padding: 40px;
}
.layout-boxed .cd-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.layout-boxed:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}
.cd-timer {
    display: flex;
    gap: 15px;
    margin: 20px 0 20px 0;
    justify-content: flex-start;
}
.layout-modern .cd-timer {
    justify-content: flex-start;
}
.layout-minimal .cd-timer,
.layout-boxed .cd-timer {
    justify-content: flex-start;
}
.cd-box {
    min-width: 75px;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cd-box span {
    font-size: 28px;
    font-weight: 700;
}
.cd-box small {
    font-size: 12px;
    opacity: 0.6;
}
.cd-box:hover {
    transform: translateY(-3px);
}
.zozo-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.layout-modern .zozo-btn {
    background: var(--zozo-primary);
    color: #ffffff;
    border-radius: 30px;
}
.layout-modern .zozo-btn:hover {
    background: #0ec1ff;
}
.layout-minimal .zozo-btn {
    background: transparent;
    border: 1px solid #0b1220;
    color: #0b1220;
}
.layout-minimal .zozo-btn:hover {
    background: #0b1220;
    color: #ffffff;
}
.layout-boxed .zozo-btn {
    background: var(--zozo-secondary-color);
    color: #ffffff;
    border-radius: 12px;
}
.layout-boxed .zozo-btn:hover {
    background: #1f2937;
}
.cd-extra-text {
    margin-top: 10px;
    font-size: 14px;
    color: var(--zozo-primary);
    font-weight: 500;
    position: absolute;
    z-index: 10;
}
/*-------------------------------------------------------------------------------------------
 Elementor - Organizer Grid/List
-------------------------------------------------------------------------------------------*/
.zozo-organizer-wrapper .event-builder-inner {
    background: #ffffff;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-organizer-wrapper .event-builder-inner .post-thumb {
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}
.zozo-organizer-wrapper .el-organizer-name {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #0b1220;
}
.zozo-organizer-wrapper .el-organizer-name a {
    text-decoration: none;
    color: #0b1220;
    transition: all 0.3s ease;
}
.zozo-organizer-wrapper .el-organizer-name a:hover,
.zozo-organizer-wrapper .post-organizer a {
    color: var(--zozo-primary);
}
.zozo-organizer-wrapper .post-organizer a:hover {
    color: var(--zozo-secondary-color);
}
.zozo-organizer-wrapper:not(.layout-default) .event-builder-inner .post-thumb {
    margin-right: -24px;
    margin-left: -24px;
    margin-top: -24px;
    margin-bottom: 18px;
}
.zozo-organizer-wrapper:not(.layout-default) .event-builder-inner .post-thumb img {
    transition: transform 0.3s ease;
}
.zozo-organizer-wrapper:not(.layout-default) .event-builder-inner:hover .post-thumb img {
    transform: scale(1.04);
}
/*-------------------------------------------
 Organizer Grid/List CLASSIC
--------------------------------------------*/
.zozo-organizer-wrapper.layout-classic .event-builder-inner {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    padding: 24px;
    transition: all 0.35s ease;
}
.zozo-organizer-wrapper.layout-classic .event-builder-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
/*-------------------------------------------
 Organizer Grid/List CLASSIC PRO
--------------------------------------------*/
.zozo-organizer-wrapper.layout-classic-pro .event-builder-inner {
    border-radius: 28px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    padding: 24px;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.zozo-organizer-wrapper.layout-classic-pro .event-builder-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-organizer-wrapper.layout-classic-pro .post-thumb img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.zozo-organizer-wrapper.layout-classic-pro .event-builder-inner:hover .post-thumb img {
    transform: scale(1.07);
}
/*-------------------------------------------
 Organizer Grid/List MODERN
--------------------------------------------*/
.zozo-organizer-wrapper.layout-modern .event-builder-inner {
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 24px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.zozo-organizer-wrapper.layout-modern .event-builder-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
/*-------------------------------------------
 LIST VIEW HORIZONTAL LAYOUTS
--------------------------------------------*/
.zozo-organizer-wrapper.zozo-view-list,
.zozo-location-wrapper.zozo-view-list {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.zozo-organizer-wrapper.zozo-view-list.layout-classic .organizer-list-layout,
.zozo-organizer-wrapper.zozo-view-list.layout-classic-pro .organizer-list-layout,
.zozo-organizer-wrapper.zozo-view-list.layout-modern .organizer-list-layout {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.zozo-organizer-wrapper.zozo-view-list.layout-default .organizer-list-layout {
    padding: 20px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zozo-organizer-wrapper.zozo-view-list.layout-default .organizer-list-layout:hover {
    border-color: rgb(40 164 255 / 10%);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.zozo-organizer-wrapper.zozo-view-list.layout-classic .organizer-list-layout {
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.zozo-organizer-wrapper.zozo-view-list.layout-classic .organizer-list-layout:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.zozo-organizer-wrapper.zozo-view-list.layout-classic-pro .organizer-list-layout {
    padding: 28px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.zozo-organizer-wrapper.zozo-view-list.layout-classic-pro .organizer-list-layout:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-organizer-wrapper.zozo-view-list.layout-modern .organizer-list-layout {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.zozo-organizer-wrapper.zozo-view-list.layout-modern .organizer-list-layout:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-organizer-wrapper.zozo-view-list .event-media img {
    object-fit: cover;
}
.zozo-organizer-wrapper.zozo-view-list.layout-classic .event-media img,
.zozo-organizer-wrapper.zozo-view-list.layout-classic-pro .event-media img {
    border-radius: 16px;
}
.zozo-organizer-wrapper.zozo-view-list.layout-classic-pro .event-media img {
    border-radius: 20px;
    min-height: 280px;
}
.zozo-organizer-wrapper.zozo-view-list.layout-modern .event-media img {
    border-radius: 18px;
}
/*-------------------------------------------------------------------------------------------
 Elementor - Organizer Slider
-------------------------------------------------------------------------------------------*/
.zozo-organizer-slider-wrapper .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-organizer-slider-wrapper .event-builder-inner {
    width: 100%;
}
.zozo-organizer-slider-wrapper .post-thumb {
    margin-bottom: 12px;
}
.zozo-organizer-slider-wrapper:not(.layout-default) .event-builder-inner {
    padding: 24px;
}
.zozo-organizer-slider-wrapper:not(.layout-default) .post-thumb {
    margin-right: -24px;
    margin-left: -24px;
    margin-top: -24px;
    margin-bottom: 18px;
}
.zozo-organizer-slider-wrapper:not(.layout-default) .post-thumb img {
    transition: transform 0.35s ease;
}
.zozo-organizer-slider-wrapper:not(.layout-default) .event-builder-inner:hover .post-thumb img {
    transform: scale(1.05);
}
.zozo-organizer-slider-wrapper .el-organizer-name {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}
/*-------------------------------------------
 ORGANIZER SLIDER CLASSIC
--------------------------------------------*/
.zozo-organizer-slider-wrapper.layout-classic .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-organizer-slider-wrapper.layout-classic .event-builder-inner {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.35s ease;
}
.zozo-organizer-slider-wrapper.layout-classic .event-builder-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.zozo-organizer-slider-wrapper.layout-classic .post-thumb {
    overflow: hidden;
}
.zozo-organizer-slider-wrapper.layout-classic .post-thumb img {
    object-fit: cover;
    transition: transform 0.65s ease;
}
.zozo-organizer-slider-wrapper.layout-classic .event-builder-inner:hover .post-thumb img {
    transform: scale(1.05);
}
/*-------------------------------------------
 ORGANIZER SLIDER CLASSIC PRO
--------------------------------------------*/
.zozo-organizer-slider-wrapper.layout-classic-pro .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-organizer-slider-wrapper.layout-classic-pro .event-builder-inner {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    box-shadow: 0 12px 44px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}
.zozo-organizer-slider-wrapper.layout-classic-pro .event-builder-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
}
.zozo-organizer-slider-wrapper.layout-classic-pro .post-thumb {
    overflow: hidden;
}
.zozo-organizer-slider-wrapper.layout-classic-pro .post-thumb img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.zozo-organizer-slider-wrapper.layout-classic-pro .event-builder-inner:hover .post-thumb img {
    transform: scale(1.07);
}
/*-------------------------------------------
 ORGANIZER SLIDER MODERN
--------------------------------------------*/
.zozo-organizer-slider-wrapper.layout-modern .swiper-slide {
    height: auto;
    display: flex;
}
.zozo-organizer-slider-wrapper.layout-modern .event-builder-inner {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: all 0.35s ease;
}
.zozo-organizer-slider-wrapper.layout-modern .event-builder-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}
.zozo-organizer-slider-wrapper.layout-modern .post-thumb img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.zozo-organizer-slider-wrapper.layout-modern .event-builder-inner:hover .post-thumb img {
    transform: scale(1.04);
}
/*-------------------------------------------------------------------------------------------
 Elementor - Event Schedule
-------------------------------------------------------------------------------------------*/
.zs-day-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.zozo-schedule-wrapper:not(.layout-slider) .zs-day-box {
    color: #ffffff;
    background: var(--zozo-primary);
}
.zs-day-box {
    min-width: 140px;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    border-radius: 12px;
}
.zs-day-title {
    display: block;
    font-size: 16px;
}
.zs-day-date {
    font-size: 12px;
    opacity: 0.9;
}
.zs-day-content {
    flex: 1;
    background: #ffffff;
    padding: 0 20px 0 20px;
}
.zozo-schedule-wrapper.layout-slider .zs-day-box {
    margin-bottom: 20px;
}
.zozo-schedule-wrapper.layout-slider .zs-day-box .zs-day-title {
    font-size: 24px;
}
.zs-sticky-day,
.zozo-schedule-wrapper:not(.layout-slider) .zs-day-box {
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.zozo-schedule-wrapper,
.zozo-sticky-schedule-wrapper,
.zs-day-row {
    overflow: visible !important;
}
.zs-day-title {
    font-weight: 600;
    font-size: 16px;
}
.zs-day-date {
    font-size: 13px;
    opacity: 0.7;
    margin-left: 8px;
}
.zs-item {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    margin-bottom: 20px;
}
.zs-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.zs-item-main {
    display: flex;
    align-items: start;
    /* justify-content: space-between; */
    /* gap: 20px; */
    flex-wrap: wrap;
}
.zs-left {
    flex-shrink: 0;
    font-size: 13px;
    width: 30%;
    color: #64748b;
}
.zs-meta-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.zs-meta-line i {
    color: var(--zozo-primary);
}
.zs-icon {
    font-size: 12px;
    color: var(--zozo-secondary-color);
}
.zs-center {
    min-width: 0;
    text-align: center;
    width: 60%;
}
.zs-center-inner {
    display: flex;
    justify-content: center;
}
.zs-item-title {
    font-weight: 500;
    color: #0b1220;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    margin-bottom: 10px;
}
.zs-item.active .zs-item-title {
    color: var(--zozo-primary);
}
.zs-right {
    display: flex;
    align-items: start;
    justify-content: end;
    gap: 15px;
    flex: 1;
    width: 10%;
}
.zs-speakers img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
}
.zs-hidden {
    max-height: 0;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    padding-top: 0;
    line-height: 1.75;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}
.zs-toggle {
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--zozo-secondary-color);
}
.zs-toggle.open {
    transform: rotate(45deg);
}
.zozo-view-btn {
    display: inline-block;
    padding: 12px 16px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--zozo-primary);
    text-align: center;
}
.zozo-view-btn:hover {
    color: #ffffff;
    background: var(--zozo-secondary-color);    
}
.zs-time {
    width: 120px;
    font-size: 13px;
    color: #64748b;
}
.zs-details {
    flex: 1;
    text-align: center;
}
.zs-speaker {
    display: flex;
    align-items: center;
    gap: 6px;
}
.zs-speaker-info {
    display: flex;
    flex-direction: column;
    font-size: 11px;
}
.zs-speaker-name {
    font-weight: 600;
    color: #0b1220;
}
.zs-speaker-desg {
    color: #999;
}
.zs-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.zs-tab-btn {
    position: relative;
    padding: 12px 22px;
    border: none;
    cursor: pointer;
    background: rgb(245, 245, 245);
    border-radius: 8px;
    font-weight: 600;
    color: #64748b;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.zs-tab-btn:hover,
.zs-tab-btn.active{
    color: #ffffff;
    background: var(--zozo-primary);
}
.zs-tabs-content {
    position: relative;
}
.zs-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}
.zs-tab-pane.active {
    display: block;
}
.zs-tab-btn .zs-day-date {
    font-size: 12px;
    opacity: 0.7;
    color: var(--zozo-secondary-color);
}
.zs-tab-btn.active .zs-day-date {
    color: #ffffff;
}
.zs-tab-btn:hover .zs-day-date {
    color: #ffffff;
}
.zs-speaker-wrap {
    position: relative;
    display: inline-block;
}
.zs-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.95);
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    white-space: nowrap;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}
.zs-tooltip::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(90deg, var(--zozo-secondary-color) 0%, #1f2937 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.zs-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: rgba(20,20,20,0.75) transparent transparent transparent;
}
.zs-speaker-wrap:hover .zs-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}
.zs-tooltip-name {
    font-weight: 600;
    font-size: 13px;
}
.zs-tooltip-desg {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
}
.zs-speaker-wrap img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zs-speaker-wrap:hover img {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes tabPop {
    from {
        transform: scale(0.9);
        opacity: 0.6;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.zs-slider {
    position: relative;
}
.zs-slider .swiper-slide {
    height: auto;
}
.zs-swiper-prev,
.zs-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    font-size: 24px;
    background: var(--zozo-secondary-color);
    color: #ffffff;
    padding: 2px 12px;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zs-swiper-prev:hover,
.zs-swiper-next:hover {
    background: var(--zozo-primary);
}
.zs-swiper-prev {
    left: 8px;
}
.zs-swiper-next {
    right: 8px;
}
.zs-swiper-pagination {
    margin-top: 20px;
    text-align: center;
}
.zs-slider {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.zozo-ec-meta-class::after {
    content: unset;
}
.zozo-ec-meta-class {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 0;
    width: 100%;
    padding: 0;
    margin: 0;
}
.zozo-ec-meta-class ul.nav.zozo-ec-meta-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
}
.zozo-ec-meta-class ul.nav.zozo-ec-meta-list.meta-right {
    justify-content: flex-end;
}
/*-------------------------------------------------------------------------------------------
 Responsive
-------------------------------------------------------------------------------------------*/
@media (max-width: 768px) {
    .zozo-countdown {
        flex-direction: column;
        min-height: auto;
    }
    .layout-modern .cd-image {
        position: relative;
        height: 220px;
    }
    .cd-content {
        width: 100%;
        padding: 20px;
    }
    .cd-timer {
        justify-content: center;
    }
    .layout-modern .cd-content,
    .layout-minimal .cd-content,
    .layout-boxed .cd-content {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
    }
    .layout-modern .cd-image,
    .layout-minimal .cd-image,
    .layout-boxed .cd-image {
        width: 100%;
        height: 220px;
        min-height: 220px;
    }
    .cd-title {
        font-size: 26px;
        line-height: 1.3;
    }
    .cd-timer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin: 20px 0;
    }
    .cd-box {
        min-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        padding: 14px 10px;
        border-radius: 10px;
    }
    .cd-box span {
        display: block;
        font-size: 24px;
        line-height: 1;
    }
    .cd-box small {
        display: block;
        margin-top: 6px;
        font-size: 11px;
    }
    .zozo-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    .cd-extra-text {
        position: relative;
        margin-top: 15px;
        display: block;
    }
    .zs-day-row {
        flex-direction: column;
    }
    .zs-day-box {
        min-width: 100%;
    }
    .zs-right {
        order: 2;
        width: 50%;
        justify-content: flex-end;
    }
    .zs-left {
        order: 1;
        width: 50%;
    }
    .zs-center {
        order: 3;
        width: 100%;
        padding-top: 15px;
    }
}
