/* ====================================
   PAGE ÉVÉNEMENTS - STYLE LISTE
   ==================================== */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --green-accent: #2ecc71;
}

.page-evenements-wrapper {
    background: #f8fafc;
}

/* Hero Section */
.evenements-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #08b12d 100%);
    color: white;
    padding: 120px 0 90px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.evenements-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23000000" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.evenements-hero .container {
    position: relative;
    z-index: 2;
}

.evenements-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.evenements-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.evenements-hero .breadcrumb-item a:hover {
    color: var(--green-accent);
}

.evenements-hero .breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.evenements-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.evenements-hero.event-hero {
    background-image:
        linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(8, 177, 45, 0.65) 100%),
        var(--hero-image, none);
    background-size: cover;
    background-position: center;
}

.evenements-hero.event-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.15), transparent 50%);
    z-index: 1;
}

.evenements-hero.event-hero .container {
    position: relative;
    z-index: 2;
}

.event-hero-content {
    margin-top: 10px;
    max-width: 860px;
}

.event-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    color: #fff;
}

.event-badge-primary {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
}

.event-badge-success {
    background: rgba(22, 163, 74, 0.25);
    border-color: rgba(22, 163, 74, 0.45);
}

.event-badge-danger {
    background: rgba(220, 53, 69, 0.25);
    border-color: rgba(220, 53, 69, 0.45);
}

.event-badge-neutral {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

.event-hero-title {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.event-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
}

.event-hero-meta.legacy {
    display: none;
}

.event-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.25);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.event-hero-meta i {
    color: #ffffff;
    opacity: 0.9;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

/* ✅ CORRECT - Pas d'espace si pas d'image */
.event-image {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 0;
    height: 220px;
    background: linear-gradient(135deg, #0b3f32 0%, #109a36 100%);
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

/* placeholder handled by .news-card-image-placeholder */

.event-item:hover .event-image img {
    transform: scale(1.05);
}

/* ❌ À ÉVITER - Ne pas mettre de height fixe sur .event-item */
/* .event-item {
    min-height: 400px; ← Ça créerait un espace même sans image
} */

/* ✅ CORRECT - Layout flexible */
.event-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    margin: 0;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #0b3f32 0%, #109a36 100%);
}

.news-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b3f32 0%, #109a36 100%);
    padding: 16px;
    position: relative;
}

.news-placeholder-logo {
    width: auto;
    height: auto;
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.2));
    transition: transform 0.25s ease, filter 0.25s ease;
    position: relative;
    z-index: 1;
    margin-top: 6px;
}

.news-card-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
}

.event-item:hover .news-placeholder-logo {
    transform: scale(1.04);
    filter: drop-shadow(0 14px 26px rgba(15, 23, 42, 0.26));
}

.news-card-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0b3f32;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.event-item .news-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-item .news-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
}

.event-item .news-card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-item .news-card-title a:hover {
    color: var(--secondary-color);
}

.event-item.past-event .news-card-title a {
    color: #64748b;
}

.event-item .news-card-excerpt {
    color: #666666;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.8em;
}

.event-item .news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eeeeee;
    gap: 12px;
    flex-wrap: wrap;
}

.event-item .news-card-footer .btn-read-more {
    margin-top: 0;
    align-self: center;
}

.event-item .news-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999999;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.event-item .meta-sep {
    color: #cbd5e1;
}


/* Message vide */
.no-events-message {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Liste des événements (comme actualités) */
.events-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.events-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.events-search {
    position: relative;
    flex: 1 1 320px;
    max-width: 520px;
}

.events-search i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 0.95rem;
}

