/* Global Telefoncular group signature. Used by both the shared layout and standalone home page. */
.telefoncular-rail {
    position: fixed;
    z-index: 1200;
    top: 50%;
    right: 0;
    display: grid;
    width: 60px;
    height: 230px;
    place-items: center;
    padding: 16px 0;
    color: #fff;
    background: linear-gradient(180deg, #123d4f 0%, #0c3042 100%);
    border: 1px solid rgba(105, 196, 218, .28);
    border-right: 0;
    border-radius: 16px 0 0 16px;
    box-shadow: 0 16px 38px rgba(2, 21, 33, .2);
    transform: translateY(-50%);
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    text-decoration: none;
}

.telefoncular-rail__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    font-size: .9rem;
    letter-spacing: .01em;
    line-height: 1;
    white-space: nowrap;
}

.telefoncular-rail__label strong {
    color: #fff;
    font-weight: 850;
}

.telefoncular-rail__label small {
    color: rgba(213, 231, 236, .46);
    font-size: .78rem;
    font-weight: 700;
}

.telefoncular-rail:hover,
.telefoncular-rail:focus-visible {
    color: #fff;
    background: linear-gradient(180deg, #17495d 0%, #10384a 100%);
    box-shadow: 0 20px 46px rgba(2, 21, 33, .28);
    transform: translate(-4px, -50%);
}

.telefoncular-rail:focus-visible {
    outline: 3px solid rgba(181, 223, 74, .72);
    outline-offset: 3px;
}

@media (max-width: 760px) {
    .telefoncular-rail {
        width: 48px;
        height: 190px;
        padding: 12px 0;
        border-radius: 13px 0 0 13px;
    }

    .telefoncular-rail__label {
        font-size: .76rem;
    }

    .telefoncular-rail__label small {
        font-size: .68rem;
    }

    .telefoncular-rail:hover,
    .telefoncular-rail:focus-visible {
        transform: translate(-3px, -50%);
    }
}
