.finance-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.finance-related-card {
    background: var(--finance-surface);
    border: 1px solid var(--finance-border);
    border-radius: var(--radius-2xl);
    padding: 22px;
    box-shadow: var(--finance-shadow-sm);
}

.finance-related-card:hover {
    transform: translateY(-4px);
    border-color: var(--badge-info-border);
    box-shadow: var(--finance-shadow-lg);
}

.finance-related-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: var(--finance-surface-soft);
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 16px;
}

.finance-related-card h3 {
    font-size: 20px;
    margin: 0 0 12px;
}

.finance-related-card h3 a {
    color: var(--finance-text);
    text-decoration: none;
}

.finance-related-card p {
    margin: 8px 0;
    color: var(--finance-soft-text);
}

.finance-related-card .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: var(--radius-md);
    background: var(--finance-primary);
    color: var(--color-surface) !important;
    font-weight: 800;
    text-decoration: none;
}