/* =============================================
   Najbližšie Podujatia – Frontend Widget
   ============================================= */

.np-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 480px;
}

/* Each event row */
.np-event {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #e8e8e8;
}
.np-event:last-child {
    border-bottom: none;
}

/* Date box – the square on the left */
.np-date-box {
    flex-shrink: 0;
    width: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    padding: 6px 4px 5px;
    background: #fff;
    line-height: 1;
}

.np-day {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    display: block;
    line-height: 1.1;
}
.np-day-dash {
    font-size: 18px;
    color: #bbb;
}

.np-month {
    font-size: 10px;
    font-weight: 600;
    color: #888;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: 3px;
    display: block;
}

/* Right side – text */
.np-content {
    flex: 1;
    padding-top: 2px;
}

.np-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.np-desc-text {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.np-no-events {
    color: #888;
    font-style: italic;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 360px) {
    .np-date-box { width: 44px; }
    .np-day { font-size: 19px; }
    .np-title { font-size: 15px; }
}
