.yandex-map {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg, 8px);
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.05));
}

.yandex-map__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yandex-map__link {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    color: var(--color-text-primary, #1a1a1a);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.yandex-map__link:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.yandex-map__link i {
    font-size: 18px;
}

/* Отзывчивость */
@media (max-width: 768px) {
    .yandex-map {
        border-radius: var(--border-radius-md, 6px);
    }

    .yandex-map__link {
        width: 36px;
        height: 36px;
    }

    .yandex-map__link i {
        font-size: 16px;
    }
}
