/**
 * Product Section Styles
 * Featured product (left) + Slider (right)
 */

.rd-editor p {
    margin-top: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #5B5B5C;
}


.process-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-text {
    display: flex;
    gap: 80px;
    align-items: flex-start
}

.process-text h3 {
    font-weight: 700;
    font-size: 25px;
    line-height: 140%;
    letter-spacing: 0.04rem;
    text-transform: uppercase;
    margin-bottom: 0;
    white-space: nowrap;
    flex-shrink: 0;
    white-space: normal;
    word-wrap: break-word;
    max-width: 600px;
    position: unset;
}

.half-highlights {
    display: inline !important;
    background: linear-gradient(to top, #b6e2d3 50%, transparent 50%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background-size: 100% 100%;
    padding: 0 2px;
}

.process-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.04rem;
    color: #5B5B5C;
    margin: 0;
    flex: 1;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.process-img img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.process-img img {
  transition: transform 0.6s ease;
}
.process-img:hover img {
  transform: scale(1.05);
}

.process-attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.process-tag {
    background: #F2F3F5;
    padding: 8px 16px;
    border-radius: 80px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.04rem;
    text-align: center;
    vertical-align: middle;
    color: #5B5B5C;
    border: 1px solid #CACBCC;
}


@media (max-width: 1439px) {
    .rd-editor p {
        font-size: 15px;
    }

    .process-text h3 {
        font-size: 21px;
        max-width: 448px;
    }

    .process-text p {
        font-size: 15px;
    }

    .process-text {
        gap: 64px;
    }

    .process-tag {
        font-size: 14px;
    }
}

@media (max-width: 1023px) {
    .rd-editor p {
        font-size: 15px;
    }

    .process-text h3 {
        font-size: 21px;
        max-width: 344px;
    }

    .process-text p {
        font-size: 15px;
    }

    .process-text {
        gap: 64px;
    }

    .process-tag {
        font-size: 14px;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .rd-editor p {
        margin-top: 16px;
        font-size: 14px;
    }

    .process-text h3 {
        font-size: 19px;
        max-width: 343px;
    }

    .process-text p {
        font-size: 14px;
    }

    .process-text {
        gap: 16px;
        flex-direction: column;
    }

    .process-tag {
        font-size: 13px;
    }

    .process-attributes {
        gap: 8px;
    }
}