/* SDP Obituarios — front-end card styles */

.sdp-obituarios-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 1.5rem 0;
}

.sdp-ob-card {
    border: 1px solid #e4e4e7;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    font-family: inherit;
}

.sdp-ob-header {
    padding: 16px 18px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.sdp-ob-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sdp-ob-tag--olive {
    background: #EAF3DE;
    color: #27500A;
}

.sdp-ob-tag--aurora {
    background: #E6F1FB;
    color: #0C447C;
}

.sdp-ob-tag--adpatres {
    background: #FAEEDA;
    color: #633806;
}

.sdp-ob-tag--other {
    background: #F1EFE8;
    color: #5F5E5A;
}

.sdp-ob-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
    line-height: 1.3;
}

.sdp-ob-dates {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.sdp-ob-schedule {
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sdp-ob-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
}

.sdp-ob-label {
    font-weight: 600;
    color: #444;
    min-width: 100px;
    flex-shrink: 0;
}

.sdp-ob-value {
    color: #1a1a1a;
}

.sdp-ob-footer {
    padding: 12px 18px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.sdp-ob-link {
    font-size: 13px;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.sdp-ob-link:hover {
    text-decoration: underline;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .sdp-ob-card { background: #1e1e2e; border-color: #2e2e3e; }
    .sdp-ob-header { border-bottom-color: #2e2e3e; }
    .sdp-ob-name { color: #f0f0f0; }
    .sdp-ob-label { color: #b0b0b0; }
    .sdp-ob-value { color: #e0e0e0; }
    .sdp-ob-footer { background: #161622; border-top-color: #2e2e3e; }
}

/* Mobile */
@media (max-width: 600px) {
    .sdp-ob-row { flex-direction: column; gap: 2px; }
    .sdp-ob-label { min-width: unset; }
    .sdp-ob-name { font-size: 17px; }
}