.events-search .form-control {
    padding-left: 40px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.events-search .form-control:focus {
    border-color: rgba(8, 177, 45, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(8, 177, 45, 0.15);
}

.events-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.events-sort {
    position: relative;
    flex: 0 1 200px;
    min-width: 180px;
}

.events-sort i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 0.95rem;
    pointer-events: none;
}

.events-sort .form-select {
    padding-left: 40px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.events-sort .form-select:focus {
    border-color: rgba(8, 177, 45, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(8, 177, 45, 0.15);
}

.filter-pill {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #1f2937;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    border-color: rgba(8, 177, 45, 0.45);
    color: #0f172a;
    transform: translateY(-1px);
}

.filter-pill.active {
    background: rgba(8, 177, 45, 0.15);
    border-color: rgba(8, 177, 45, 0.4);
    color: #0f172a;
    box-shadow: 0 8px 20px rgba(8, 177, 45, 0.12);
}

.event-item.is-hidden {
    display: none;
}

.event-item.is-collapsed {
    display: none;
}

.events-empty-state {
    padding: 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    margin-bottom: 24px;
}

.past-events-footer {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.past-events-toggle {
    border: 1px solid rgba(8, 177, 45, 0.35);
    background: #ffffff;
    color: #0f172a;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    transition: all 0.2s ease;
}

.past-events-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(8, 177, 45, 0.55);
    box-shadow: 0 10px 22px rgba(8, 177, 45, 0.2);
}

.event-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    margin: 0;
    border-left: none;
    min-height: auto;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.event-item h2:not(.news-card-title) {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.event-item h2:not(.news-card-title) a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-item h2:not(.news-card-title) a:hover {
    color: var(--secondary-color);
}

.event-item h3:not(.news-card-title) {
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.event-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.event-date,
.event-location {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.event-date i,
.event-location i {
    color: var(--secondary-color);
}

.event-description {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 5.4em;
}

/* Bouton Voir les détails */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--green-accent));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    margin-top: auto;
    align-self: flex-start;
}

.btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    color: white;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .evenements-hero {
        padding: 100px 0 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .events-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-item {
        padding: 0;
        min-height: auto;
    }

    .event-image,
    .news-card-image {
        height: 200px;
    }

    .event-item .news-card-body {
        padding: 1.25rem;
    }

    .events-toolbar {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        align-content: flex-start;
    }

    .events-search {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .events-filters {
        justify-content: flex-start;
    }

    .events-sort {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .evenements-hero {
        padding: 90px 0 60px;
        margin-bottom: 20px;
    }

    .page-evenements-wrapper .container.py-5 {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .event-hero-title,
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .events-toolbar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 14px;
    }

    .events-search .form-control,
    .events-sort .form-select {
        min-height: 44px;
    }

    .events-sort {
        min-width: 0;
    }

    .events-sort i {
        display: none;
    }

    .events-sort .form-select {
        padding-left: 16px;
    }

    .events-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin-top: 0;
    }

    .events-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-pill {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 7px 16px;
        scroll-snap-align: start;
        background: #f8fafc;
        border-color: #cbd5e1;
    }

    .event-item {
        padding: 0;
        margin-bottom: 0;
        border-left: none;
    }

    .event-image,
    .news-card-image {
        height: 180px;
    }

    .event-item .news-card-title {
        font-size: 1.2rem;
        min-height: auto;
    }

    .event-item .news-card-excerpt {
        font-size: 0.98rem;
        min-height: auto;
    }

    .news-placeholder-logo {
        max-width: 120px;
        max-height: 120px;
        margin-top: 4px;
    }

    .btn-read-more {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   PAGE DÉTAIL ÉVÉNEMENT
   ==================================== */

.event-detail {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.event-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.event-detail-main {
    min-width: 0;
}

.event-detail-aside {
    position: sticky;
    top: 120px;
}

.event-info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.event-info-header h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.event-info-header p {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 0.95rem;
}

.event-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 10px;
}

.event-info-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #1f2937;
    font-size: 0.95rem;
}

.event-info-list i {
    color: var(--secondary-color);
    font-size: 1.05rem;
    margin-top: 2px;
}

.event-info-list span {
    font-weight: 600;
    color: #0f172a;
    margin-right: 4px;
}

.event-info-cta {
    display: grid;
    gap: 10px;
}

.event-info-actions {
    display: grid;
    gap: 10px;
}

.event-info-state {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.event-actions {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.event-calendar,
.event-share {
    flex: 1 1 260px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.event-calendar h6,
.event-share h6 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.event-action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.event-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.event-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
    transition: all 0.2s ease;
}

.event-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.share-facebook { color: #1877f2; }
.share-twitter { color: #1da1f2; }
.share-linkedin { color: #0a66c2; }
.share-mail { color: #475569; }

.event-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px 16px;
    z-index: 1040;
    display: none;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.event-mobile-cta-inner {
    max-width: 520px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.event-mobile-status {
    display: block;
    text-align: center;
    font-weight: 600;
    color: #0f5132;
}

.event-detail h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.event-detail-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.event-detail-date,
.event-detail-location {
    color: #666;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.event-detail-date i,
.event-detail-location i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.event-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
}

.event-detail-content p {
    margin-bottom: 20px;
}

.event-detail-content h2,
.event-detail-content h3 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.event-detail-content h2 {
    font-size: 1.8rem;
}

.event-detail-content h3 {
    font-size: 1.5rem;
}

.event-detail-content ul,
.event-detail-content ol {
    padding-left: 30px;
    margin-bottom: 20px;
}

.event-detail-content li {
    margin-bottom: 10px;
}

.event-detail-back {
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.btn-back {
    background: linear-gradient(135deg, var(--secondary-color), var(--green-accent));
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    color: white;
}

/* Responsive pour détail */
@media (max-width: 768px) {
    .event-detail {
        padding: 30px 20px;
        margin-top: -40px;
    }

    .event-detail h1 {
        font-size: 1.8rem;
    }

    .event-detail-meta {
        flex-direction: column;
        gap: 15px;
    }

    .event-detail-grid {
        grid-template-columns: 1fr;
    }

    .event-detail-aside {
        position: static;
    }

    .event-hero-title {
        font-size: 1.9rem;
    }

    .event-hero-meta {
        font-size: 0.9rem;
    }

    .event-mobile-cta {
        display: block;
    }

    .event-info-cta {
        display: none;
    }

    .event-actions {
        flex-direction: column;
    }

    .page-evenements-wrapper {
        padding-bottom: 110px;
    }
}

@media (max-width: 992px) {
    .event-detail-grid {
        grid-template-columns: 1fr;
    }

    .event-detail-aside {
        position: static;
    }
}
