/* components.css – wiederverwendbare Komponenten */

/* Card-Komponente */
.card {
    background: var(--color-surface);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    padding: 2.5rem 2rem;
    border: 1px solid var(--color-border-subtle);
}
/* Positionierung oberhalb des Card-Inhalts */
.card {
    position: relative;
}

/* Container für die Actions oben rechts */
.card-actions {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    display: flex;
    gap: 0.5rem;
}

/* Links im Stil von text-lead */
.action-link {
    font-size: 0.75rem;         /* gleiche Größe wie .text-lead */
    color: var(--color-link-primary);
    text-decoration: none;
    font-weight: 500;
}

.action-link:hover {
    text-decoration: underline;
}

/* Typografie Utilities */
.heading-xl {
    margin: 0 0 1rem;
    font-size: 2rem;
    letter-spacing: 0.03em;
}

.text-lead {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5f5; /* leicht helleres Blau wie im Original */
}

.text-muted {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Badge-Komponente */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Spezialisierung für "erfolgreich / aktiv" */
.badge-success {
    background: var(--color-badge-success-bg);
    border: 1px solid var(--color-badge-success-border);
    color: var(--color-badge-success-text);
}

/* Kontakt-Block */
.contact-info {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* primärer Link-Stil */
.link-primary {
    color: var(--color-link-primary);
    text-decoration: none;
}

.link-primary:hover {
    text-decoration: underline;
}