.wed-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.wed-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 20px;
    transition: box-shadow .25s ease;
}

.wed-card:hover {
    box-shadow: 0 14px 32px rgba(0,0,0,.08);
}

.wed-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.wed-order {
    font-weight: 600;
    font-size: 14px;
}

.wed-status {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #f5f0dc;
    color: #8a6d1d;
}

.wed-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wed-date span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-top: 4px;
}

.wed-remaining {
    font-size: 14px;
    font-weight: 500;
    color: #2a7a2a;
}

.wed-note {
    font-size: 12px;
    color: #777;
}

.wed-muted {
    background: #fafafa;
    border-radius: 10px;
    padding: 16px;
}

.wed-muted p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #666;
}

.wed-track-btn {
    margin-top: 10px;
    padding: 10px 16px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    width: fit-content;
}

.wed-track-btn:hover {
    background: #333;
    color: #fff;
}

/* La card debe ser relativa para el ribbon */
.wed-card {
    position: relative;
}

/* Ribbon de cambio */
.wed-ribbon {
    position: absolute;
    top: 14px;
    right: -8px;
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

/* Aviso de cambio */
.wed-alert {
    margin-top: 10px;
    font-size: 12px;
    color: #7a1f1f;
    background: #fdecea;
    padding: 8px 10px;
    border-radius: 6px;
}

