/* Gesamter Block */
.y4m-social-links {
    display: block;
    margin: 0 0 14px 0;
}

/* Sichtbare Zeile */
.y4m-social-links > summary {
    list-style: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 12px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;

    min-height: 42px;

    border-radius: 6px;

    box-sizing: border-box;
}

/* Standard-Pfeil entfernen */
.y4m-social-links > summary::-webkit-details-marker {
    display: none;
}

/* Hover-Effekt */
.y4m-social-links > summary:hover {
    background: rgba(0,0,0,0.04);
}

/* Ausklappbereich */
.y4m-social-content {
    padding: 10px 12px 10px 30px;

    margin-top: 3px;

    border-left: 2px solid #e2e2e2;

    box-sizing: border-box;
}

/* Einzelne Zeilen */
.y4m-social-content > div {
    margin: 6px 0;
    line-height: 1.2;

    word-break: break-word;
}

/* Links */
.y4m-social-content a {
    text-decoration: none;
}

.y4m-social-content a:hover {
    text-decoration: underline;
}

/* Eigener Pfeil */
.y4m-social-links > summary::before {
    content: "▸";

    font-size: 14px;

    transition: transform 0.2s ease;

    display: inline-block;
}

/* Gedrehter Pfeil wenn geöffnet */
.y4m-social-links[open] > summary::before {
    transform: rotate(90deg);
}




