/**
 * One Connected Path
 *
 * Generated by Dreamz Page Builder on 2026-07-27.
 */

.one-connected-path {
    padding: 88px 0;
}
.one-connected-path .top_section  p{
    max-width: 57%;
}

.path_wrapper_column {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 20px;
    transition: opacity .6s ease, transform .6s ease;
}

.left_wrapper {
    background: linear-gradient(150deg, var(--secondary), var(--teal-dark));
}

.right_wrapper {
    background: linear-gradient(150deg, var(--primary), var(--navy-deep));
}

.path_column {
    position: relative;
    border-radius: var(--r);
    padding: 34px 30px;
    color: #fff;
    overflow: hidden;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.path_column span {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    margin-bottom: auto;
    font-family: var(--font-inter);
}

.right_wrapper.path_column span {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color:rgba(255, 255, 255, .8);
    font-family: var(--font-inter);
}
.left_wrapper.path_column a:hover {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}
.right_wrapper.path_column a:hover {
    color: var(--secondary);
    border-bottom: 1px solid var(--secondary);

}
.path_column h4 {
    color: #fff;
    font-size: 1.35rem;
    margin: .3rem 0 .45rem;
    font-family: var(--font-fraunces);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -.01em;
}

.path_column p {
    color: rgba(255, 255, 255, .86);
    font-size: .9rem;
    margin-bottom: .9rem;
    font-family: var(--font-inter);
    max-width: 100%;
}

.path_column a {
    font-weight: 600;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    padding-bottom: 2px;
    width: fit-content;
    font-family: var(--font-inter);
}

.top_section p {
    color: var(--content);
    font-size: 1.04rem;
    line-height: 1.65;
    max-width: 100%;
    font-family: var(--font-inter);
}

.top_section span {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--secondary);
    font-family: var(--font-inter);
}

.top_section h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    margin: .55rem 0 .8rem;
    font-family: var(--font-fraunces);
    max-width: 616px;
}

.top_section {
    margin-bottom: 44px;
}

.shuttle-ic {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--mist);
    display: grid;
    place-items: center;
    flex: none;
}

.shuttle-ic svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
}

@media (max-width: 991px) {

.one-connected-path .top_section  p{
 
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .path_wrapper_column {
        grid-template-columns: 1fr;
    }

    .one-connected-path {
        padding: 50px 0;
    }

    .shuttle-ic {
        transform: rotate(90deg);
        justify-self: center;
    }
    
}