/* Homepage StudioT feature */
.grid-45 {
  grid-template-areas: none;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  column-gap: clamp(40px, 6vw, 80px);
  padding-block: 64px;
}

.grid-45 > .div-block-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.grid-45 > .div-block-8 > .button {
  margin-right: 0;
  margin-left: 0;
}

.studiot-home-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.studiot-home-orbit {
  position: absolute;
  z-index: -1;
  display: block;
  border-radius: 999px;
  pointer-events: none;
}

.studiot-home-orbit-orange {
  top: 2%;
  right: -3%;
  width: 250px;
  height: 250px;
  border: 30px solid #f7b91f;
  opacity: .9;
}

.studiot-home-orbit-blue {
  bottom: 5%;
  left: 0;
  width: 150px;
  height: 150px;
  border: 22px solid #0c93b5;
  opacity: .18;
}

.studiot-home-dashboard-card {
  width: min(100%, 470px);
  padding: 13px;
  background: #fff;
  border: 1px solid #d8e0e8;
  border-radius: 24px;
  box-shadow: 0 28px 55px #34405424;
  transform: rotate(1.5deg);
}

.studiot-home-dashboard {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.studiot-home-logo-card {
  position: absolute;
  bottom: 0;
  left: -2%;
  width: min(76%, 330px);
  padding: 28px 25px 22px;
  text-align: center;
  background:
    linear-gradient(#ffffffed, #ffffffed) padding-box,
    linear-gradient(135deg, #f19f33, #0c93b5) border-box;
  border: 2px solid transparent;
  border-radius: 22px;
  box-shadow: 0 18px 38px #3440542b;
  transform: rotate(-2deg);
}

.studiot-home-logo {
  display: block;
  width: min(100%, 378px);
  height: auto;
  margin-inline: auto;
}

.studiot-home-logo-card p {
  margin: 14px 0 0;
  color: #344054;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

@media screen and (max-width: 991px) {
  .grid-45 {
    grid-template-columns: 1fr;
    row-gap: 36px;
    padding-block: 52px;
  }

  .studiot-home-visual {
    width: min(100%, 620px);
    min-height: 440px;
    margin-inline: auto;
  }

  .studiot-home-logo-card {
    left: 5%;
  }
}

@media screen and (max-width: 479px) {
  .grid-45 {
    padding-block: 40px;
  }

  .studiot-home-visual {
    min-height: 340px;
  }

  .studiot-home-logo-card {
    bottom: 0;
    left: 50%;
    width: 82%;
    padding: 22px 20px 18px;
    border-radius: 20px;
    transform: translateX(-50%) rotate(-2deg);
  }

  .studiot-home-logo-card p {
    margin-top: 10px;
    font-size: 12px;
  }

  .studiot-home-orbit-orange {
    width: 180px;
    height: 180px;
    border-width: 22px;
  }

  .studiot-home-orbit-blue {
    width: 110px;
    height: 110px;
    border-width: 16px;
  }

  .studiot-home-dashboard-card {
    padding: 9px;
    border-radius: 18px;
  }

  .studiot-home-dashboard {
    border-radius: 11px;
  }
}
