.overview {
  background-color: var(--mid);
  width: 60vw;
  height: 27vw;
  border-radius: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5vw;
  margin-bottom: 2.5vw;
}

.overview-main {
  width: 48vw;
  height: 27vw;
  margin: 0px;
  padding: 0px;
  float: left;
  border-radius: 40px;
  object-fit: contain;
  background: #000;
}

.overview-details {
  height: 100%;
  width: 12vw;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  font-weight: 600;
  font-size: 1.4em;
}

.overview-details b {
  font-weight: 900;
}

.overview-details b:not(:first-of-type) {
  margin-top: 10px;
}

.overview-details span {
  text-align: left;
}

.grow {
  flex-grow: 1;
}

.overview-details a {
  width: 100%;
  height: 1.8em;
  line-height: 1.8em;
  margin-top: 15px;
  border-radius: 20px;
  font-weight: 900;
  text-decoration: none;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--txt1);
  background-color: var(--bg1);
  outline-offset: 5px;
  transition: background 0.1s linear, color 0.1s linear, outline 0.1s linear;
}

.overview-details a:hover {
  outline: 5px #33A88C solid;
  outline-offset: 5px;
  background: var(--bg2);
  color: var(--txt2);
}

.text {
  width: 60vw;
  max-width: 800px;
  min-height: calc(100% - 30vw);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 1.5em;
  text-transform: none;
  font-weight: 600;
}

.text a {
  color: #337EA8;
}

.text a:hover {
  color: #33A88C;
}

.text h3 {
  font-size: 3em;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0px;
}

.text h4 {
  font-size: 2em;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0px;
}

.media {
  width: 60vw;
  height: auto;
  margin-top: 1vw;
  margin-bottom: 1vw;
  margin-left: calc((min(60vw, 800px) - 60vw) / 2);
  border-radius: 40px;
  overflow: hidden;
}