.dz-list {
        display: grid;
        gap: 16px;
    }
.dz-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    box-shadow: 0 16px 40px -24px rgba(14, 165, 233, 0.35);
}
.dz-card--featured {
    border-color: #0ea5e9;
    box-shadow: 0 24px 48px -24px rgba(2, 132, 199, 0.35);
}
.dz-sponsor {
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px 12px;
    border-radius: 0 0 14px 0;
    background: #0ea5e9;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.dz-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 108px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
}
.dz-logo img {
    max-width: 180px;
    max-height: 76px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.dz-copy h3 {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
}
.dz-copy p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}
.dz-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.dz-badges span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #0c4a6e;
    font-size: 0.78rem;
    font-weight: 700;
}
.dz-action a {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 14px 30px -20px rgba(14, 165, 233, 0.7);
}
.dz-related-grid {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}
.dz-related-grid a {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
}
.dz-faq-note {
    color: #475569;
    font-size: 0.95rem;
}
@media (min-width: 900px) {
    .dz-card {
        flex-direction: row;
        align-items: center;
    }
    .dz-logo {
        width: 190px;
        flex-shrink: 0;
        min-height: 118px;
    }
    .dz-copy {
        flex: 1;
        text-align: center;
    }
    .dz-action {
        width: 190px;
        flex-shrink: 0;
    }
}
