/*
Theme Name: Ujjan Pandit
Theme URI: #
Author: Sanjay
Author URI: #
Description: Ujjan Pandit
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Ujjan Pandit

--------------------------------------------------------------*/
.col.span_3 ul li a img {
    max-width: 16px !important;
    margin-right: 8px !important;
}
/* Container ko page width ke hisaab se center/limit */
.map-embed{
  max-width: 1200px;   /* optional: page ki max width */
  margin: 0 auto;
  border-radius: 8px;  /* optional */
  overflow: hidden;    /* rounded corners apply on iframe */
  background: #f4f4f4; /* loading se pehle soft bg */
}

/* Modern way: aspect-ratio */
.map-embed iframe{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9; /* responsive height auto */
  border: 0;
}

/* Desktop par थोड़ा ज्‍यादा ऊँचा चाहिये? */
@media (min-width: 992px){
  .map-embed iframe{
    aspect-ratio: 21 / 9; /* wide banner look */
    /* या fixed height use करना हो:
       height: 420px; aspect-ratio remove कर दें */
  }
}
/* Very small phones पर height कम कर दो */
@media (max-width: 400px){
  .map-embed iframe{
    aspect-ratio: 4 / 3;
  }
}
