/* =========================================================
   SongDrop Public Profile – E-Mail bestätigt Badge
   Ergänzt die Creator-Hero ohne den bestehenden Profil-Style zu überschreiben.
   ========================================================= */

.sd-public-hero__titleline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
}

.sd-public-hero__titleline h1 {
    margin: 0;
}

.sd-public-email-verified {
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 10px 0 7px;
    color: #c9ffe3;
    border: 1px solid rgba(34, 255, 154, .34);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(0, 217, 255, .13), rgba(34, 255, 154, .14)),
        rgba(3, 18, 27, .82);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, .12) inset,
        0 10px 25px rgba(0, 0, 0, .14),
        0 0 22px rgba(34, 255, 154, .10);
    cursor: help;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .07em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.sd-public-email-verified svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    overflow: visible;
}

.sd-public-email-verified svg > path:first-child {
    fill: #22ff9a;
    stroke: rgba(226, 255, 243, .72);
    stroke-width: .65;
    paint-order: stroke fill;
}

.sd-public-email-verified__check {
    fill: none;
    stroke: #001f16;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.45;
}

.sd-public-email-verified__label {
    display: inline-block;
}

@media (max-width: 620px) {
    .sd-public-hero__titleline {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .sd-public-email-verified {
        min-height: 29px;
        padding-right: 9px;
        font-size: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sd-public-email-verified {
        transition: none !important;
    }
}
