.highlightZone {
    height: 100%;
    flex-grow: 1;
    width: 100%;
    min-height: 350px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 32px 32px 24px;
    gap: 24px;
    position: relative;
    max-width: 1200px;
}



.highlightZone .articleHeading {
    font-size: 48px;
    color: rgb(var(--lrs-black));
    font-weight: 900;
    user-select: none;
    align-self: flex-start;
    width: 100%;
    border-bottom: 4px solid rgb(var(--lrs-green-3));
}



.highlightZone .articleSubHeading {
    font-size: 32px;
    color: rgba(var(--lrs-black), 0.5);
    font-weight: 900;
    user-select: none;
    text-transform: uppercase;
    margin-top: 32px;
}

.highlightZone:first-of-type {
    padding-top: 128px;
}

.highlightZone .split {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    min-height: 200px;
    width: 100%;
    font-size: 1.25rem;
    color: rgb(var(--lrs-black));
    flex-wrap: wrap;
}

.highlightZone .split:has(.large + .small) {
    flex-wrap: wrap-reverse;
    align-items: flex-end;
}

.split .heading {
    font-size: 32px;
    color: rgb(var(--lrs-black));
    font-weight: 900;
    user-select: none;
    align-self: flex-start;
    border-bottom: 4px solid rgb(var(--lrs-green-3));
    margin-bottom: 12px;
}

.split .small {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 320px;

}

.split .large {
    min-width: 320px;
}


.small .quote {
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(var(--lrs-monochrome-2), 1);
    border-radius: 12px;
}


.small .quote .center {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.small .quote .center .looseButton {
    padding: 8px 12px 10px;
    border: 2px solid rgb(var(--lrs-black-1));
    background: rgb(var(--lrs-green-2));
    color: rgb(var(--lrs-black));
    font-weight: 600;
    width: min-content;
    white-space: nowrap;
    border-radius: 4px;
    text-decoration-color: rgba(var(--lrs-black), 0);
    margin-top: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.small .quote .center .looseButton:hover {
    background: rgb(var(--lrs-green-1));
    text-decoration-color: rgba(var(--lrs-black));
}

.small .quote .center .looseButton:active {
    background: rgb(var(--lrs-green-3));
    transform: scale(0.95);
}

.dippedSection {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 12px;
    align-items: center;
    background: linear-gradient(165deg, rgba(var(--lrs-green-1), 0.75), rgba(var(--lrs-green-3), 0.75));
    box-shadow: 0px 0px 20px 0px rgba(var(--lrs-black), 0.5) inset;
    width: 100vw;
    gap: 16px;
}


.dippedSection .heading {
    font-size: 32px;
    color: rgb(var(--lrs-white));
    font-weight: 900;
    user-select: none;
    text-transform: uppercase;
    filter: drop-shadow(0px 0px 4px rgba(var(--lrs-black), 0.5));
    text-align: center;
}


.testimonial {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0px 8px 4px rgba(var(--lrs-black), 0.5));
}

.testimonial .pic {
    width: 100px;
    flex-shrink: 0;
    height: 100px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    border: 6px solid rgba(var(--lrs-black));
    background: radial-gradient(100% 100% at 70% 0%, rgb(var(--lrs-white)), rgb(var(--lrs-green-1)) 60%, rgb(var(--lrs-green-2)));
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 64px;
    box-shadow: 0px 0px 20px 0px rgba(var(--lrs-black), 0.5) inset;
    color: rgb(var(--lrs-black));
    margin-right: -50px;
    z-index: 1;
    outline: 2px solid rgba(var(--lrs-green-1), 0.5);
}

.testimonial .quote {
    background: rgb(var(--lrs-black));
    color: rgb(var(--lrs-white));
    font-size: 28px;
    max-width: 600px;
    border-radius: 8px;
    padding: 12px 16px 12px 66px;
}

.testimonial .quote .highlighted {
    color: rgb(var(--lrs-green-1));
    font-weight: 700;
}



/* static image */

.staticImage {
    position: relative;
    object-fit: contain;
    max-width: 100%;
    max-height: 600px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border: 3px solid rgb(var(--lrs-green-4));
    transition: 0.2s border;
}

.staticImage:hover {
    border: 3px solid rgb(var(--lrs-green-2));
}

.highlightShowcase {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: stretch;
    height: min-content;
    flex-wrap: wrap;
}

.highlightShowcase2 {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: stretch;
    height: min-content;
    flex-wrap: wrap;
}

.highlightShowcase2 .image {
    position: relative;
    object-fit: cover;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border: 3px solid rgb(var(--lrs-green-4));
    transition: 0.2s border;
    max-width: 500px;
    max-height: 400px;
    flex-grow: 2;
}
.highlightShowcase2 .image:hover {
    border: 3px solid rgb(var(--lrs-green-2));
}


.highlightShowcase .highlightShowcaseLeft,
.highlightShowcase .highlightShowcaseRight {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    flex-grow: 0;
    width: 100%;
    max-width: 350px;
    flex-shrink: 1;
    max-height: 600px;
    gap: 8px;
}

.highlightShowcase img:nth-child(0) {
    grid-area: 1 / 1 / 2 / 2;
}

.highlightShowcase img:nth-child(1) {
    grid-area: 2 / 1 / 3 / 2;
}

.highlightShowcase img:nth-child(2) {
    grid-area: 1 / 2 / 3 / 3;
}


.highlightShowcase .image {
    position: relative;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border: 3px solid rgb(var(--lrs-green-4));
    transition: 0.2s border;
}

.highlightShowcase .highlightShowcaseLeft .image {
    flex-basis: 50%;
    flex-shrink: 1;
}

.highlightShowcase .image:hover {
    border: 3px solid rgb(var(--lrs-green-2));
}


@media only screen and (max-width:850px) {

    .highlightShowcase .highlightShowcaseLeft,
    .highlightShowcase .highlightShowcaseRight {
        max-width: 250px;
    }

    .highlightShowcase .highlightShowcaseLeft img:first-of-type {
        display: none;
    }

    .highlightShowcase .highlightShowcaseLeft .image {
        flex-basis: 100%;
        flex-shrink: 1;
    }
}

/* slider container*/

.slider-container {
    --startPos: 35%;
    flex-grow: 1;
    position: relative;
    min-width:320px;
    max-width: 480px;
    max-height: 360px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border: 3px solid rgb(var(--lrs-green-4));
    transition: 0.2s border;
}

.slider-container:hover {
    border: 3px solid rgb(var(--lrs-green-2));
}

.slider-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.after-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center left;
    mask-image: linear-gradient(to right, black var(--startPos), transparent var(--startPos));
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--startPos);
    width: 8px;
    border-left: 3px solid rgb(var(--lrs-black));
    border-right: 3px solid rgb(var(--lrs-black));
    background: rgb(var(--lrs-green-4));
    cursor: ew-resize;
    z-index: 10;
    transition: background 0.2s, border-left 0.2s, border-right 0.2s;
}
.slider-container:hover .slider-handle{
    border-left: 3px solid rgb(var(--lrs-green-4));
    border-right: 3px solid rgb(var(--lrs-green-4));
    background: rgb(var(--lrs-green-2));
}

.slider-handle::before {
    content: "\f337";
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 10px solid transparent;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.85);
    border: 3px solid rgb(var(--lrs-green-1));
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 32px;
}

.label-before,
.label-after {
    position: absolute;
    top: 16px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 18px;
    user-select: none;
    padding: 4px 6px;
}

.label-before {
    left: 16px;
}

.label-after {
    right: 16px;
}