.studio-section {
  padding: 2rem max(10%, calc((100vw - 1440px) / 2));
  background-image: url(./assets/icons/background_pattern.svg);
}

.studio-section .studio-items {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: "InterBold";
}

.studio-section .studio-items .upper-text {
  font-size: 5.625rem;
  margin: 2rem 0;
  line-height: 0.9;
}

.studio-section .studio-items .sub-text {
  font-family: monospace;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.studio-section .studio-items .studio-videos {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.studio-videos .video-one,
.video-two {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  aspect-ratio: 16 / 9;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.studio-videos .video-one {
  background-image: url(./studio_images/aecom.png);
}
.studio-videos .video-two {
  background-image: url(./studio_images/undpmalawi.png);
  background-color: #191919;
}

.studio-divider {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--text-white);
  margin: 2rem 0;
}

/* HOW CONTENT  */

.how-content .how-content-header {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.how-content .how-content-sub-header {
  font-family: monospace;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.how-content .how-content-steps {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.how-content .how-content-steps .step-number {
  margin-bottom: 0.5rem;
}

.how-content .how-content-steps .step-header {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.how-content .how-content-steps .step-description {
  font-family: "InterRegular";
  font-size: 0.8rem;
  line-height: 1.5;
}

.how-content .how-content-steps .step-divider {
  width: 0.1rem;
  height: 4rem;
  background-color: #9df046;
}

.how-content .how-content-summary {
  display: flex;
  align-items: stretch;
  align-items: center;
}

.how-content .how-content-summary .summary-divider {
  width: 0.1rem;
  height: 4rem;
  background-color: #9df046;
  margin-right: 1rem;
}

.how-content .how-content-summary .summary-sub-header {
  font-family: "InterRegular";
  line-height: 1.5;
}

/* TEAM MEMBERS */

.studio-team .team-header {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.studio-team .members-top,
.members-bottom {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  line-height: 1.3;
}

.studio-team .team-member {
  display: flex;
  flex-direction: column;
}

.studio-team .team-member img {
  width: 100%;
  height: auto;
  display: block;
}

.studio-team .member-details {
  width: 100%;
  display: flex;
  gap: 1rem;
}

.studio-team .member-details .member-square{
  background-color: #88C541;
  height: 2rem;
  width: 2rem;
}

.studio-team .member-details .member-more {
  padding-top: 1rem;
  font-family: "InterRegular";
}

.studio-team .member-details .member-more .member-name {
  font-family: "Inter";
}

.studio-team .member-details .member-more .member-role {
  span{
    color:#D9E367;
  }
}

/* CREATIVE PARTNERS */

.creative-partners .partners-items{
  padding-top: 1rem;
  width: 100%;
  display: flex;
  gap: 1rem;
}

.creative-partners .partners-items .partners-list{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.creative-partners .partners-items .partner-role{
  font-family: "InterRegular";
}

/* STUDIO BUTTOM */

.studio-bottom{
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 2rem;
  align-items: center;
}

.studio-bottom .studio-bottom-text .text-big{
  font-size: 5.625rem;
  margin: 3rem 0;
  margin-bottom: 1rem;
  line-height: 0.9;
}

.studio-bottom .studio-bottom-text .text-small{
  color: #D9E367;
  font-family: monospace;
}


/* MOBILE VIEW */


@media (max-width: 768px) {

  br{
    display: none;
  }
  .studio-section {
    padding: 1rem;
  }

  .studio-section .studio-items .upper-text {
    font-size: 2.5rem;
    margin: 2rem 0;
  }

  .studio-section .studio-items .sub-text {
    font-size: 1.125rem;
  }

  .studio-section .studio-items .studio-videos {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
 .studio-section .studio-items .studio-videos img {
    width: 100%;
  height: auto;
  display: block;
  }
  
  .studio-videos .video-one,
.video-two {
  padding: 1rem;
}

  .how-content .how-content-header {
    font-size: 2rem;
  }

  .how-content .how-content-sub-header {
    font-size: 1.125rem;
  }

  .how-content .how-content-steps {
    grid-template-columns: 1fr;
    padding: 1rem 0;
    gap: 1.5rem;
  }

  .how-content .how-content-steps .step-divider {
    display: none;
  }

  .how-content .how-content-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .how-content .how-content-summary .summary-divider {
    width: 4rem;
    height: 0.1rem;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .studio-team .members-top,
  .members-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .studio-bottom {
    grid-template-columns: 1fr;
  }

  .studio-bottom .studio-bottom-text .text-big {
    font-size: 2.5rem;
    margin: 2rem 0;
  }
}
