.program-page-hero { 
    display: flex;
    flex-direction: row;
    background-color: #7234C4;
}

.program-page-hero .container { 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
    padding-block: 136px;
    padding-inline: 24px;
}

.program-page-hero .left-side { 
    width: 100%;
    max-width: 432px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
}

.program-page-hero .left-side .hero-image { 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-page-hero .right-side { 
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 600px;
}

.program-page-hero .right-side .pre-title { 
    font-family: 'CircularXX', sans-serif;
    font-weight: 450;
    font-size: 26px;
    line-height: 140%;
    color: #fff;
}

.program-page-hero .right-side .title { 
    font-family: 'CircularXX', sans-serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 16px;
}

.program-page-hero .right-side .details { 
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 24px;
    column-gap: 56px;
}

.program-page-hero .right-side .details .single-detail { 
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: calc(50% - 28px);
}

.program-page-hero .right-side .details .single-detail .single-detail-icon { 
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
}

.program-page-hero .right-side .details .single-detail .single-detail-text { 
    font-family: 'CircularXX', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #fff;
}

.program-page-hero .right-side .hero-button { 
    width: 100%;
    height: 62px;
    border-radius: 100px;
    background-color: #fff;
    color: #7234C4;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'CircularXX', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-top: 16px;
    padding: 20px 60px;
    text-decoration: none;
    text-align: center;
}

@media (max-width: 1024px) {
    .program-page-hero { 
        background-color: unset;
    }

    .program-page-hero .container {
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        padding: unset;
    }

    .program-page-hero .right-side {
        max-width: 100%;
        gap: 8px;
        padding: 108px 24px 40px;
        background-color: #7234C4;
    }

    .program-page-hero .right-side .title {
        font-weight: 500;
        font-size: 32px;
    }

    .program-page-hero .right-side .details {
        flex-direction: column;
       flex-wrap: nowrap;

    }

    .program-page-hero .right-side .details .single-detail {
        width: 100%;
    }

    .program-page-hero .right-side .button {
        width: fit-content;
    }

    .program-page-hero .left-side {
        max-width: 100%;
        padding: 24px;
    }

    .program-page-hero .left-side .hero-image {
        border-radius: 16px;
    }


}