.merak-youtube-section {
  padding: 2rem 0;
}
.merak-youtube-section .youtube-video-content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.merak-youtube-section .youtube-video-content-container .youtube-video-title {
  margin-bottom: 1rem;
}
.merak-youtube-section .youtube-video-content-container .youtube-video-description {
  margin-bottom: 1rem;
}
.merak-youtube-section .youtube-video-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.merak-youtube-section .youtube-video-container .responsive-iframe-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.merak-youtube-section .youtube-video-container .responsive-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@supports not (aspect-ratio: 16/9) {
  .merak-youtube-section .youtube-video-container .responsive-iframe-container {
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  }
}
.merak-youtube-section .youtube-video-container .youtube-video-button {
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  text-align: center;
  margin-top: 2rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s ease;
}
.merak-youtube-section .youtube-video-container .youtube-video-button:hover {
  opacity: 0.9;
}
.merak-youtube-section .youtube-video-container .youtube-placeholder {
  width: 50%;
  padding: 3rem;
  background-color: #f5f5f5;
  border: 2px dashed #ccc;
  border-radius: 0;
  text-align: center;
}
.merak-youtube-section .youtube-video-container .youtube-placeholder p {
  margin: 0;
  color: #666;
}
@media screen and (max-width: 1024px) {
  .merak-youtube-section .youtube-video-container .youtube-placeholder {
    width: 100%;
  }
}
