/*
Theme Name: Logico
Theme URI: http://demo.artureanec.com/themes/logico/
Author: Artureanec
Author URI: https://demo.artureanec.com/
Description: Meet WordPress Theme by Artureanec - really amazing, powerful, clean and ultramodern product, that created with love and attention to details. We know it's difficult to represent yourself on the web in the right way, that's why we spent a lot of time trying to make our Theme more effective. It's flexible, easy customizable, high-quality and really easy to use! So everyone can make awesome website with it. Hope you'll like it. Enjoy!
Version: 1.1.3
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: logico
*/



/* Контейнер карты */
.aries-map-container {
  position: relative;
  width: 100%;
  max-width: 1500px;               /* можно убрать, если нужна полная ширина */
  margin: 0 auto;
  border-radius: 16px;             /* скруглённые углы */
  overflow: hidden;                /* чтобы обрезать края карты */
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

/* Сама карта */
.aries-map-container iframe {
  width: 100%;
  height: 600px;                   /* фиксированная высота */
  border: none;
  display: block;

  /* скрываем верхнюю панель Google My Maps */
  margin-top: -45px;
  clip-path: inset(45px 0 0 0);

  /* светлый почти ч/б фильтр */
  filter: grayscale(80%) brightness(120%);
  transition: filter 0.3s ease;
}

/* Эффект при наведении (на десктопе) */
.aries-map-container:hover iframe {
  filter: grayscale(65%) brightness(125%);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .aries-map-container {
    border-radius: 12px;
  }

  .aries-map-container iframe {
    height: 400px;                 /* чуть ниже на телефонах */
    margin-top: -40px;
    clip-path: inset(40px 0 0 0);
    filter: grayscale(75%) brightness(125%);
  }
}

