/* Right column */

.right-column-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aside-title {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.contact-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-block h3 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-block p {
    margin-bottom: 6px;
    font-size: 14px;
}

.contact-block a {
    overflow-wrap: anywhere;
}

@media (max-width: 991.98px) {
    .right-column-stack {
        margin-top: 8px;
    }
}

@media (max-width: 767.98px) {
    .right-column-stack {
        margin-top: 1.5rem;
    }
}