.casesDetail__container{
    width: 90%;
    max-width: var(--max-xl-width);
    padding-top: 5rem;
    padding-bottom: 3rem;
}
 .casesDetail__breadcrumb a{
     color: var(--gray-50);
     text-decoration: none;
 }
 .casesDetail__breadcrumb a.active{
     color: black;
     text-decoration: none;
 }
 .casesDetail__title{
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: var(--blue);
    font-size: 3.2rem;
    font-weight: 700;
 }
 .casesDetail__wrapper{
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
 }
 .casesDetail__content{
    width: 100%;
    margin-right: 5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* background: white; */
    /* box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10); */
    /* padding: 3rem; */
 }
 .casesDetailContent__image{
    /* margin-top: 2rem; */
    margin-bottom: 3rem;
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
 }
 .casesDetailContent__image--full{
   margin-top: 2rem;
   width: 100%;
   border-radius: 10px;
}
 .casesDetailContent__text{
    color: var(--gray-60);
    line-height: 180%; /* 32.4px */
 }
 .casesDetailContent__title{
   color: black;
   font-weight: 600;
   font-size: 2.4rem;
   margin-top: 2rem;
 }
 .casesDetailContent__orderList{
   background-color: white;
   border-radius: 1rem;
   padding: 3rem 5rem;
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 .casesDetailContent__orderList .casesDetailContent__title{
   color: #4A96FF;
   margin-top: 0;
 }

 .casesDetail__nextNews{
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap:1rem;
    margin-top: 3rem;
    align-self: center;
 }
 .casesDetailNextNews__title,
 .casesDetailRecommendedNews__title{
    color: var(--light-blue);
 }
 .newsDetail__card{
    text-decoration: none;
    color: black;
    font-weight: 600;
 }
 .newsDetailNext__image{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
 }
 .newsDetailNext__dottedLineSeparator{
    height: 1px;
    width: 100%;
    border-top: dashed 1px var(--gray-60);
    margin: 1.5rem 0;
 }
 .casesDetailNext__solidLineSeparator{
    height: 1px;
    width: 100%;
    border-top: solid 1px var(--gray-60);
    margin: 1.5rem 0;
 }
 @media (min-width: 768px){
    .casesDetail__wrapper{
       flex-direction: row;
    }
    .casesDetail__nextNews{
         width: 40%;
        margin-top: 0;
        align-self: unset;
     }
}