.cutout-buttons__headlines {
    margin-bottom: 24px;
}

.cutout-buttons__headlines :last-child {
    margin-bottom: 0;
}

.cutout-button-flex {
    row-gap: 16px;
    justify-content: center;
    padding: 0 8px;
}

.cutout-button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #ECECEC;
    border-radius: 8px;
    padding: 17px 15px;
    text-decoration: none;
    position: relative;
}

.cutout-button__image {
    width: 85px;
}

.cutout-button__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.compare-table .cutout-button__image img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 768px) {
    .compare-table .cutout-button__details {
        text-align: center;
        gap: 10px;
    }
}

.compare-table .cutout-buttons {
    width: 100%;
}

.cutout-button__details {
    width: calc(100% - 85px);
    padding-left: 16px;
}

.cutout-button__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #19262C;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .cutout-buttons__headlines {
        margin-bottom: 40px;
    }

    .cutout-button-flex {
        row-gap: 64px;
        padding: 0;
    }

    .cutout-button {
        padding: 90px 16px 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-decoration: none;
        height: calc(100% - 98px);
        margin-top: 98px;
    }

    .cutout-button__image {
        width: 258px;
        height: 172px;
        position: absolute;
        top: -98px;
        left: 15px;
    }

    .cutout-button__details {
        width: 100%;
        padding-left: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: initial;
    }

    .cutout-button__title,
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        margin-bottom: 0;
    }

    .cutout-button__description {
        color: #414042;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.75em
    }

    .cutout-button__cta {
        margin-top: auto;
    }
}


@media (min-width: 1200px) {
    .cutout-buttons__headlines {
        margin: 0 auto 50px;
    }
	
	.cutout-buttons__headlines .sub-heading {
        justify-content: center;
    }

    .cutout-button {
        padding: 90px 16px 22px;
    }

    .cutout-button__image {
        height: 172px;
        position: absolute;
        top: -98px;
        transform: translateY(0);
        transition: transform 0.35s ease-in-out;
        /* width: 258px;
        left: 15px; */
        width: calc(100% - 40px);
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .cutout-button__details {
        justify-content: initial;
        position: relative;
        z-index: 2;
    }

    .cutout-button__description {
        margin-bottom: 10px;
    }

    .cutout-button:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(90% 35.18% at 50% 0%, #1D6889 29.57%, #1D536C 37.86%, #1B3F51 52.14%, #162B37 71.43%, #10191E 85.71%);
        transform: scale(0);
        opacity: 0;
        transition: transform 0.35s ease-in-out, opacity 0.25s ease-in-out, border-radius 0.45s ease-in-out;
        border-radius: 8px;
        border-radius: 50%;
    }

    .cutout-button__title {
        margin-bottom: 10px;
    }

    .cutout-button__title,
    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .cutout-button__description {
        transition: color 0.35s ease-in-out;
    }

    .cutout-button:hover {
        border-color: transparent;

        &:before {
            transform: scale(1);
            opacity: 1;
            border-radius: 8px;
        }

        .cutout-button__image {
            transform: translateY(-10px);
            transition: transform 0.35s ease-in-out 0.15s;
        }
    }

    .cutout-button:hover .cutout-button__title,
    .woocommerce ul.products li.product a.cutout-button:hover .woocommerce-loop-product__title,
    .cutout-button:hover .cutout-button__description {
        color: #fff;
    }
}

.cutout-button__cta .btn {
    margin-bottom: 0;
}