.linkedin-share-label {
    position: fixed;
    z-index: 40;
    top: 50%;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding: 12px 15px;
    border-radius: 12px 0 0 12px;
    background: #0a66c2;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 28px rgba(10, 102, 194, .28);
    transform: translateY(-50%);
    transition: background-color .18s ease, padding-right .18s ease, box-shadow .18s ease;
}

.linkedin-share-label:hover {
    padding-right: 20px;
    background: #004182;
    color: #fff;
    box-shadow: 0 13px 34px rgba(10, 102, 194, .38);
}

.linkedin-share-label:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -5px;
}

.linkedin-share-label svg {
    flex: 0 0 auto;
}

.linkedin-share-label span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

@media (max-width: 760px) {
    .linkedin-share-label {
        top: auto;
        right: 12px;
        bottom: 14px;
        width: 48px;
        height: 48px;
        justify-content: center;
        flex-direction: row;
        padding: 0;
        border-radius: 50%;
        transform: none;
    }

    .linkedin-share-label:hover {
        padding-right: 0;
    }

    .linkedin-share-label span {
        position: absolute;
        writing-mode: horizontal-tb;
        transform: none;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .linkedin-share-label {
        transition: none;
    }
}
