/**
 * Forgewell Simple Events - Frontend Styles
 * Simple list display with customizable styling per event
 */

/* Main container - NO padding or margin */
.kk-events-container {
    margin: 0;
    max-width: 100%;
    padding: 0;
}

/* No events message */
.kk-no-events {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    padding: 2rem;
}

/* Events list */
.kk-events-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Individual event item */
.kk-event-item {
    padding: 2rem 0;
    /* Border color controlled via inline styles from shortcode */
    /* Background color, text color, and alignment controlled via inline styles from shortcode */
}

/* Event title */
.kk-event-title {
    margin: 0 0 1rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    /* Color inherited from parent .kk-event-item */
}

/* Event meta container */
.kk-event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Individual meta items */
.kk-event-date,
.kk-event-time,
.kk-event-location {
    display: block;
}

.kk-event-meta strong {
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .kk-event-item {
        padding: 1.5rem 0;
    }

    .kk-event-title {
        font-size: 1.5rem;
    }

    .kk-event-meta {
        font-size: 0.9375rem;
    }
}

/*
 * Additional customization options
 * You can add custom CSS here to further style the events display
 * Colors, alignment, and divider color are controlled via the Style Settings page
 */
