﻿.Latest-roject-list {
    padding: 1.71rem;
    border: 1px solid var(--bg-e0);
    border-radius: var(--radius-8);

    .card {
        margin-top: 1.71rem;
        gap: 1.71rem;

        .card-item {
            width: 100%;
            height: 100%;

            .img-box {
                width: 5.71rem;
                max-width: 100%;
                aspect-ratio: 1/1;
                flex-shrink: 0;
                overflow: hidden;
            }

            .content-box {
                width: 100%;
                padding: 1.14rem;
                color: var(--Black);


                .title {
                    display: -webkit-box;
                    -webkit-line-clamp: 1;
                    font-size: 1rem;
                    font-weight: 700;
                    color: var(--Black);
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
            }
        }



    }
}