/* NearB social links list */

.nearb-social-links {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nearb-social-links__item {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.nearb-social-links__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background: url('../icons/chevron-right.svg') no-repeat center center;
    background-size: contain;
}

.nearb-social-links__anchor {
    color: #327BE5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nearb-social-links__anchor:hover,
.nearb-social-links__anchor:focus {
    color: #0f172a;
    text-decoration: underline;
}

.nearb-social-links__label {
    color: #0f172a;
    font-weight: 400;
}
