/* Brand DNA — center mascot video */
.codform-brand-mascot {
  position: relative;
  display: block;
  margin-inline: auto;
  width: min(100%, 360px);
  overflow: hidden;
  border-radius: 24px;
  background: #fbfbfb;
  box-shadow: 0 16px 40px rgba(29, 29, 31, 0.1);
}

.codform-brand-mascot::before {
  content: "";
  display: block;
  padding-top: 100%;
}

@media (min-width: 810px) {
  .codform-brand-mascot {
    width: min(100%, 400px);
  }
}

@media (min-width: 1200px) {
  .codform-brand-mascot {
    width: min(100%, 420px);
  }
}

.codform-brand-mascot__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.codform-brand-mascot--static {
  pointer-events: none;
}
