/* Events Archive Simple Styles */
.events-archive-simple {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Styling */
.events-section {
    margin-bottom: 60px;
}

.section-heading {
    font-size: 36px;
    font-weight: 600;
    color: #113a77;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #113a77;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Month Subheading */
.month-subheading {
    font-size: 20px;
    font-weight: 500;
    color: #666;
    margin: 30px 0 20px 0;
    padding-left: 10px;
    border-left: 4px solid #113a77;
}

/* Month Group */
.events-month-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

/* Simple Event Card */
.simple-event-card {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: #fffbf8;
    border-radius: 6px;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.simple-event-card:hover {
    border-color: #113a77;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(17, 58, 119, 0.1);
}

/* Event Image Small */
.event-image-small {
    position: relative;
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
}

.event-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffbf8;
}

.event-placeholder .dashicons {
    font-size: 40px;
    color: #113a77;
    opacity: 0.3;
}

/* Date Badge Small */
.event-date-small {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(17, 58, 119, 0.9);
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

/* Event Content Small */
.event-content-small {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.event-title-small {
    font-size: 18px;
    font-weight: 600;
    color: #113a77;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.simple-event-card:hover .event-title-small {
    color: #0d2d5c;
}

.event-description-small {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Past Events Section */
.past-section {
    opacity: 0.9;
}

.past-section .section-heading {
    color: #666;
    border-bottom-color: #999;
}

.past-section .month-subheading {
    color: #888;
    border-left-color: #999;
}

.past-section .event-title-small {
    color: #666;
}

/* No Events Message */
.no-events-message {
    text-align: center;
    padding: 60px 20px;
    background: #fffbf8;
    border-radius: 8px;
}

.no-events-message p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-archive-simple {
        padding: 30px 15px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .month-subheading {
        font-size: 18px;
    }
    
    .events-month-group {
        gap: 10px;
    }
    
    .simple-event-card {
        gap: 12px;
        padding: 10px;
    }
    
    .event-image-small {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }
    
    .event-title-small {
        font-size: 16px;
    }
    
    .event-description-small {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 24px;
    }
    
    .simple-event-card {
        gap: 10px;
    }
    
    .event-image-small {
        width: 70px;
        min-width: 70px;
        height: 70px;
    }
    
    .event-title-small {
        font-size: 15px;
    }
    
    .event-description-small {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
