/**
 * Hero styles.
 *
 * Edit via Cahillbrand → Stylesheets or Appearance → Theme File Editor.
 */

.hero-image {
	aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--cb-lavender-soft), rgba(255, 206, 165, 0.18));
    border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cb-grey);
    font-size: 0.85rem;
    text-align: center;
    padding: 20px;
}

.hero-image::before,
.hero-image::after {
	content: "";
	position: absolute;
    width: 70px;
    height: 70px;
    background: var(--cb-peach);
    border-radius: 50%;
    opacity: 0.5;
}

.hero-image::before {
	top: -10px;
    right: 10%;
}

.hero-image::after {
	bottom: 5%;
    left: -20px;
    width: 40px;
    height: 40px;
    background: var(--cb-lavender);
    opacity: 0.4;
}