.texter-cornering {
    font-weight: 700;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.2;
    text-transform: uppercase;
}

.bg-soft-yellow {
    background-color: #fffcf6;
}

.banner-max-60 {
    max-width: 60%;
}

.banner-max-65 {
    max-width: 65%;
}

.padding-right-10 {
    padding-right: 10px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}


.border-radius-bottom-right-40 {
    border-radius: 0 0 40px 0;
}

.corner-shape {
    --corner: 30px;
    --pad-x: 20px;
    --pad-b: 14px;
    --shape: url(../images/shape.svg);
    --bg: #fff;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}


.cornerize {
    position: relative;
}

.cornerize.corner-top-outside::before {
    content: "";
    position: absolute;
    width: var(--corner);
    height: var(--corner);
    background: center / cover no-repeat var(--shape);
    transform: rotate(180deg);
    top: 0;
    right: -30px;
}

.cornerize.corner-bottom-outside::after {
    content: "";
    position: absolute;
    width: var(--corner);
    height: var(--corner);
    background: center / cover no-repeat var(--shape);
    transform: rotate(180deg);
    left: 0;
    bottom: -30px;
}


.wrapper-yellow {
    background-color: #fffcf6;
    padding: 0 20px 20px 0;
    display: block;
    float: left;
    position: relative;
}