.entry-content {
    container: entry-content / inline-size;
}

.is-layout-flex.keypoints {
    container: keypoints / inline-size;
    display: flex;
    flex-wrap: wrap;
    /*grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));*/
    justify-content: center;

    /*@container (calc(230px * 4 + 60px) < width < calc(230px * 6 + 100px) {*/
    /*    .keypoint:last-child:nth-child(odd) {*/
    /*        grid-column: 2 / span 2;*/
    /*    }*/
    /*}*/
    /**/
    /*@container (calc(230px * 6 + 100px) < width < calc(230px * 8 + 140px)) {*/
    /*    .keypoint:nth-child(3n + 4):last-child {*/
    /*        grid-column: 3 / 5;*/
    /*    }*/
    /**/
    /*    &:has(:nth-child(3n + 5):last-child) > :nth-last-child(2) {*/
    /*        grid-column: 2 / 4;*/
    /*    }*/
    /*}*/
    /**/
    /*@container (calc(230px * 8 + 140px) < width < calc(230px * 10 + 180px)) {*/
    /*    .keypoint:nth-child(4n + 5):last-child {*/
    /*        grid-column: 4 / 6;*/
    /*    }*/
    /**/
    /*    &:has(:nth-child(4n + 6):last-child) > :nth-last-child(2) {*/
    /*        grid-column: 3 / 5;*/
    /*    }*/
    /**/
    /*    &:has(:nth-child(4n + 7):last-child) > :nth-last-child(3) {*/
    /*        grid-column: 2 / 4;*/
    /*    }*/
    /*}*/

    & + * {
        margin-top: 80px;
    }
}

@media screen and (max-width: 1279px) {
    .is-layout-flex.keypoints {
        gap: 40px;
    }
}

@media screen and (min-width: 1280px) {
    .is-layout-flex.keypoints {
        justify-content: space-between;
    }
}

.keypoint {
    display: flex;
    gap: 15px;
    align-items: center;
    min-width: fit-content;
    font-weight: 600;
    line-height: 1.26;

    p {
        margin: 0;
    }

    strong {
        white-space: nowrap;
        color: var(--wp--preset--color--accent-2);
    }
}

@media screen and (min-width: 769px) {
    .keypoint:nth-child(1) { transition-delay: 100ms }
    .keypoint:nth-child(2) { transition-delay: 200ms }
    .keypoint:nth-child(3) { transition-delay: 300ms }
    .keypoint:nth-child(4) { transition-delay: 400ms }
    .keypoint:nth-child(5) { transition-delay: 500ms }
}

@container keypoints (max-width: 600px) {
    .keypoint {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }
}
