/* Loading state */
.events-calendar-widget.loading {
    position: relative;
    pointer-events: none;
}

.events-calendar-widget.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-calendar-widget.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

@keyframes/* Events Calendar Elementor Widget Styles */

.events-calendar-widget {
    width: 100%;
    margin: 0 auto;
}

/* Section Title */
.events-section-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Layout Styles */
.events-grid-layout .events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Siempre 3 columnas */
    gap: 20px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Pagination Styles */
.events-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.events-pagination .page-btn {
    background: #f5f5f5;
    color: #333;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.events-pagination .page-btn:hover {
    background: #ff6b35;
    color: white;
}

.events-pagination .page-btn.active {
    background: #ff6b35;
    color: white;
}

.events-pagination .page-btn.disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.events-pagination .page-info {
    color: #666;
    margin: 0 10px;
    font-size: 14px;
}

.events-grid-layout .event-card {
    background: #fff;
    border-radius: 35px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.events-grid-layout .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.events-grid-layout .event-image {
    position: relative;
    overflow: hidden;
    height: auto; /* Aumentada para aspecto vertical */
    aspect-ratio: 3/4; /* Proporción vertical 3:4 */
}

.events-grid-layout .event-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.events-grid-layout .event-card:hover .event-image img {
    transform: scale(1.05);
}

.events-grid-layout .event-content {
    padding: 20px;
}

.events-grid-layout .event-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.events-grid-layout .event-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.events-grid-layout .event-title a:hover {
    color: #ff6b35;
}

.events-grid-layout .event-meta {
    margin-bottom: 15px;
}

.events-grid-layout .event-date-full {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.2;
}

.events-grid-layout .event-time-range {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

.events-grid-layout .event-date {
    font-weight: 600;
}

.events-grid-layout .event-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
}

.events-grid-layout .event-price {
    font-size: 18px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 15px;
}

.events-grid-layout .event-btn {
    display: inline-block;
    background: #ff6b35;
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.events-grid-layout .event-btn:hover {
    background: #e5562e;
}

/* Sidebar Layout Styles */
.events-sidebar-layout {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
}

.events-sidebar-layout .events-sidebar {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 30px;
    align-items: flex-start;
}

/* Featured Event (Left Side) */
.events-sidebar-layout .featured-event {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.events-sidebar-layout .event-card-featured {
    position: relative;
}

.events-sidebar-layout .event-card-featured .event-image {
    width: 100%;
    height: 0;
    padding-bottom: 200%; /* Hacer más vertical - 2:1 ratio */
    position: relative;
    overflow: hidden;
    background: #ffffff; /* Para debug */
}

.events-sidebar-layout .event-card-featured .event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.events-sidebar-layout .event-card-featured .event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
}

.events-sidebar-layout .event-card-featured .event-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: white;
}

.events-sidebar-layout .event-card-featured .event-title a {
    color: white;
    text-decoration: none;
}

.events-sidebar-layout .event-card-featured .event-price {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.events-sidebar-layout .event-card-featured .event-meta {
    color: #ccc;
    margin-bottom: 10px;
}

.events-sidebar-layout .event-card-featured .event-btn {
    background: #ff6b35;
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.events-sidebar-layout .event-card-featured .event-btn:hover {
    background: #e5562e;
}

/* Side Events List (Right Side) */
.events-sidebar-layout .side-events-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.events-sidebar-layout .event-card-sidebar {
    background: #fff;
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.events-sidebar-layout .event-card-sidebar:hover {
    transform: translateX(5px);
}

.events-sidebar-layout .event-card-sidebar .event-image {
    width: 210px;
    height: 250px;
    padding-bottom: 177.78%; /* Forzar 9:16 también en sidebar pequeño */
    float: left;
    margin-right: 15px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.events-sidebar-layout .event-card-sidebar .event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.events-sidebar-layout .event-card-sidebar .event-content {
    overflow: hidden;
    padding: 0;
}

.events-sidebar-layout .event-card-sidebar .event-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.events-sidebar-layout .event-card-sidebar .event-title a {
    color: #333;
    text-decoration: none;
}

.events-sidebar-layout .event-card-sidebar .event-title a:hover {
    color: #ff6b35;
}

.events-sidebar-layout .event-card-sidebar .event-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.events-sidebar-layout .event-card-sidebar .event-price {
    font-size: 14px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 8px;
}

.events-sidebar-layout .event-card-sidebar .event-btn {
    background: #ff6b35;
    color: white !important;
    padding: 5px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
}

.events-sidebar-layout .event-card-sidebar .event-btn:hover {
    background: #e5562e;
}

/* Loading state */
.events-calendar-widget.loading {
    position: relative;
    pointer-events: none;
}

.events-calendar-widget.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-calendar-widget.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

@keyframes/* Events Calendar Elementor Widget Styles */

.events-calendar-widget {
    width: 100%;
    margin: 0 auto;
}

/* Section Title */
.events-section-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Layout Styles */
.events-grid-layout .events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Siempre 3 columnas */
    gap: 20px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Pagination Styles */
.events-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.events-pagination .page-btn {
    background: #f5f5f5;
    color: #333;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.events-pagination .page-btn:hover {
    background: #ff6b35;
    color: white;
}

.events-pagination .page-btn.active {
    background: #ff6b35;
    color: white;
}

.events-pagination .page-btn.disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.events-pagination .page-info {
    color: #666;
    margin: 0 10px;
    font-size: 14px;
}

.events-grid-layout .event-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.events-grid-layout .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.events-grid-layout .event-image {
    position: relative;
    overflow: hidden;
    height: 280px; /* Aumentada para aspecto vertical */
    aspect-ratio: 3/4; /* Proporción vertical 3:4 */
}

.events-grid-layout .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.events-grid-layout .event-card:hover .event-image img {
    transform: scale(1.05);
}

.events-grid-layout .event-content {
    padding: 20px;
}

.events-grid-layout .event-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.events-grid-layout .event-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.events-grid-layout .event-title a:hover {
    color: #ff6b35;
}

.events-grid-layout .event-meta {
    margin-bottom: 15px;
}

.events-grid-layout .event-date-full {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.2;
}

.events-grid-layout .event-time-range {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

.events-grid-layout .event-date {
    font-weight: 600;
}

.events-grid-layout .event-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
}

.events-grid-layout .event-price {
    font-size: 18px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 15px;
}

.events-grid-layout .event-btn {
    display: inline-block;
    background: #ff6b35;
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.events-grid-layout .event-btn:hover {
    background: #e5562e;
}

/* Sidebar Layout Styles */
.events-sidebar-layout {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
}

.events-sidebar-layout .events-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}

/* Featured Event (Left Side) */
.events-sidebar-layout .featured-event {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.events-sidebar-layout .event-card-featured {
    position: relative;
}

.events-sidebar-layout .event-card-featured .event-image {
    width: 100%;
    height: 0;
    padding-bottom: 200%; /* Hacer más vertical - 2:1 ratio */
    position: relative;
    overflow: hidden;
    background: #ffffff; /* Para debug */
}

.events-sidebar-layout .event-card-featured .event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.events-sidebar-layout .event-card-featured .event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
}

.events-sidebar-layout .event-card-featured .event-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: white;
}

.events-sidebar-layout .event-card-featured .event-title a {
    color: white;
    text-decoration: none;
}

.events-sidebar-layout .event-card-featured .event-price {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.events-sidebar-layout .event-card-featured .event-meta {
    color: #ccc;
    margin-bottom: 10px;
}

.events-sidebar-layout .event-card-featured .event-btn {
    background: #ff6b35;
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.events-sidebar-layout .event-card-featured .event-btn:hover {
    background: #e5562e;
}

/* Side Events List (Right Side) */
.events-sidebar-layout .side-events-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.events-sidebar-layout .event-card-sidebar {
    background: #fff;
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.events-sidebar-layout .event-card-sidebar:hover {
    transform: translateX(5px);
}

.events-sidebar-layout .event-card-sidebar .event-image {
    width: 60px;
    height: 0;
    padding-bottom: 177.78%; /* Forzar 9:16 también en sidebar pequeño */
    float: left;
    margin-right: 15px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.events-sidebar-layout .event-card-sidebar .event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.events-sidebar-layout .event-card-sidebar .event-content {
    overflow: hidden;
    padding: 0;
}

.events-sidebar-layout .event-card-sidebar .event-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.events-sidebar-layout .event-card-sidebar .event-title a {
    color: #333;
    text-decoration: none;
}

.events-sidebar-layout .event-card-sidebar .event-title a:hover {
    color: #ff6b35;
}

.events-sidebar-layout .event-card-sidebar .event-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.events-sidebar-layout .event-card-sidebar .event-price {
    font-size: 14px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 8px;
}

.events-sidebar-layout .event-card-sidebar .event-btn {
    background: #ff6b35;
    color: white !important;
    padding: 5px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.events-sidebar-layout .event-card-sidebar .event-btn:hover {
    background: #e5562e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .events-sidebar-layout .events-sidebar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .events-sidebar-layout .side-events-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        display: grid;
    }
    
    .events-sidebar-layout .event-card-sidebar {
        display: block;
    }
    
    body .events-sidebar-layout .event-card-featured .event-image {
        height: 420px !important;
    }
    
    body .events-sidebar-layout .event-card-sidebar .event-image {
        height: 420px !important;
        width: 100% !important;

    position: relative !important;
    overflow: hidden !important;
    padding-bottom: 0 !important;
    }    
}

@media (max-width: 768px) {
    .events-grid-layout .events-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
        gap: 15px;
    }
    
    .events-grid-layout .event-image {
        height: 220px; /* Ajuste para móvil */
    }
    
    .events-sidebar-layout {
        padding: 20px;
    }
    
    .events-sidebar-layout .event-card-featured .event-content {
        position: static;
        background: #fff;
        color: #333;
        padding: 20px;
    }
    
    .events-sidebar-layout .event-card-featured .event-title {
        color: #333;
    }
    
    .events-sidebar-layout .event-card-featured .event-title a {
        color: #333;
    }
    
    .events-sidebar-layout .event-card-featured .event-meta {
        color: #666;
    }
    
    .events-sidebar-layout .side-events-list {
        grid-template-columns: 1fr;
    }

    .events-sidebar-layout .event-card-sidebar {
        display: block;
    }    
    
    body .events-sidebar-layout .event-card-featured .event-image {
        height: 420px !important;
    }    
    
    body .events-sidebar-layout .event-card-sidebar .event-image {
        height: 420px !important;
        width: 100% !important;

    position: relative !important;
    overflow: hidden !important;
    padding-bottom: 0 !important;
    }   
}

@media (max-width: 1024px) and (min-width: 769px) {
    .events-grid-layout .events-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
    }
    
    body .events-sidebar-layout .event-card-featured .event-image {
        height: 420px !important;
    }    
    
    body .events-sidebar-layout .event-card-sidebar .event-image {
        height: 420px !important;
        width: 100% !important;

    position: relative !important;
    overflow: hidden !important;
    padding-bottom: 0 !important;
    }     
}

@media (max-width: 480px) {
    .events-section-title {
        font-size: 20px;
    }
    
    /* EN MÓVILES PEQUEÑOS, SIDEBAR SIGUE COMO GRID */
    .events-sidebar-layout .events-sidebar {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .events-sidebar-layout .side-events-list {
        gap: 40px !important;
    }
    
    .events-sidebar-layout .event-card-sidebar .event-image {
        padding-bottom: 133% !important; /* Mantener aspecto 3:4 */
    }
    
    .events-sidebar-layout .event-card-sidebar .event-content {
        padding: 15px !important;
    }
    
    .events-sidebar-layout .event-card-sidebar .event-title {
        font-size: 16px !important;
    }
    
    .events-sidebar-layout .event-card-sidebar .event-date-full {
        font-size: 16px !important;
    }
    
    .events-sidebar-layout .event-card-sidebar .event-time-range {
        font-size: 13px !important;
    }
    
    .events-sidebar-layout .event-card-sidebar .event-excerpt {
        font-size: 13px !important;
    }
    
    .events-sidebar-layout .event-card-sidebar .event-price {
        font-size: 16px !important;
    }
    
    .events-sidebar-layout .event-card-sidebar {
        display: block;
    }
    
    body .events-sidebar-layout .event-card-featured .event-image {
        height: 420px !important;
    }    
    
    body .events-sidebar-layout .event-card-sidebar .event-image {
        height: 420px !important;
        width: 100% !important;

    position: relative !important;
    overflow: hidden !important;
    padding-bottom: 0 !important;
    }  
    
}

/* Loading and No Events States */
.events-preview {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

/* Date Badge for Grid Layout */
.events-grid-layout .event-card .event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

/* Currency Symbol Styling */
.event-price .currency {
    font-size: 0.8em;
    vertical-align: top;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Event Status Indicators */
.event-card .event-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 10px;
}

.event-card .event-status.sold-out {
    background: #ff4444;
    color: white;
}

.event-card .event-status.few-left {
    background: #ffaa00;
    color: white;
}

.event-card .event-status.available {
    background: #00cc66;
    color: white;
}

/* Loading and No Events States */
.events-preview {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

/* Date Badge for Grid Layout */
.events-grid-layout .event-card .event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

/* Currency Symbol Styling */
.event-price .currency {
    font-size: 0.8em;
    vertical-align: top;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Event Status Indicators */
.event-card .event-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 10px;
}

.event-card .event-status.sold-out {
    background: #ff4444;
    color: white;
}

.event-card .event-status.few-left {
    background: #ffaa00;
    color: white;
}

.event-card .event-status.available {
    background: #00cc66;
    color: white;
}

/* CRITICAL CSS - SIDEBAR LAYOUT OVERRIDE */
.events-sidebar-layout .event-card-featured .event-image {
    width: 100% !important;
    height: 620px !important;
    position: relative !important;
    overflow: hidden !important;
    padding-bottom: 0 !important;
}

.events-sidebar-layout .event-card-featured .event-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

.events-sidebar-layout .event-card-featured .event-content {
    position: static !important;
    background: #fff !important;
    color: #333 !important;
    padding: 20px !important;
}

.events-sidebar-layout .event-card-featured .event-title {
    color: #333 !important;
}

.events-sidebar-layout .event-card-featured .event-title a {
    color: #333 !important;
}

.events-sidebar-layout .event-card-featured .event-date-full {
    color: #ff6b35 !important;
    font-weight: 700 !important;
    font-size: 20px !important;
}

.events-sidebar-layout .event-card-featured .event-time-range {
    color: #666 !important;
}

.events-sidebar-layout .event-card-featured .event-price {
    background: none !important;
    color: #ff6b35 !important;
    padding: 0 !important;
}

.events-sidebar-layout .event-card-sidebar {
    display: flex !important;
    align-items: flex-start !important;
    gap: 5px !important;
}

.events-sidebar-layout .event-card-sidebar .event-image {
    width: 200px !important;
    height: 230px !important;
    flex-shrink: 0 !important;
    float: none !important;
    margin-right: 0 !important;
    padding-bottom: 0 !important;
    position: relative !important;
    object-position: center !important;
}

.events-sidebar-layout .event-card-sidebar .event-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.events-sidebar-layout .event-card-sidebar .event-content {
    flex: 1 !important;
    overflow: visible !important;
}

.events-sidebar-layout .event-card-sidebar .event-date-full {
    color: #ff6b35 !important;
    font-weight: 600 !important;
}