.curriculum_area {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
}

    .curriculum_area::after{
        content: "";
        background-image: url(../../../images/department_logo.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        display: block;
        aspect-ratio: 1 / 1;
        width: clamp(7.8125rem, 33.3333vw, 15.625rem);
        height: auto;
        opacity: 0.2;
        /* mix-blend-mode: multiply; */
        position: absolute;
        right: 0;
        bottom: 0;
        transform: translate(0%, 0%);
    }

.curriculum_area_title {
    color: var(--primary_color);
    font-size: clamp( 1rem, 2.4vw, 1.125rem );
    font-weight: 700;
    padding-bottom: 20px;
}

.video_show{
    display: flex; 
    justify-content: left; 
    align-items: center;
}