.nmw-events-minimal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 576px) {
    .nmw-events-minimal {
        gap: 15px;
    }
}

.nmw-event-minimal-item{
    position: relative;
    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);
}

@media (max-width: 576px) {
    .nmw-event-minimal-item {
        gap: 10px;
    }
}

.nmw-event-minimal-item:hover {
    scale: 1.01;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

/* DATUM */
.nmw-minimal-date {
    display: inline-flex;
    flex-direction: row;
    gap: 5px;
}

.minimal-day {
    text-align: center;
    color: white;;
    font-family: "Segoe UI", sans-serif;
    font-weight: bold;
    font-size: 17px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.minimal-month {
    text-align: center;
    font-size: 15px;
    color: white;
    font-family: "Segoe UI", sans-serif;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

/* IMAGE */
.nmw-minimal-image {
    display: block;
    width:120px;
    flex-shrink:0;
}

@media (max-width: 576px) {
    .nmw-minimal-image {
        width: 90px;
    }
}

.nmw-minimal-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.nmw-minimal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

@media (max-width: 576px) {
    .nmw-minimal-content {
        padding: 8px 0;
    }
}

.nmw-minimal-title {
    color:white;
    font-size:20px;
    margin-right: 35px;
    font-family: "Segoe UI", sans-serif;
    font-weight: bold;
}

.nmw-minimal-price {
    color:rgba(255,255,255,.85);
    font-size:14px;
}

.nmw-minimal-tags{
    display:flex;
    gap:3px;
    flex-wrap:wrap;
    margin-top:3px;
    color: rgba(0, 0, 0, 0.7);
}

.nmw-minimal-tag{
    display:flex;
    align-items:center;
    gap:4px;
    padding:2px 7px;
    line-height: 1.5;
    background: rgba(255, 255, 255, .6);
    border-radius:18px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-size:12px;
}

.nmw-minimal-tag i{
    font-size:12px;
}

.nmw-minimal-buttons{
    position: absolute;
    top:10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nmw-minimal-details-button {
    font-size: 22px;
    color: white;
    text-align: center;
}

.nmw-minimal-action-button {
    display:block;
    text-align: center;
    font-size: 21px;
    color: white;
}

.nmw-minimal-action-button:hover,
.nmw-minimal-action-button:active,
.nmw-minimal-details-button:hover,
.nmw-minimal-details-button:active {
    color:rgba(0, 0, 0, 0.7);
    transition-duration: .2s;
}
