.project-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0px 6px 20px -4px #0000001A;
    padding: clamp(16px, 2vw, 32px);
    width: calc(100% - 24px);
    .thumbnail-project-img {
        display: flex;
        text-align: center;
        position: relative;
        border-radius: 20px;
        img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
        }
        &:before {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            right: 0;
            top: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.08%, rgba(0, 0, 0, 0.6) 70.05%, rgba(0, 0, 0, 0.6) 100%);
            border-radius: 20px;
        }
    }
    .wrapper-items {
        display: flex;
        flex-direction: column;
        gap: 22px;
        justify-content: space-between;
        height: 100%;
        .intro-project-meta {
            .project-cat {
                margin-block: 16px;
                font-size: clamp(14px, 2vw, 20px);
                display: flex;
                align-items: center;
                gap: 8px;
                font-family: var(--Medium);
                i {
                    width: 24px;
                    height: 24px;
                    font-size: clamp(16px, 2vw, 20px);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--color1);
                }
            }
            p {
                font-size: 16px;
                font-family: var(--Regular);
                line-height: 33px;
            }
        }
        .intro-project-items {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            li {
                background: var(--accent);
                border-radius: 20px;
                padding: 22px 24px;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
        }
    }
    .single-content {
        margin-top: clamp(24px, 3vw, 40px);
    }
}
@media only screen and (min-width: 992px) {
    .intro-project-items {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}