/* ============================================================
   PYQ Related Posts - Clean List inside Card
   ============================================================ */

.pyq-related-block {
    margin-top: 0;
}

.pyq-related-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--pt-text-light, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 12px 20px;
    background: var(--pt-bg-subtle, #f8fafc);
    border-bottom: 1px solid var(--pt-border, #e2e8f0);
}

.pyq-related-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pyq-related-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--pt-border-light, #f1f5f9);
    transition: background 0.15s ease;
}

.pyq-related-item:last-child {
    border-bottom: none;
}

.pyq-related-item:hover {
    background: var(--pt-bg-subtle, #f8fafc);
}

.pyq-related-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--pt-primary, #10b981);
    min-width: 28px;
}

.pyq-related-body {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.pyq-related-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
}

.pyq-related-label {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: var(--pt-text, #334155);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pyq-related-meta {
    font-size: 11px;
    color: var(--pt-text-muted, #94a3b8);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .pyq-related-meta {
        display: none;
    }

    .pyq-related-item {
        padding: 10px 16px;
    }
}