.etle-simple-list {
    --etle-gap: 22px;
    --etle-border: rgba(17, 24, 39, .10);
    --etle-text: #111827;
    --etle-muted: #667085;
    --etle-soft: #f8fafc;
    --etle-accent: #0f6f8f;
    margin: 28px 0;
}
.etle-date-section {
    margin: 0 0 38px;
}
.etle-date-title {
    margin: 0 0 18px;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--etle-border);
    color: var(--etle-text);
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.2;
    font-weight: 800;
}
.etle-grid {
    display: grid;
    gap: var(--etle-gap);
}
.etle-cols-2 .etle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.etle-cols-3 .etle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.etle-cols-4 .etle-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.etle-cols-5 .etle-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.etle-event-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--etle-border);
    border-radius: 18px;
    background: #fff;
    color: var(--etle-text);
    text-decoration: none !important;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .07);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.etle-event-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 111, 143, .30);
    box-shadow: 0 16px 38px rgba(17, 24, 39, .12);
    color: var(--etle-text);
}
.etle-thumb {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #f8fafc);
}
.etle-event-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.etle-event-card:hover .etle-event-img {
    transform: scale(1.035);
}
.etle-event-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #0f6f8f;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.etle-card-content {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 16px 17px 18px;
    min-height: 0;
}
.etle-card-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.etle-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
    background: #eef6fb;
    color: #075985;
    padding: 6px 9px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.etle-chip-place {
    background: #f0fdf4;
    color: #166534;
}
.etle-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--etle-text);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.2;
    font-weight: 850;
}
.etle-card-when {
    color: var(--etle-accent);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}
.etle-card-info {
    color: var(--etle-muted);
    font-size: 13px;
    line-height: 1.4;
}
.etle-card-info strong {
    color: #344054;
}
.etle-card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #475467;
    margin: 1px 0 0;
    font-size: 14px;
    line-height: 1.48;
}
.etle-card-more {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding-top: 4px;
    color: #111827;
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
}
.etle-card-more::after {
    content: '›';
    margin-left: 6px;
    font-size: 18px;
    line-height: .7;
}
.etle-source-under {
    margin: -12px 0 0;
    font-size: 12px;
}
.etle-source-under a,
.etle-source a {
    color: #667085;
    text-decoration: underline;
}
.etle-single-image {
    margin: 0 0 22px;
    border-radius: 18px;
    overflow: hidden;
}
.etle-single-image img {
    display: block;
    width: 100%;
    height: auto;
}
.etle-event-facts {
    border: 1px solid var(--etle-border, rgba(17, 24, 39, .10));
    border-radius: 16px;
    background: #f8fafc;
    padding: 20px 22px;
    margin: 24px 0;
}
.etle-event-facts h2 {
    margin-top: 0;
}
.etle-event-facts ul {
    margin-bottom: 0;
}
.etle-empty {
    border: 1px solid rgba(17, 24, 39, .10);
    border-radius: 14px;
    padding: 18px 20px;
    background: #f8fafc;
}
@media (max-width: 1180px) {
    .etle-cols-5 .etle-grid,
    .etle-cols-4 .etle-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 860px) {
    .etle-cols-5 .etle-grid,
    .etle-cols-4 .etle-grid,
    .etle-cols-3 .etle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .etle-simple-list {
        --etle-gap: 16px;
    }
    .etle-grid,
    .etle-cols-2 .etle-grid,
    .etle-cols-3 .etle-grid,
    .etle-cols-4 .etle-grid,
    .etle-cols-5 .etle-grid {
        grid-template-columns: 1fr;
    }
    .etle-card-content {
        padding: 15px;
    }
}
