.mcode {
  margin-block: clamp(1.875rem, 1.4316rem + 1.6694vw, 2.5rem);
  padding-block: clamp(3.125rem, -0.2083rem + 6.9444vw, 5rem);
  padding-inline: 20px;
}
@media screen and (width < 48rem) {
  .mcode > * {
    grid-column: full-width !important;
  }
}
.mcode--header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (width >= 48rem) {
  .mcode--header {
    flex-direction: row;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.mcode--title {
  flex: 1;
  line-height: 1;
  margin: 0 !important;
}
.mcode--info {
  margin-bottom: 0 !important;
}
@media screen and (width >= 48rem) {
  .mcode--info {
    text-align: right;
  }
}
.mcode--body {
  max-width: 700px;
  margin-inline: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (width >= 48rem) {
  .mcode--body {
    padding: 30px;
  }
}
