.block-addresses {
    justify-content: center;
}
.block-addresses__list {
    position: relative;
    --custom-theme-flex-span: 8;
}
.block-addresses__list::before,
.block-addresses__item::before {
    content: '';
    opacity: 0.5;
    border-bottom: 1px dotted;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.block-addresses__list::before {
    top: auto;
    bottom: 0;
}

.block-addresses__item {
    position: relative;
    padding-top: 16px;
    padding-bottom: 16px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease-out;
}
.block-addresses__item:focus-visible,
.block-addresses__item:hover {
    color: var(--wp--preset--color--red);

}
.address__name {
    --custom-theme-flex-span: 6;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.3;
}

.address__name .icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.3em;
}
.address__campus {
    --custom-theme-flex-span: 4;
    font-size: 0.875rem;
    line-height: 1.3;
}
.address__country {
    --custom-theme-flex-span: 2;
    text-transform: uppercase;
    text-align: right;
    font-size: 0.875rem;
    line-height: 1.3;
}

@media screen and (max-width: 991px) {
    .block-addresses__list {
        --custom-theme-flex-span: 12;
    }
}
@media screen and (max-width: 767px) {
    .block-addresses {
        margin-left: calc(var(--wp--style--root--padding-left) * -1);
        margin-right: calc(var(--wp--style--root--padding-right) * -1);
    }
    .block-addresses__item {
        padding-left: 10px;
        padding-right: 10px;
        --custom-theme-flex-gap: 10px;
    }
    .block-addresses__item > *:not(.address__name) {
        flex: 1 1 auto;
    }
}
