.nmw-events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nmw-event-list-item{
    display:flex;
    align-items:stretch;
    gap:22px;
    border-radius:18px;
    overflow:hidden;
    background:var(--nmw-card-color);
    transition:.2s;
    cursor:pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.nmw-event-list-item:hover {
    scale: 1.01;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

/* DATUM */
.nmw-list-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 0 30px;
    background: black;
}

.list-day {
    text-align: center;
    color: #E3000f;
    font-family: "Segoe UI", sans-serif;
    font-weight: bold;
    font-size: 30px;
}

.list-month {
    text-align: center;
    color: #E3000f;
    font-family: "Segoe UI", sans-serif;
}

/* IMAGE */
.nmw-list-image {
    display: block;
    margin: auto 0;
    width:110px;
    height:110px;
    flex-shrink:0;
}

.nmw-list-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.nmw-list-content {
    flex: 1;
    padding: 16px 0;
}

.nmw-list-overtitle {
    display: inline-block;
    color:#ffd166;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    background: rgba(0, 0, 0, .2);
    border-radius:999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding:0px 7px;
    line-height: 1.3;
}

.nmw-list-title{
    color:white;
    font-size:32px;
    line-height:1.1;
    margin:0;
    font-family: "Segoe UI", sans-serif;
    font-weight: bold;
}

.nmw-list-price {
    color:rgba(255,255,255,.85);
    font-size:15px;
}

.nmw-list-tags{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-top:10px;
    color: rgba(0, 0, 0, 0.7);
}

.nmw-list-tag {
    display:flex;
    align-items:center;
    gap:6px;
    padding:6px 10px;
    line-height: 1.5;
    background: rgba(255, 255, 255, .7);
    border-radius:18px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    font-size:13px;
}

.nmw-list-tag i{
    font-size:12px;
}

.nmw-list-buttons{
    margin: auto 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.nmw-list-details-button {
    display:block;
    width: 100%;
    padding: 10px 30px;
    background: rgba(255, 255, 255, .5);
    border-radius:999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color:rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    text-align:center;
    transition-duration: .2s;
}

.nmw-list-action-button {
    display:block;
    width: 100%;
    padding:10px 30px;
    border-radius:7px;
    border: none;
    background: #E3000f;
    color:#fff;
    text-transform: uppercase;
    text-align:center;
}

.nmw-list-action-button:hover,
.nmw-list-action-button:active,
.nmw-list-details-button:hover,
.nmw-list-details-button:active {
    background: white;
    color:rgba(0, 0, 0, 0.7);
    transition-duration: .2s;
}
