/* -- IMPRESSUM GRID -- */

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.impressum-field .impressum-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.impressum-field .impressum-value {
    font-weight: 500;
    color: var(--primary);
    line-height: 1.6;
}

.impressum-field .impressum-value a {
    color: var(--accent);
    transition: opacity 0.2s;
}

.impressum-field .impressum-value a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 575px) {
    .impressum-grid {
        grid-template-columns: 1fr;
    }
}