.ck-hero {
  background-color: #efefef;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-inline: -1rem;
      box-shadow: 32px -18px 63px #e6e1e1;
}

.ck-hero h1 {
    margin-block: 1rem;
}
.ck-hero img,
.ck-hero video {
    border-radius: unset;
    object-fit: cover;
    inline-size: 100%;
    block-size: 100%;
}
.ck-hero .text {
    display: flex;
}
.ck-hero .text-inner {
    display: flex;
    flex-direction: column;
    min-block-size: 50%;
    padding-block: 1.65rem;
    padding-inline: 1.65rem;
}
.ck-hero.swap-order .media {
    grid-column: 1/2;
    grid-row: 1/3;
}
.ck-hero.swap-order .text {
    grid-column: 2/3;
}
@media(min-width: 48em) {
    .ck-hero {
        border-radius: 0.25em;
        margin-inline: 0;
    }
}
.ck-hero-has-bg {
    grid-template-columns: 1fr;
}
.ck-hero-has-bg .media,
.ck-hero-has-bg .text {
    grid-column: 1/2;
    grid-row: 1/3;
}
.ck-hero-has-bg .text {
    background: rgb(0 0 0/var(--alpha, 0.2));
    z-index: 1;
}
.ck-hero-has-bg .text h1,
.ck-hero-has-bg .text p {
    color: #fff;
}
.ck-hero-has-bg .dark-text h1,
.ck-hero-has-bg .dark-text p {
    color: #000;
}
.ck-hero-has-bg .text-inner {
    max-inline-size: 60ch;
}
.ck-hero-has-bg .inline-start {
    margin-inline: 0;
}
.ck-hero-has-bg .inline-center {
    margin-inline: auto;
}
.ck-hero-has-bg .inline-end {
    margin-inline: auto 0;
}
.ck-hero-has-bg .block-start {
    align-self: flex-start;
}
.ck-hero-has-bg .block-center {
    align-self: center;
}
.ck-hero-has-bg .block-end {
    align-self: flex-end;
}
