/* ── CREDIT CARDS ── */
.credit-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.credit-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.credit-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0 0 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.credit-card-title a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: hsl(var(--primary));
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.875rem;
}

.credit-card-title a:hover {
    opacity: 0.8;
}

.credit-card-title a svg {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    flex-shrink: 0;
}

.credit-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: hsl(var(--muted-foreground));
    margin: 0;
}

.credit-note {
    font-size: 0.8rem !important;
    font-style: italic;
    opacity: 0.75;
    margin-top: 0.2rem !important;
}

.credits-footer {
    font-size: 0.8rem;
    color: hsl(var(--muted-foreground));
    opacity: 0.7;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid hsl(var(--border));
}
