/* ========================================
   11. КОНТАКТЫ
   ======================================== */

.vb-contacts {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.vb-contacts__info {
    padding: 2rem;
}

.vb-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vb-contact-item__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vb-contact-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vb-contact-item__label {
    font-size: 0.9rem;
    color: var(--vb-color-text);
    margin-bottom: 0.25rem;
}

.vb-contact-item__value {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--vb-color-text);
}

.vb-contact-item__value a {
    color: var(--vb-color-heading, #000);
    text-decoration: none;
}

.vb-contact-item__value a:hover {
    text-decoration: none;
}

.vb-contacts__map {
    min-height: 400px;
    border-radius: var(--vb-radius);
    overflow: hidden;
}

.vb-contacts__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .vb-contacts {
        grid-template-columns: 1fr;
    }
}
