.tdlh-cdp-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    /* v1.1: list one by one */
    margin: 1rem 0;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.tdlh-cdp-card {
    background: #fff;
    border: 1px solid #e2e5e9;
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 6px -2px rgba(0, 0, 0, .08);
    transition: box-shadow .2s, transform .2s;
}

.tdlh-cdp-card:hover {
    box-shadow: 0 4px 18px -4px rgba(0, 0, 0, .16);
    transform: translateY(-2px);
}

.tdlh-cdp-card-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .5rem;
}

.tdlh-cdp-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
    background: #f4f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: #556;
}

.tdlh-cdp-title-rating {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.tdlh-cdp-title-rating h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 600;
}

.tdlh-cdp-rating {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    font-weight: 600;
    padding: .35rem .55rem;
    border-radius: 10px;
    font-size: .75rem;
    min-width: 38px;
    text-align: center;
}

.tdlh-cdp-meta {
    font-size: .75rem;
    display: grid;
    gap: .25rem;
    margin-bottom: .5rem;
}

.tdlh-cdp-meta div {
    background: #f8fafc;
    padding: .35rem .5rem;
    border-radius: 8px;
}

.tdlh-cdp-pros-cons {
    display: flex;
    gap: .75rem;
    font-size: .72rem;
    margin-bottom: .5rem;
}

.tdlh-cdp-pros-cons>div {
    flex: 1;
    background: #f1f5f9;
    padding: .5rem .6rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.tdlh-cdp-pros-cons strong {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #334155;
}

.tdlh-cdp-about {
    background: #eef2f7;
    padding: .6rem .7rem;
    border-radius: 12px;
    font-size: .72rem;
    line-height: 1.2;
}

.tdlh-cdp-about strong {
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #334155;
    margin-bottom: .25rem;
}

@media (max-width:640px) {
    .tdlh-cdp-pros-cons {
        flex-direction: column;
    }
}

.tdlh-cdp-empty {
    padding: 1rem;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    font-size: .85rem;
    color: #475569;
}

/* v1.1 Pros/Cons lists with check/cross icons */
.tdlh-cdp-list {
    list-style: none;
    padding-left: 0;
    margin: .25rem 0 0;
    display: grid;
    gap: .25rem;
}

.tdlh-cdp-list li {
    position: relative;
    padding-left: 1.25rem;
    color: #334155;
    /* dark grey */
}

.tdlh-cdp-list.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #334155;
}

.tdlh-cdp-list.cons li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 0;
    color: #334155;
}