html{
    scroll-behavior: smooth;
}

.ed-section-hero .ed-content{
    display: flex;
}
.ed-section-hero .ed-left-column{
    width: 50%;
}
.ed-section-hero .ed-left-column img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    height: 100%;
}
.ed-section-hero .ed-right-column{
    width:calc(50% - 160px);
    padding: 120px 80px;
    background-color: #F6F4F0;
}
.ed-section-hero .ed-right-column .ed-content{
    padding: 60px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.ed-section-hero .ed-right-column .ed-subtitle{
    background-color: #FFDF51;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    width: fit-content;
}
.ed-section-hero .ed-right-column .ed-heading{
    margin: 0;
    font-family: "Sora";
    font-size: 50px;
    font-weight: 300;
}
.ed-section-hero .ed-right-column .ed-description{
    line-height: 1.6em;
    font-size: 18px;
    font-weight: 300;
    margin: 0;
}


/* Text Section */
.ed-section-content{
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.ed-section-content .ed-content{
    padding: 0 20px;
}
.ed-section-content h2, .ed-section-content h3{
    scroll-margin-top: 70px;
}
.ed-section-content ul ul{
    list-style: none;
}
.ed-section-content ul a{
    color: #000;
    text-decoration: none;
    font-weight: 600;
}
.ed-section-content ul a:hover{
    color: #535252;
}
.sources a{
    color: #000;
    font-weight: 600;
}



@media screen and (min-width: 769px) and (max-width: 1023px){
    .ed-section-hero .ed-left-column img{
        height: 400px;
    }
}
@media screen and (max-width: 1023px){
    .ed-section-hero .ed-content{
        flex-direction: column;
    }
    .ed-section-hero .ed-left-column{
        width: 100%;
    }
    .ed-section-hero .ed-right-column{
        width: calc(100% - 80px);
        padding: 60px 20px;
        margin: -200px auto 0 auto;
    }
    .ed-section-hero .ed-right-column .ed-content{
        padding: 0;
    }
}