
.studio-layout {
  display: flex;
  margin-top: 2em;
  height: calc(100vh - 2em);
  overflow: hidden;
}

.studio-left {
  width: 33%;
  height: 100%;
  overflow-y: auto;
  padding: 2em 2em 2em 1em;
  box-sizing: border-box;
}

.studio-right {
  width: 50%;
  height: 100%;
  overflow-y: auto;
  padding: 2em 1em 5em 2em;
  box-sizing: border-box;
  margin-left: auto;
}


.pictures-container {
  margin-bottom: 1.5em;
}

.studio-left .pictures-container .slick-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.studio-text {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}

.studio-text p {
  margin-bottom: 1em;
}

.studio-actions {
  display: flex;
  gap: 0.75em;
  flex-wrap: wrap;
}

.studio-btn {
  display: inline-block;
  padding: 0.5em 1em;
  border: 1px solid black;
  border-radius: 40px;
  font-size: 1.4em;
  text-decoration: none;
  color: black;
}

.studio-btn:hover {
  background: black;
  color: white;
}

/* ---- Right: articles feed ---- */

.studio-right h2 {
  width: 100%;
  font-size: 1.4em;
  border-bottom: 1px solid black;
  margin-bottom: 1em;
}

.studio-right h2 span {
  float: right;
}

.studio-right section {
  margin-bottom: 3em;
}

.studio-right p {
  margin-bottom: 1em;
}

.pictures {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 1em;
}

.iframe-container {
  padding: 56.25% 0 0 0;
  position: relative;
  margin-top: 1em;
}

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

.video-news {
  margin-bottom: 2em;
}

footer{
  margin-top: 0;
}

/* ---- Mobile: stack vertically ---- */

@media only screen and (max-width: 800px) {
  .studio-layout {
    flex-direction: column;
    height: auto;
    overflow: visible;
    margin-top: 0;
  }

  .studio-left {
    width: 100%;
    height: auto;
    overflow: visible;
    padding: 5em 1em 2em 1em;
  }

  .studio-right {
    width: 100%;
    height: auto;
    overflow: visible;
    padding: 0 1em 25vh 1em;
  }
}
