/* ================================================================
   Zenda Tour Sidebar Widget v2 — Cards
================================================================ */
.ztsw-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: -apple-system, 'Segoe UI', Arial, sans-serif;
}

/* Card link — no underline, no color override */
.ztsw-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}
.ztsw-card-link:hover .ztsw-card {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-1px);
}

/* Card box */
.ztsw-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px 12px;
    transition: box-shadow .2s, transform .2s;
}

/* Card title */
.ztsw-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
    line-height: 1.35;
}

/* Times row */
.ztsw-times {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.ztsw-time-col {
    flex: 1;
    min-width: 0;
}
.ztsw-time-label {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 5px;
}
.ztsw-time-body {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

/* Icon — sized via inline style or Elementor selector */
.ztsw-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #6b7280;
    margin-top: 1px;
}
.ztsw-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Time text */
.ztsw-time-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.ztsw-t {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
    white-space: nowrap;
}
.ztsw-d {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.3;
}

/* Status */
.ztsw-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-top: 2px;
}
.ztsw-status .ztsw-icon {
    width: 14px;
    height: 14px;
    margin-top: 0;
}
