.contacts__list {
    list-style: none;
}

.contacts__item {
    margin-bottom: var(--spacing-sm);
    display: flex;
    flex-direction: column;
}

.contacts__label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contacts__value {
    font-size: 14px;
    color: var(--color-text);
    word-break: break-word;
    margin-top: 2px;
}

@media print {
    .contacts__value a {
        color: var(--color-text) !important;
    }
}