/* ========== NEWS BANNER ========== */
.news-banner {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  background-image: url('../img/news/banner-desktop.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  width: 100%;
  position: relative;
}

.news-banner .news-banner-container {
  padding: 48px 60px 60px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  min-height: 600px;
}

/* Левый верхний логотип */
.news-banner-top-left {
  position: absolute;
  top: 48px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.news-banner-logo img {
  width: auto;
  display: block;
}

.news-banner-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.news-banner-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.news-banner-logo-text:nth-of-type(1) {
  font-size: 55px;
  color: #013CFF;
  font-weight: 700;
}

.news-banner-logo-text:nth-of-type(2) {
  font-size: 50px;
  color: #fff;
  font-weight: 600;
}

.news-banner-logo-text:nth-of-type(3) {
  font-size: 30px;
  margin-top: 5px;
  color: #fff;
}

/* Центральный контент */
.news-banner-center {
  flex: 1;
  max-width: 620px;
  margin: 0 auto;
  margin-left: 0;
  padding-top: 180px;
}

.news-banner-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 32px;
  max-width: 580px;
  opacity: 0.9;
  text-transform: uppercase;
}

.news-banner-partners {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: left;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.news-banner-icons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 44px;
}

.news-banner-icons img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.news-banner-icons img:first-child {
  height: 102px;
}

.news-banner-icons img:last-child {
  height: 56px;
}

.news-banner-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.news-btn-participant {
  background-color: #00D7D0;
  border: none;
  padding: 14px 36px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0A194A;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 215, 208, 0.3);
}

.news-btn-participant:hover {
  background-color: #00bfb9;
  transform: translateY(-2px);
}

.news-btn-ticket {
  background-color: #013CFF;
  border: none;
  padding: 14px 44px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(1, 60, 255, 0.2);
}

.news-btn-ticket:hover {
  background-color: #0029c2;
  transform: translateY(-2px);
}

/* Правая часть - карточка с датами */
.news-banner-right {
  width: 650px;
  flex-shrink: 0;
  padding-top: 180px;
  padding-right: 420px;
}

.news-date-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid #013CFF;
  border-radius: 32px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 20px 35px -12px rgba(1, 60, 255, 0.12);
}

