.elementor-1127 .elementor-element.elementor-element-5e137b3{--display:flex;--padding-top:150px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}.elementor-1127 .elementor-element.elementor-element-5e137b3:not(.elementor-motion-effects-element-type-background), .elementor-1127 .elementor-element.elementor-element-5e137b3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}body.elementor-page-1127:not(.elementor-motion-effects-element-type-background), body.elementor-page-1127 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}/* Start custom CSS for wp-widget-em_widget, class: .elementor-element-475cc5d *//* ===== Grid wrapper — 3 per row, flex-based, responsive ===== */
.sepan-pro-events-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

/* Each event card */
.sepan-pro-event {
    display: flex;
    flex-direction: column; /* image on top, content below — suits a ~1/3-width card */
    flex: 1 1 calc(33.333% - 19px); /* 3 per row, accounting for the gap */
    min-width: 280px; /* stops cards squeezing too narrow before wrapping */
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(0,0,0,0.03);
}

.sepan-pro-event:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(23, 86, 57, 0.15);
}

/* Media area — now full-width, top of card */
.sepan-pro-media {
    width: 100%;
    height: 190px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sepan-pro-img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sepan-pro-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills the top banner cleanly instead of floating small in a side panel */
    transition: transform 0.6s ease;
}

.sepan-pro-event:hover .sepan-pro-img-wrap img {
    transform: scale(1.05);
}

/* Fallback date block — shown in place of an image when none exists */
.sepan-pro-date-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--accent-color, #175639); /* corrected to your real brand green */
    color: #ffffff;
}

.pro-day {
    font-family: 'Space Mono', monospace; /* matches your brand's stat-number treatment */
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.pro-month {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Content area */
.sepan-pro-content {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
}

.sepan-pro-title {
    margin: 0 0 14px 0 !important;
    font-family: 'Space Grotesk', sans-serif !important; /* brand heading font, not Urbanist */
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.sepan-pro-title a {
    color: #111827 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.sepan-pro-event:hover .sepan-pro-title a {
    color: var(--accent-color, #175639) !important;
}

/* Meta data (date, location) */
.sepan-pro-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pro-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4b5563;
    font-weight: 600;
}

.pro-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(23, 86, 57, 0.06);
    color: var(--accent-color, #175639);
}

/* ===== Responsive breakpoints ===== */

/* Tablet: 2 per row */
@media (max-width: 900px) {
    .sepan-pro-event {
        flex: 1 1 calc(50% - 14px);
    }
}

/* Mobile: 1 per row, full width */
@media (max-width: 600px) {
    .sepan-pro-event {
        flex: 1 1 100%;
    }

    .sepan-pro-content {
        padding: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for wp-widget-em_locations_widget, class: .elementor-element-c6c1611 *//* ===== Location card ===== */
.em-item.em-location {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.em-item.em-location:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -12px rgba(23, 86, 57, 0.15);
}

/* Image / placeholder */
.em-item-image {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
}

.em-item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.em-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder state — shown when a location has no image */
.em-item-image.has-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.em-item-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #175639, #2c7350);
    display: block;
}

/* Info block */
.em-item-info {
    flex: 1;
    min-width: 0; /* prevents long addresses from overflowing the flex row */
}

.em-item-name {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.em-item-name a {
    color: #196036;
    text-decoration: none;
    transition: color 0.3s ease;
}

.em-item.em-location:hover .em-item-name a {
    color: #196036;
}

.em-item-meta-line.em-location-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.em-item-meta-line.em-location-address p {
    margin: 0;
}

.em-icon.em-icon-location {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #175639;
}

/* Mobile: stack image above info */
@media (max-width: 480px) {
    .em-item.em-location {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .em-item-image {
        width: 100%;
        height: 140px;
    }
}/* End custom CSS */