/* .layer--home-hero */

.layer--home-hero {
    position: relative;
    overflow: hidden;
}
.layer--home-hero .content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: end;
}
.layer--home-hero h1 {
    width: 940px;
    max-width: 100%;
}
.layer--home-hero em {
    position: relative;
}
.layer--home-hero em:after {
display: block;
  content: '';
  position: absolute;
  bottom: 0.15em;
  height: 0.45em;
  background: var(--yellow);
  z-index: -1;
  width: calc(100% + 0.2em);
  left: 50%;
  transform: skew(-25deg) translate(-50%);
}
.layer--home-hero p {
    width: 580px;
    margin-bottom: 0;
}
.layer--home-hero em abbr {
    text-decoration: none;
}

.layer--home-hero .shine1 {
    content: '';
    display: block;
    width: 350px;
    height: 800px;
    top: 0;
    left: 50%;
    background: var(--blue-ice);
    z-index: -1;
    transform: skew(-25deg);
    position: absolute;
}
.layer--home-hero .shine2 {
    content: '';
    display: block;
    width: 1000px;
    height: 800px;
    top: 0;
    left: calc(50% + 400px);
    background: var(--blue-ice);
    z-index: -2;
    transform: skew(-25deg);
    position: absolute;
}
@media screen and (max-width: 1024px ) {
    .layer--home-hero .content {
        flex-direction: column;
        gap: 0;
        align-items: start;
    }
    .layer--home-hero p {
        width: auto;
        margin-bottom: 0;
    }
}