html :where(.wp-block) {
    max-width: 100%;
}

.case-h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    color: var(--color-primary);

    margin: 0;

    @media (max-width: 992px) {
        font-size: 24px;
        line-height: 34px;
    }
}

.regular-h2 {
    font-weight: 500;
    font-size: 54px;
    line-height: 60px;
    text-transform: uppercase;
    color: var(--color-dark);

    margin: 0;

    @media (max-width: 992px) {
        font-size: 44px;
        line-height: 52px;
    }
}

.overflow-hidden {
    overflow: hidden;
}

.section-rounded {
    padding-block: 10px;
    position: relative;
}

.loading {
    opacity: .5;
    pointer-events: none;
}

.posted-on {
    color: var(--color-dark);
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    opacity: .8;
}

.category-list {
    display: flex;
    gap: 18px;

    list-style-position: inside;
    color: var(--color-primary);
    margin: 0;
    padding: 0;
}

.category-list__item {
    &::marker {
        color: var(--color-text-light);
        opacity: .8;
    }
}

.section-rounded--rounded-top {
    padding-bottom: 50px;

    &:before {
        content: '';
        position: absolute;
        top: -40px;
        height: 40px;
        width: 100%;
        border-radius: 40px 40px 0 0;
        background-color: inherit;

        @media (max-width: 992px) {
            top: -38px;
            border-radius: 20px 20px 0 0;
        }
    }
}

.section-rounded--rounded-bottom {
    padding-top: 50px;

    &:after {
        content: '';
        position: absolute;
        bottom: -40px;
        height: 40px;
        width: 100%;
        border-radius: 0 0 40px 40px;
        background-color: inherit;

        @media (max-width: 992px) {
            border-radius: 0 0 20px 20px;
        }
    }
}

.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.service {
    margin-top: 190px;
}

/* Container Utility Class */
.container {
    max-width: 1400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1280px) {
    .container {
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}