.opinions__title {
    margin: 0 auto;
    font-family: var(--font-regular);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--secondary-40);
}

.opinions__title + .reveal {
    max-width: 520px;
    margin: 16px auto 0;
    color: var(--primary);
    font-size: 1rem;
    line-height: 1.7;
}

section:has(.opinions__title) .regular_grid {
    position: relative;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 30px;
}

section:has(.opinions__title) .regular_grid__item {
    position: relative;
    z-index: 1;
    width: 450px;
}

section:has(.opinions__title) .regular_grid__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    padding: 28px 26px;
    border-radius: 28px;
    background: var(--white);
    text-align: left;
}

section:has(.opinions__title) .regular_grid__title {
    color: var(--secondary-40);
    font-family: var(--font-regular);
    font-size: 20px;
    line-height: 1.12;
    font-weight: 400;
}

section:has(.opinions__title) .regular_grid__text {
    color: var(--primary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.challenge {
    background: var(--primary-05);
    border-radius: 34px;
    padding: var(--space-2);
    overflow: hidden;
}

.challenge .wave path {
    fill:none;
    stroke-width:20;
    stroke-miterlimit:10;
    transition: stroke-dashoffset 1.4s ease-out;
}

.challenge .wave {
    position: absolute;
    left: 0;
    bottom: 20%;
    width: 100%;
    transform: scale(3);
    z-index: -1;
}

.regular_grid-dots {
    position: relative;
}
.regular_grid-dots canvas {
    display:block;
    width: 100%;
    height: 100%;
    padding: 0px;
    position: absolute;
    top: 0;
    left: 0;
}


/* Tablets */
@media (min-width: 820px) {
    .challenge .wave {
        bottom: 10%;
        transform: scale(2);
    }
}

/* Desktop */
@media (min-width: 993px) {
    .challenge .wave {
        bottom: 0;
        width: 80%;
        transform: scale(1);
    }
}

@media (min-width: 992px) {
    section:has(.opinions__title) .regular_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 50px 250px;
        padding: 46px 0;
    }
    section:has(.opinions__title) .regular_grid__title {
        font-size: 34px;
    }
}
