@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,800&family=Barlow:wght@400;500;600;700&display=swap');

.lpe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    font-family: 'Barlow', sans-serif;
}

.lpe-card {
    background: #1c1c1c;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: stretch;
    min-height: 140px;
}

/* Date column */
.lpe-date-col {
    background: #e5682a;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    flex-shrink: 0;
}

.lpe-day {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: block;
}

.lpe-month {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    display: block;
    margin-top: 2px;
}

/* Body */
.lpe-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.lpe-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e5682a;
    display: block;
    line-height: 1;
}

.lpe-title {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

.lpe-location {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 2px 0 0;
    padding: 0;
    background: none;
}

.lpe-location svg {
    flex-shrink: 0;
    color: #555;
}

.lpe-more {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e5682a;
    text-decoration: none;
    border-bottom: 1px solid rgba(229,104,42,.3);
    padding-bottom: 1px;
    transition: border-color .2s;
    align-self: flex-start;
}

.lpe-more:hover {
    color: #e5682a;
    border-bottom-color: #e5682a;
    text-decoration: none;
}

.lpe-empty {
    color: #555;
    font-style: italic;
    font-family: 'Barlow', sans-serif;
}

@media (max-width: 600px) {
    .lpe-grid { grid-template-columns: 1fr; }
    .lpe-day  { font-size: 36px; }
}
