.left_right_section .content-box {
    max-width: 44.412%;
    width: 100%;
}

.left_right_section .img-box {
    max-width: 48.361%;
    width: 100%;
}

.left_right_section .flex_wrapper:nth-child(even) {
    flex-direction: row-reverse;
    padding: clamp(32px, 6.458vw, 93px) 0;
}

.left_right_section .flex_wrapper:nth-child(odd) .content-inner-box {
    padding: 0 0 0 7px;
}

.left_right_section .content-inner-box>p {
    margin-bottom: 7px;
}

.left_right_section .content-inner-box h2 {
    margin-bottom: 26px;
    padding-right: 30px;
}

.left_right_section .content-inner-box a {
    margin-top: 15px;
}

.left_right_section .img-box {
    text-align: end;
}

.left_right_section .img-box img {
    border-radius: 26px;
}
.content-inner-box {
    position: relative;
}


/* hide any checkbox */
.left_right_section input[type=checkbox] {
    position: absolute;
    content: "";
    opacity: 0;
}

.left_right_section input[type=checkbox]:checked~.excerpt {
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* clamp paragraph */
.left_right_section .excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 6;
    transition: all 0.3s ease;
}

/* expanded state (match the specific checkbox before the excerpt) */
.left_right_section input[type=checkbox]:checked+.excerpt {
    -webkit-line-clamp: unset;
    display: block;
    max-height: var(--max-height-expanded);
}

.left_right_section input[type=checkbox]:checked+.excerpt::after {
    display: none;
}

/* toggle button */
.left_right_section .toggle {
    display: block;
    cursor: pointer;
    font-weight: 600;
    color: #000000;
    user-select: none;
    width: max-content;
    padding: 1.5px 24px 1.5px 0;
    position: relative;
}

/* switch label text depending on state */
.left_right_section .toggle::after {
    content: "Read more";
}

.left_right_section .toggle::before {
    position: absolute;
    content: "";
    background-image: url('../../../assets/images/down_arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 9px;
    transition: all 0.3s ease;
}

.left_right_section input[type=checkbox]:checked+.excerpt+br+.toggle::before {
    transform: translateY(-50%) rotate(180deg);

}

.left_right_section input[type=checkbox]:checked+.excerpt+br+.toggle::after {
    content: "Read less";
}


@media(max-width: 767px) {
    .left_right_section {
        padding-right: 10px;
        padding-left: 10px;
    }

    .left_right_section .content-inner-box>h2+p {
        margin-bottom: 26px;
    }

    .left_right_section .flex_wrapper:nth-child(even),
    .left_right_section .flex_wrapper {
        flex-direction: column;
    }

    .left_right_section .flex_wrapper {
        gap: 30px;
    }

    .left_right_section .img-box,
    .left_right_section .content-box {
        max-width: 100%;
    }

    .left_right_section .content-inner-box h2 {
        padding-right: 0;
    }

    .left_right_section .flex_wrapper:nth-child(odd) .content-inner-box {
        padding: 0;
    }

}
@media(max-width: 575px){
    .hero-block + .left_right_section .flex_wrapper{
        padding-bottom: 0;
    }
}