/* Слайдер */
.about-slideshow {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 50vh;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
  }
  .about-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .about-slideshow .slide.active {
    opacity: 1;
  }
  
  /* Заголовок */
  .about-title {
    text-align: left;

    /* margin: 5vh 10px 20px 10px; */
    font-size: 24px;
    font-family: 'Oswald';
    color: var(--black-2);
    /* color: var(--gray-text-3); */

    font-weight: 400;
    text-transform: uppercase;
    max-width: 800px;margin: 16px auto 0.75em auto;

  }
  .about-subtitle {
    text-align: left;
    color: var(--gray-text-3);
    margin-bottom: 2em;
    line-height: 1.7;
    margin: 0 auto 2em auto;
    max-width: 800px;
    white-space: pre-wrap;
  }
  
  /* Блок имама */
  .imam-block {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 2em;
    align-items: center;
    padding: 2em 0;
    max-width: 800px;
    margin: 0 auto;
  }
  .imam-card{
    max-width: 400px;
    margin: 0 auto;
  }
  .imam-card-cont {
    /* background-color: var(--white); */
    /* padding: 16px; */
    border-radius: 20px;
    /* border: 1px solid var(--gray-line); */
  }
  .imam-card img {
    width: 60%;
    margin: 5% 20% 5% 20%;
    border-radius: 50%;

  }
  .ic-who{
    color: var(--black-2);
    text-align: center;
    font-family: 'Oswald';
    font-size: 20px;
    font-weight: 400;
  }
  .ic-name{

    font-size: 22px;
    font-weight: 400;
    font-family: 'Oswald';
    text-transform: uppercase;
    color: var(--black-2);
    padding: 8px 8px 12px 8px;
    text-align: center;
  }
  .ic-name-about{

    padding:0 10%;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--gray-text-1);
    color: var(--blue-more);
  }
  .ic-links-cont{
    padding: 20px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .icl-item{
    border: 1px solid var(--gray-line);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 10px;
  }
  .icl-item{
    border: 1px solid var(--gray-line);
    /* background-color: var(--white); */
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.icl-item > svg,
.icl-item > img
{
width: 20px;
height: 20px;
fill: var(--blue-more);
}



  .imam-text {
    line-height: 1.75;
    white-space: pre-wrap;
    color: var(--gray-text-3);
  }
  
  /* Блок Әнет Баба */
  .anet-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    align-items: center;
    padding: 2em 0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--gray-text-3);
  }

  .ab-header{
    font-weight: 600;
    white-space: pre-wrap;
  }
  .ab-text{
    white-space: pre-wrap;
  }
  
  /* Карта и контакты */
  .map-contacts {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: none;

  }

  
  /* Мобильная адаптация */
  @media (max-width: 856px) {
    .imam-block,
    .anet-block,
    .map-contacts {
      grid-template-columns: 1fr;
    }
    .about-slideshow {
      height: 45vh;
    margin: -20px -20px 0 -20px;
    width: calc(100% + 40px);
    border-radius: 0 0 ;
    }
  }
  @media (max-width: 550px) {
    .about-slideshow {
      margin: -20px -12px 0 -12px;
      width: calc(100% + 24px);
      }
  }