.vcard {
    max-width: 380px;
    margin: 40px auto;
    padding: 30px 25px;
    border-radius: 20px;

    /* Neuer hochwertiger 3‑Stufen‑Verlauf */
    background: linear-gradient(
        180deg,
        var(--cc-blue) 0%,
        var(--cc-blue-light) 50%,
        var(--cc-blue-dark) 100%
    );

    color: var(--cc-white);
    text-align: center;
    box-shadow: 0 4px 18px var(--cc-shadow);
}

.vcard-logo {
    width: 110px;
    margin: 0 auto 15px;
    display: block;
}

.vcard-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--cc-white);
}

.vcard-role {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    text-align: center;
    color: var(--cc-white);
}

.vcard-info {
    margin-bottom: 25px;
}

.vcard-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.vcard-icon {
    font-size: 18px;
}

.vcard-row a {
    color: var(--cc-white);
    text-decoration: none;
    font-weight: 500;
}

.vcard-button {
    display: inline-block;
    background: var(--cc-white);
    color: var(--cc-blue);
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.vcard-button:hover {
    background: #f0f0f0;
}

.vcard-company {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
    text-align: center;
    color: var(--cc-white);
}

.vcard-company-link {
    color: var(--cc-white);
    text-decoration: none;
}

.vcard-company-link:hover {
    text-decoration: underline;
}

.vcard-legal {
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
}

.vcard-legal a {
    color: var(--cc-white);
    text-decoration: none;
    margin: 0 4px;
}

.vcard-legal a:hover {
    text-decoration: underline;
}

.vcard-legal span {
    color: var(--cc-white);
    opacity: 0.6;
}
