/* Disease page video section styles */

/* Media section */
.section-media {
  background: #F7FBFD;
  padding: 100px 0 115px;
  z-index: 5;
  margin-bottom: 100px;
}

.section-media .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.section-media__inner {
  flex: 1;
  max-width: 35%;
}

.section-media__inner h3 {
  font-family: var(--bold-font), sans-serif;
  font-size: 2.2em;
  line-height: 1.1em;
  margin-bottom: .6em;
}

.section-media__inner p {
  font-family: var(--regular-font), sans-serif;
  font-size: 1.1em;
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

.section-media__inner i {
  vertical-align: middle;
  margin-right: 10px;
  color: #95A6B3;
}

.section-media__inner a {
  font-family: var(--regular-font), sans-serif;
  font-size: 22px;
  line-height: 40px;
  color: var(--main-color);
}

.section-media__video {
  flex: 1;
  max-width: 65%;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1199px) {
  .section-media .container {
    flex-direction: column;
    gap: 40px;
  }

  .section-media__inner {
    max-width: 100%;
    text-align: center;
  }

  .section-media__video {
    max-width: 100%;
    width: 100%;
  }

  .video-container {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section-media {
    padding: 60px 0 80px;
  }

  .section-media__inner h3 {
    font-size: 1.8em;
  }

  .section-media__inner p {
    font-size: 1em;
  }

  .video-container {
    max-width: 100%;
  }
}
