/* RND.CSS */

/* ============================================
   R&D PAGE
   ============================================ */
.rnd-hero {
    width: 100vw;
    overflow: hidden;
    line-height: 0;
    position: relative;
    aspect-ratio: 2.4;
    /* height: 100vh; */
    max-height: 80vh;
}





.rnd-content-wrapper {
    padding: 3.5rem 0;
    background: var(--white);
}

.rnd-heading-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rnd-title {
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--green-light);
    white-space: nowrap;
}

.rnd-heading-line {
    flex: 1;
    height: 1px;
    background: var(--orange);
}

.rnd-text-grid {
    margin-bottom: 3rem;
}

.rnd-text-col p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.rnd-connect-btn {
    float: right;
    margin-top: -0.5rem;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
}

.rnd-carousel-wrapper {
    margin: 3rem auto 0rem auto;
    max-width: 45rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.rnd-carousel-window {
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.rnd-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease-in-out;
}

.rnd-carousel-track img {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.rnd-carousel-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rnd-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #99CAAD;
    cursor: pointer;
    transition: all 0.3s;
}

.rnd-dot.rnd-dot-active {
    width: 107px;
    height: 8px;
    border-radius: 100px;
    background: #F07235;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