.news-date-numbers {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 58px;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.news-date-month {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.news-date-place {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #013CFF;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.news-date-venue {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #00D7D0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ========== МОБИЛЬНЫЙ БАННЕР ========== */
.news-mobile-banner {
  display: none;
  max-width: 1440px;
  margin: 0 auto;
  background-image: url('../img/news/banner-mobile.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}

.news-mobile-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.news-mobile-container {
  position: relative;
  z-index: 1;
  padding: 40px 20px 50px;
  display: flex;
  flex-direction: column;
}

.news-mobile-title {
  text-align: center;
  margin-bottom: 20px;
}

.news-mobile-title-line1 {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #013CFF;
  text-transform: uppercase;
  line-height: 1.2;
}

.news-mobile-title-line2 {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.2;
}

.news-mobile-title-line3 {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-top: 10px;
}

.news-mobile-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 10px;
  text-transform: uppercase;
}

.news-mobile-partners {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.news-mobile-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
}

.news-mobile-icons img:first-child {
  height: 70px;
  width: auto;
}

.news-mobile-icons img:last-child {
  height: 40px;
  width: auto;
}

.news-mobile-date-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid #013CFF;
  border-radius: 32px;
  padding: 20px 16px;
  text-align: center;
  max-width: 280px;
  margin: 0 auto 30px;
}

.news-mobile-date-numbers {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
}

.news-mobile-date-month {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.news-mobile-date-place {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #013CFF;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.news-mobile-date-venue {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #00D7D0;
  text-transform: uppercase;
}

.news-mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.news-mobile-btn-participant,
.news-mobile-btn-ticket {
  padding: 14px 20px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  width: 100%;
}

.news-mobile-btn-participant {
  background-color: #00D7D0;
  color: #0A194A;
}

.news-mobile-btn-participant:hover {
  background-color: #00bfb9;
}

.news-mobile-btn-ticket {
  background-color: #013CFF;
  color: #FFFFFF;
}

.news-mobile-btn-ticket:hover {
  background-color: #0029c2;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1024px) {
  .news-banner .news-banner-container {
    padding: 40px 40px 50px 40px;
  }

  .news-banner-center {
    padding-top: 200px;
  }

  .news-banner-right {
    padding-top: 200px;
  }
}

@media (max-width: 900px) {
  .news-banner {
    display: none;
  }

  .news-mobile-banner {
    display: block;
  }
}

@media (min-width: 901px) {
  .news-mobile-banner {
    display: none;
  }

  .news-banner {
    display: block;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .news-mobile-container {
    padding: 50px 40px 60px;
  }

  .news-mobile-title-line1 {
    font-size: 52px;
  }

  .news-mobile-title-line2 {
    font-size: 46px;
  }

  .news-mobile-title-line3 {
    font-size: 26px;
  }

  .news-mobile-description {
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .news-mobile-partners {
    font-size: 22px;
  }

  .news-mobile-date-card {
    max-width: 340px;
  }

  .news-mobile-date-numbers {
    font-size: 52px;
  }

  .news-mobile-date-month {
    font-size: 22px;
  }

  .news-mobile-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .news-mobile-btn-participant,
  .news-mobile-btn-ticket {
    width: auto;
    min-width: 220px;
  }
}

@media (max-width: 480px) {
  .news-mobile-container {
    padding: 30px 15px 40px;
  }

  .news-mobile-title-line1 {
    font-size: 28px;
  }

  .news-mobile-title-line2 {
    font-size: 24px;
  }

  .news-mobile-title-line3 {
    font-size: 14px;
  }

  .news-mobile-description {
    font-size: 11px;
  }

  .news-mobile-partners {
    font-size: 14px;
  }

  .news-mobile-icons img:first-child {
    height: 50px;
  }

  .news-mobile-icons img:last-child {
    height: 30px;
  }

  .news-mobile-date-numbers {
    font-size: 32px;
  }

  .news-mobile-date-month {
    font-size: 14px;
  }

  .news-mobile-btn-participant,
  .news-mobile-btn-ticket {
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* ========== NEWS MEDIA SECTION ========== */
.news-media-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px;
  background: transparent;
}

.news-media-container {
  width: 100%;
}

/* Заголовок с линиями */
.news-media-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.news-media-line {
  width: 80px;
  height: 3px;
  background: #00D7D0;
  border-radius: 0;
}

.news-media-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

/* Описание */
.news-media-description-wrapper {
  text-align: left;
  margin-bottom: 50px;
}

.news-media-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #FFFFFF;
  max-width: 1000px;
  margin: 0;
}

/* ========== БОЛЬШИЕ ВИДЕО (ГОРИЗОНТАЛЬНЫЕ) ========== */
.news-video-slider-container {
  position: relative;
  margin-bottom: 60px;
  padding: 0 60px;
}

.news-video-slider {
  overflow: hidden;
  width: 100%;
}

.news-video-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.news-video-slide {
  flex: 0 0 calc(33.333% - 16px);
}

.news-video-card {
  position: relative;
  background: #002C6C;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

/* Затемнение при наведении для больших видео */
.news-video-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.news-video-card:hover::before {
  background: rgba(0, 0, 0, 0.4);
}

.news-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #00D7D0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.news-video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #003BFF;
}



/* Кнопки навигации для больших видео */
.news-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 70px;
  background: var(--color-page-bg);
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.news-slider-prev {
  left: 0;
}

.news-slider-next {
  right: 0;
}

/* Стрелки - место под твои SVG */
.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow img {
  width: 24px;
  height: 24px;
}

/* ========== МАЛЕНЬКИЕ ВИДЕО (ВЕРТИКАЛЬНЫЕ) ========== */
.video-slider-container {
  position: relative;
  margin: 40px 0;
  padding: 0 50px;
}

.video-slider {
  overflow: hidden;
  width: 100%;
}

.video-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.video-slide {
  flex: 0 0 calc(33.333% - 16px);
}

.video-card {
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  background: #0B204F;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #002C6C;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-card:hover .play-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.play-btn {
  width: 60px;
  height: 60px;
  background: #00D7D0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
  background: #003BFF;
}

.play-icon {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

/* Кнопки навигации для маленьких видео */
.video-slider-prev,
.video-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 70px;
  background: var(--color-page-bg);
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-slider-prev {
  left: 0;
}

.video-slider-next {
  right: 0;
}

/* Стрелки для маленьких видео */
.video-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-arrow img {
  width: 24px;
  height: 24px;
}

.video-slider-prev:hover,
.video-slider-next:hover {
  background: #00D7D0;
}

/* Точки-индикаторы */
.video-slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.video-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-dot.active {
  background: #00D7D0;
  transform: scale(1.2);
}

/* Кнопка подписки */
.news-subscribe-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.news-subscribe-btn {
  background-color: #00D7D0;
  border: none;
  padding: 16px 48px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #051A2D;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-subscribe-btn:hover {
  background-color: #00D7D0;
  color: #0B204F;
  transform: translateY(-2px);
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1024px) {
  .news-media-section {
    padding: 50px 30px;
  }

  .news-media-title {
    font-size: 36px;
  }

  .news-media-line {
    width: 60px;
  }

  .news-video-slide,
  .video-slide {
    flex: 0 0 calc(50% - 12px);
  }

  .news-video-card {
    height: 450px;
  }

  .video-card {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .news-media-section {
    padding: 40px 20px;
  }

  .news-media-title {
    font-size: 28px;
  }

  .news-video-slider-container,
  .video-slider-container {
    padding: 0 35px;
  }

  .news-video-slide,
  .video-slide {
    flex: 0 0 100%;
  }

  .news-video-card {
    height: 420px;
  }

  .video-card {
    height: 300px;
  }

  .news-slider-nav,
  .video-slider-prev,
  .video-slider-next {
    width: 40px;
    height: 40px;
  }

  .slider-arrow,
  .video-arrow {
    font-size: 28px;
  }

  .news-subscribe-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .news-media-section {
    padding: 30px 15px;
  }

  .news-media-title {
    font-size: 22px;
  }

  .news-media-line {
    width: 30px;
  }

  .news-video-card {
    height: 180px;
  }

  .video-card {
    height: 250px;
  }

  .play-btn,
  .news-video-play {
    width: 45px;
    height: 45px;
  }

  .play-icon {
    width: 18px;
    height: 18px;
  }
}

/* ========== EVENTS SECTION ========== */
.events-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(97deg, #00D7D0 0%, #0A5B94 55%, #043271 100%);
}

.events-container {
  width: 100%;
}

/* Заголовок */
.events-header {
  margin-bottom: 50px;
}

.events-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: left;
  margin: 0;
}

/* Слайдер контейнер */
.events-slider-container {
  position: relative;
  padding: 0 60px;
}

.events-slider {
  overflow: hidden;
  width: 100%;
}

.events-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

/* Карточка - белый фон */
.events-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.events-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Изображение - внутри белого фона, со скруглением */
.events-card-image {
  width: calc(100% - 20px);
  height: 250px;
  margin: 10px auto 0 auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.events-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0B204F;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 1;
}

/* Контент карточки */
.events-card-content {
  padding: 16px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.events-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
  margin: 0 0 16px 0;
}

/* Кнопка Читать */
.events-read-btn {
  background-color: #013CFF;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-bottom: 20px;
}

.events-read-btn:hover {
  background-color: #0029b3;
  transform: translateX(5px);
}

/* Дата и время */
.events-date-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.events-date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #003BFF;
  line-height: 1;
}

.events-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.events-time img {
  width: 16px;
  height: 16px;
}

.events-time span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #666666;
}

/* Хештеги */
.events-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.events-hashtags span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 12px;
  color: #003BFF;
}

/* Кнопки навигации снизу */
.events-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.events-prev,
.events-next {
  width: 50px;
  height: 50px;
  background: #051A2D;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.events-prev:hover,
.events-next:hover {
  background: #003BFF;
}

.events-prev img,
.events-next img {
  width: 24px;
  height: 24px;
}

/* Точки-индикаторы */
.events-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.events-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.events-dot.active {
  background: #00D7D0;
  transform: scale(1.3);
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1024px) {
  .events-section {
    padding: 50px 30px;
  }

  .events-title {
    font-size: 36px;
  }

  .events-slider-container {
    padding: 0;
  }

  .events-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 40px 20px;
  }

  .events-title {
    font-size: 28px;
  }

  .events-card {
    flex: 0 0 100%;
  }

  .events-card-image {
    height: 200px;
  }

  .events-card-title {
    font-size: 16px;
  }

  .events-date {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .events-section {
    padding: 30px 15px;
  }

  .events-title {
    font-size: 22px;
  }

  .events-card-image {
    height: 180px;
  }

  .events-card-content {
    padding: 16px;
  }

  .events-card-title {
    font-size: 14px;
  }

  .events-read-btn {
    font-size: 12px;
    padding: 6px 16px;
  }

  .events-date {
    font-size: 20px;
  }

  .events-prev,
  .events-next {
    width: 40px;
    height: 40px;
  }

  .events-prev img,
  .events-next img {
    width: 20px;
    height: 20px;
  }
}

/* ========== MEDIA SECTION ========== */
.media-section {
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 40px 40px;
  background: rgba(255, 255, 255, 0.05);
}

.media-container {
  width: 100%;
}

/* Заголовок */
.media-header {
  margin-bottom: 50px;
}

.media-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 54px;
  text-transform: uppercase;
  color: #00D7D0;
  text-align: left;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.media-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: left;
  margin: 0;
}

/* Сетка 4 в ряд */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* Карточки с разными цветами */
.media-card {
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.media-card:hover {
  transform: translateY(-5px);
}

/* Цвета карточек */
.media-card-1 {
  background: #00D7D0;
}

.media-card-2 {
  background: #003BFF;
}

.media-card-3 {
  background: #0B204F;
}

.media-card-4 {
  background: #0D1C40;
}

.media-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 20px 0;
}

/* Кнопки с разными цветами */
.media-card-btn {
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.media-btn-1 {
  background: #00B1AB;
  color: #ffffff;
}

.media-btn-1:hover {
  background: #FFFFFF;
  color: #00B1AB;
}

.media-btn-2 {
  background: #033EBD;
  color: #FFFFFF;
}

.media-btn-2:hover {
  background: #FFFFFF;
  color: #033EBD;
}

.media-btn-3 {
  background: #003BFF;
  color: #FFFFFF;
}

.media-btn-3:hover {
  background: #FFFFFF;
  color: #003BFF;
}

.media-btn-4 {
  background: #013CFF;
  color: #FFFFFF;
}

.media-btn-4:hover {
  background: #FFFFFF;
  color: #013CFF;
}

/* Блок СТАТЬ СПИКЕРОМ */
.media-speaker {
  display: flex;
  gap: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Левая часть */
.media-speaker-left {
  flex: 1;
  min-width: 320px;
}

.media-speaker-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 10px 0;
}

.media-speaker-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.media-speaker-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.media-speaker-row {
  display: flex;
  gap: 16px;
}

.media-speaker-row input {
  flex: 1;
}

.media-speaker-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.media-speaker-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  outline: none;
}

.media-speaker-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.media-speaker-input:focus {
  border-color: #00D7D0;
}

.media-speaker-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.media-speaker-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #00D7D0;
}

.media-speaker-checkbox span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.media-speaker-checkbox span a {
  color: #00D7D0;
  text-decoration: none;
}

.media-speaker-checkbox span a:hover {
  text-decoration: underline;
}

.media-speaker-btn {
  background-color: #00D7D0;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.media-speaker-btn:hover {
  background-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Центральная часть - круг 350px */
.media-speaker-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
}

.media-speaker-circle {
  width: 350px;
  height: 350px;
  background: #00D7D0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-speaker-circle img {
  width: 8%;
  height: 80%;
  object-fit: cover;
  object-position: top center;
}

/* Правая часть */
.media-speaker-right {
  flex: 0.8;
  min-width: 250px;
  display: flex;
  align-items: center;
}

.media-speaker-quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
  padding-left: 30px;
}

.media-speaker-circle {
  width: 350px;
  height: 350px;
  background: #00D7D0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-speaker-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ========== АДАПТИВНОСТЬ (ЕДИНЫЙ БЛОК) ========== */

/* Ноутбук (1200px) */
@media (max-width: 1200px) {
  .media-speaker-circle {
    width: 280px;
    height: 280px;
  }
}

/* Планшет (1024px) */
@media (max-width: 1024px) {
  .media-section {
    padding: 50px 30px;
  }

  .media-title {
    font-size: 42px;
  }

  .media-subtitle {
    font-size: 18px;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .media-card-title {
    font-size: 18px;
  }

  .media-speaker {
    flex-direction: column;
    padding: 40px;
    gap: 30px;
  }

  .media-speaker-center {
    order: -1;
  }

  .media-speaker-circle {
    width: 220px;
    height: 220px;
  }

  .media-speaker-right {
    text-align: center;
    justify-content: center;
  }

  .media-speaker-quote {
    padding-left: 0;
    padding-top: 20px;
    border-left: none;
    border-top: 3px solid #00D7D0;
    text-align: center;
  }

  .media-speaker-title {
    font-size: 28px;
  }
}

/* Планшет маленький (900px) */
@media (max-width: 900px) {
  .media-speaker-left {
    min-width: auto;
  }

  .media-speaker-row {
    flex-wrap: wrap;
  }
}

/* Мобилка (768px) */
@media (max-width: 768px) {
  .media-section {
    padding: 40px 20px;
  }

  .media-title {
    font-size: 32px;
  }

  .media-subtitle {
    font-size: 16px;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .media-card {
    padding: 20px;
  }

  .media-card-title {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .media-card-btn {
    font-size: 10px;
    padding: 6px 12px;
  }

  .media-speaker {
    padding: 30px 20px;
    gap: 25px;
  }

  .media-speaker-left {
    min-width: auto;
    width: 100%;
  }

  .media-speaker-title {
    font-size: 24px;
    text-align: center;
  }

  .media-speaker-desc {
    text-align: center;
    font-size: 14px;
  }

  .media-speaker-row {
    flex-direction: column;
    gap: 12px;
  }

  .media-speaker-row-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .media-speaker-checkbox {
    justify-content: center;
  }

  .media-speaker-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .media-speaker-circle {
    width: 160px;
    height: 160px;
  }

  .media-speaker-quote {
    font-size: 15px;
    padding-top: 15px;
  }
}

/* Телефон (480px) */
@media (max-width: 480px) {
  .media-section {
    padding: 30px 15px;
  }

  .media-title {
    font-size: 24px;
  }

  .media-subtitle {
    font-size: 14px;
  }

  .media-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }

  .media-card {
    padding: 16px;
  }

  .media-card-title {
    font-size: 16px;
  }

  .media-card-btn {
    font-size: 11px;
    padding: 8px 16px;
  }

  .media-speaker {
    padding: 20px 15px;
    gap: 20px;
  }

  .media-speaker-title {
    font-size: 20px;
  }

  .media-speaker-desc {
    font-size: 13px;
  }

  .media-speaker-input {
    font-size: 14px;
    padding: 10px 14px;
  }

  .media-speaker-btn {
    font-size: 12px;
    padding: 10px 16px;
  }

  .media-speaker-circle {
    width: 120px;
    height: 120px;
  }

  .media-speaker-quote {
    font-size: 13px;
    padding-top: 12px;
  }

  .media-speaker-checkbox span {
    font-size: 12px;
  }
}

/* ========== EXPERT SECTION ========== */
.expert-section {
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 40px 40px;
  background: linear-gradient(97deg, #00D7D0 0%, #0A5B94 55%, #043271 100%);
}

.expert-container {
  width: 100%;
}

/* Заголовок */
.expert-header {
  margin-bottom: 50px;
}

.expert-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: left;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.expert-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: left;
  max-width: 800px;
  margin: 0;
}

/* Слайдер контейнер */
.expert-slider-container {
  position: relative;
  width: 100%;
}

/* Скроллбар - единый блок без дубликатов */
.expert-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #00D7D0 rgba(255, 255, 255, 0.2);
  overflow-y: hidden;
}

/* WebKit (Chrome, Safari, Edge) */
.expert-slider::-webkit-scrollbar {
  -webkit-appearance: none;
  height: 6px;
  display: block !important;
}

.expert-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.expert-slider::-webkit-scrollbar-thumb {
  background: #00D7D0;
  border-radius: 10px;
}

.expert-slider::-webkit-scrollbar-thumb:hover {
  background: #00D7D0;
}

.expert-track {
  display: flex;
  gap: 24px;
  padding-bottom: 20px;
}

/* Карточка */
.expert-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  scroll-snap-align: start;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.expert-card-content {
  flex: 1;
}

.expert-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #051A2D;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.expert-position {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #051A2D;
  margin: 0 0 4px 0;
}

.expert-company {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1F50FE;
  margin: 0 0 16px 0;
}

.expert-quote-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #051A2D;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.expert-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #051A2D;
  margin: 0 0 20px 0;
}

/* Футер карточки */
.expert-card-footer {
  border-top: 1px solid #E5E5E5;
  padding-top: 16px;
}

.expert-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.expert-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #051A2D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.expert-link:hover {
  color: #003BFF;
}

.expert-social {
  display: flex;
  gap: 12px;
}

.expert-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.expert-social a:hover {
  transform: translateY(-5px);
}

.expert-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.expert-detail-btn {
  background-color: #003BFF;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.expert-detail-btn:hover {
  background-color: #00D7D0;
  color: #0B204F;
  transform: translateY(-2px);
}

/* Скрываем старые кнопки и точки */
.expert-prev,
.expert-next,
.expert-dots {
  display: none;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1024px) {
  .expert-section {
    padding: 50px 30px;
  }

  .expert-title {
    font-size: 36px;
  }

  .expert-subtitle {
    font-size: 18px;
  }

  .expert-card {
    flex: 0 0 calc(50% - 12px);
  }

  .expert-name {
    font-size: 28px;
  }

  .expert-social a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .expert-section {
    padding: 40px 20px;
  }

  .expert-title {
    font-size: 28px;
  }

  .expert-subtitle {
    font-size: 16px;
  }

  .expert-card {
    flex: 0 0 85%;
    min-width: 260px;
  }

  .expert-name {
    font-size: 24px;
  }

  .expert-company {
    font-size: 18px;
  }

  .expert-text {
    font-size: 14px;
  }

  .expert-slider::-webkit-scrollbar {
    height: 4px;
  }

  .expert-social a {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .expert-section {
    padding: 30px 15px;
  }

  .expert-title {
    font-size: 22px;
  }

  .expert-card {
    flex: 0 0 90%;
    min-width: 240px;
  }

  .expert-name {
    font-size: 20px;
  }

  .expert-position {
    font-size: 14px;
  }

  .expert-company {
    font-size: 16px;
  }

  .expert-quote-title {
    font-size: 14px;
  }

  .expert-text {
    font-size: 13px;
  }

  .expert-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .expert-detail-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  .expert-social a {
    width: 30px;
    height: 30px;
  }
}

/* ========== ROAD SECTION ========== */
.road-section {
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 40px 40px;
  background-color: #095172;
}

.road-container {
  width: 100%;
}

/* Заголовок */
.road-header {
  margin-bottom: 40px;
}

.road-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: left;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.road-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: left;
  margin: 0;
}

.road-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 36px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: left;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

/* Контент */
.road-content {
  position: relative;
}

/* Контейнер для широкого изображения со скроллом */
.road-image {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #00D7D0 rgba(255, 255, 255, 0.2);
}

/* Кастомизация скроллбара */
.road-image::-webkit-scrollbar {
    height: 6px;
}

.road-image::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.road-image::-webkit-scrollbar-thumb {
    background: #00D7D0;
    border-radius: 10px;
}

.road-image img {
    width: auto;
    height: auto;
    max-width: none;
    min-width: 100%;
    display: block;
}

/* На планшете и мобилке скролл активен */
@media (max-width: 1024px) {
    .road-image {
        overflow-x: auto;
    }
    
    .road-image img {
        min-width: 1200px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .road-image::-webkit-scrollbar {
        height: 4px;
    }
    
    .road-image img {
        min-width: 1000px;
    }
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1024px) {
  .road-section {
    padding: 50px 30px;
  }

  .road-title {
    font-size: 36px;
  }

  .road-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .road-section {
    padding: 40px 20px;
  }

  .road-title {
    font-size: 28px;
  }

  .road-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .road-section {
    padding: 30px 15px;
  }

  .road-title {
    font-size: 22px;
  }

  .road-subtitle {
    font-size: 14px;
  }
}
/* ========== INFO SECTION ========== */
.info-section {
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 40px 40px;
    background-color: #003BFF;
    position: relative;
    overflow: hidden;
}

.info-container {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Заголовок */
.info-header {
    margin-bottom: 30px;
}

.info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 75px 0;
    line-height: 1.2;
}

/* Кнопки под заголовком */
.info-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.info-btn {
    padding: 12px 28px;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.info-btn-news {
    background-color: #00D7D0;
    color: #0B204F;
}

.info-btn-news:hover {
    background-color: #FFFFFF;
    transform: translateY(-2px);
}

.info-btn-speaker {
    background-color: #0B204F;
    color: #ffffff;
}

.info-btn-speaker:hover {
    background-color: #FFFFFF;
    color: #0B204F;
    transform: translateY(-2px);
}

/* Текст снизу */
.info-text-wrapper {
    margin-top: 70px;
    text-align: center;
}

.info-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
}

/* Робот - декоративный элемент */
.info-robot {
    position: absolute;
    bottom: 70px;
    right: 40px;
    z-index: 10;
    pointer-events: none;
}

.info-robot img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1024px) {
    .info-section {
        padding: 50px 30px;
    }
    
    .info-title {
        font-size: 30px;
        margin-bottom: 50px;
    }
    
    .info-text {
        font-size: 24px;
    }
    
    .info-robot img {
        width: 150px;
        height: 150px;
    }
    
    .info-robot {
        bottom: 50px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 40px 20px;
    }
    
    .info-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .info-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .info-btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .info-text-wrapper {
        margin-top: 40px;
    }
    
    .info-text {
        font-size: 18px;
        text-align: center;
        padding: 0 10px;
    }
    
    /* Робот выше текста - меняем позицию */
    .info-robot {
        position: relative;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px;
        bottom: auto;
        right: auto;
    }
    
    .info-robot img {
        width: 150px;
        height: 150px;
        opacity: 1;
    }
    
    /* Меняем порядок на мобилке */
    .info-container {
        display: flex;
        flex-direction: column;
    }
    
    .info-robot {
        order: 2;
    }
    
    .info-text-wrapper {
        order: 3;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 30px 15px;
    }
    
    .info-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .info-text {
        font-size: 14px;
        padding: 0 5px;
    }
    
    .info-text-wrapper {
        margin-top: 20px;
    }
    
    .info-robot {
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .info-robot img {
        width: 150px;
        height: 150px;
    }
    
    .info-btn {
        font-size: 11px;
        padding: 8px 16px;
    }
}