/* Explain: Layout styling for hero section and other page elements. */
.hero-band {
    position: relative;
    overflow: hidden;
}

.hero-band::before {
    position: absolute;
    top: -7rem;
    inset-inline-end: -8rem;
    width: 24rem;
    height: 24rem;
    content: '';
    border-radius: 999px;
    background: rgba(2, 132, 199, 0.18);
}

.hero-band::after {
    position: absolute;
    bottom: -10rem;
    inset-inline-start: -8rem;
    width: 22rem;
    height: 22rem;
    content: '';
    border-radius: 999px;
    background: rgba(27, 42, 74, 0.06);
}

.hero-band > div {
    position: relative;
    z-index: 1;
}
