/* ==================== ОСНОВНЫЕ СТИЛИ БЛОКА СОЦСЕТИ ==================== */
.social-section {
  width: 100%;
  height: 360px;
  margin: 200px auto 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.social-container {
  position: relative;
  width: 1880px;
  height: 360px;
  background-image: url('../img/social_background.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-content {
  display: flex;
  width: 469px;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.social-title {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Onest;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.social-subtitle {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16.667px;
}

.social-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.social-icon-large:hover {
  transform: scale(1.1);
  background: #f59e0b;
}

.social-icon-large svg {
  width: 40px;
  height: 40px;
  fill: #1e293b;
}

/* ==================== АДАПТИВНЫЕ СТИЛИ БЛОКА СОЦСЕТИ ==================== */
@media (max-width: 1350px) {
  .social-container {
    /* width: 95%; */
  }
}

@media (max-width: 1280px) {

  .social-container {
    width: 100%;
  }






}
/*
@media (max-width: 900px) {
  .social-title {
    font-size: 2rem;
  }

  .social-icons-row {
    gap: 15px;
  }

  .social-icon-large {
    width: 60px;
    height: 60px;
  }

  .social-icon-large svg {
    width: 30px;
    height: 30px;
  }
}

*/





/* Для экранов до 768px - мобильные устройства */
@media (max-width: 768px) {
  .social-section {
    margin: 80px auto 0;
    padding: 0 15px;
    height: auto;
  }
  
  .social-container {
    height: 360px;
    min-height: 360px;
    padding: 40px 20px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .social-content {
    width: 100%;
    gap: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-title {
    font-size: 28px;
  }
  
  .social-subtitle {
    font-size: 16px;
    margin-bottom: 0;
  }
  
  /* Иконки соцсетей */
  .social-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 0px;
  }
  
  .social-icon-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
  }
  
  .social-icon-large:hover {
    transform: scale(1.1);
    background: #f59e0b;
  }
  
  .social-icon-large img {
    width: 60px;
    height: 60px;
  }
  
  .social-icon-large svg {
    width: 32px;
    height: 32px;
    fill: #1e293b;
  }
}