/* --- Event Details Page --- */

/* Sidebar Widget */
.sidebar-widget {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eef0f2;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 10px;
}

/* Event Info List */
.event-info-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-info-widget ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e5e5e5;
}

.event-info-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-info-widget .icon-box {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.event-info-widget ul li:hover .icon-box {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.event-info-widget .info-content h4 {
    font-size: 16px;
    margin: 0 0 5px 0;
    color: var(--primary-color);
    font-weight: 600;
}

.event-info-widget .info-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* Main Content Area */
.event-details-image img {
    border-radius: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.event-details-body h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.event-description {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}