/* ============================================================
   UHCM Termine Widget — Card Layout
   ============================================================ */

.uhcm-termine-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Card --- */
.uhcm-termin {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 18px;
    transition: box-shadow 0.2s ease;
}

.uhcm-termin:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* --- Datum --- */
.uhcm-termin-date {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
}

/* --- Titel --- */
.uhcm-termin-title {
    font-size: 14px;
    font-weight: 400;
    color: #4b5563;
    margin-top: 2px;
    line-height: 1.4;
}

/* --- Ort --- */
.uhcm-termin-location {
    font-size: 13px;
    margin-top: 1px;
}

.uhcm-termin-location a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s ease;
}

.uhcm-termin-location a:hover {
    color: #6b7280;
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .uhcm-termin {
        padding: 12px 14px;
    }
}
