/* Общие стили для контейнеров */
.map-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 560px;
    margin: 0 auto;
    padding: 20px;
}

/* Стили для карты */
.yandex-map {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-link {
    color: #eee;
    font-size: 12px;
    position: absolute;
    text-decoration: none;
}

.map-link:nth-child(1) {
    top: 0;
}

.map-link:nth-child(2) {
    top: 14px;
}

.yandex-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Стили для отзывов */
.reviews-container {
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reviews-iframe {
    width: 100%;
    height: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-sizing: border-box;
}

.reviews-link {
    box-sizing: border-box;
    text-decoration: none;
    color: #b3b3b3;
    font-size: 10px;
    font-family: 'YS Text', sans-serif;
    padding: 0 20px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-height: 14px;
    white-space: nowrap;
}

/* Адаптивность */
@media (max-width: 600px) {
    .map-container {
        padding: 10px;
    }
    
    .yandex-map, 
    .reviews-container {
        height: 300px;
    }
    
    .reviews-container {
        height: 600px;
    }
}