.project-list-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 40px 24px;
}

.project-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    color: black;
    border-radius: 8px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16), 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
}

.project-container:hover {
    color: initial;
    text-decoration: none;
}

.project-container > div > img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
    height: 176px;
}

.project-container .content {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.project-overview, .project-designer-profile {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.project-designer-profile {
    padding: 0 16px 16px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.project-overview .project-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; /* 150% */
}

.project-overview i {
    cursor: pointer;
    font-size: 24px;
    color: #D9D9D9;
}

.project-designer-profile .overview {
    gap: 8px;
}

.project-designer-profile .overview figure {
    border-radius: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    margin-bottom: 0;
    background-size: cover;
    background-position: center;
}

.project-designer-profile .overview .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-designer-name-container {
    color: #000;
    display: flex;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
}

.project-designer-name-container span {
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.project-designer-profile .joined-since {
    color: #88888C;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px; /* 120% */
}

.project-brand-image {
    min-height: 32px;
    max-height: 32px;
    max-width: 25%;
    object-fit: contain;
}

/*.project-designer-profile .rating {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: black;*/
/*    gap: 4px;*/
/*}*/

/*.project-designer-profile .rating span {*/
/*    font-size: 12px;*/
/*}*/

.project-container .footer {
    display: flex;
    padding: 8px 16px;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(0deg, rgba(15, 111, 76, 0.10) 0%, rgba(15, 111, 76, 0.10) 100%), #FFF;
}

.project-container .footer .text-design-price {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 125% */
}

.project-container .footer .text-price {
    color: #0F6F4C;
    font-size: 16px;
    word-break: break-all;
    font-weight: 600;
    line-height: 24px; /* 120% */
}

.project-details {
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-content: center;
    height: 176px;
    width: 100%;
    min-width: 280px;
    top: 0;
    transition: opacity 0.25s ease;
    opacity: 0;
    position: absolute;
    text-align: center;
    border-radius: 8px 8px 0px 0px;
    background: linear-gradient(0deg, rgba(46, 61, 56, 0.50) 0%, rgba(46, 61, 56, 0.50) 100%);
}

.project-container:hover .project-details {
    opacity: 1;
}

.project-detail-container {
    padding: 4px 8px;
    display: flex;
    gap: 8px;
    color: white;
    font-size: 14px;
    line-height: 20px; /* 142.857% */
    border-radius: 4px;
    background: rgba(184, 181, 181, 0.50);
    backdrop-filter: blur(4px);
}

.project-detail-container img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

@media screen and (max-width: 1440px) {
    .project-brand-image {
        min-height: 24px;
        max-height: 24px;
        max-width: 25%;
    }
}

@media screen and (max-width: 992px) {
    .project-list-container {
        gap: 24px 16px;
    }

    .project-container {
        width: calc(33% - 10px);
        min-width: unset;
    }

    .project-container > div > img {
        height: 140px;
    }

    .project-details, .project-overview i {
        display: none;
    }

    .project-container .content {
        padding: 8px;
        gap: 8px;
    }

    .project-designer-profile {
        padding: 0 8px 8px 8px;
    }

    .project-designer-profile .overview figure {
        min-width: 28px;
        max-width: 28px;
        height: 28px;
    }

    .project-container .footer .text-price {
        font-size: 16px;
        line-height: 20px; /* 125% */
    }

    .project-overview .project-name {
        font-size: 12px;
        line-height: 16px; /* 133.333% */
        -webkit-line-clamp: 2;
    }

    .project-designer-profile .joined-since {
        font-size: 8px;
        line-height: 12px; /* 150% */
        word-break: break-all;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .project-container .footer {
        padding: 4px 8px;
        flex-direction: column;
        gap: 2px;
    }

    .project-designer-name-container span,
    .project-designer-name-container i,
    .project-container .footer .text-design-price {
        font-size: 10px;
        line-height: 12px; /* 120% */
    }
}

@media screen and (max-width: 776px) {
    .project-container {
        width: calc(50% - 8px);
        min-width: unset;
    }
}

@media screen and (max-width: 576px) {
    .project-container > div > img {
        height: 120px;
    }

    .project-brand-image {
        max-width: 20%;
    }
}

/* Project Card Catalogue Mobile */
.project-card-catalogue {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    aspect-ratio: 3/2;
    transform: translateZ(0); /* Force hardware acceleration */
}

.project-card-catalogue:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.project-card-catalogue .card-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: translateZ(0); /* Force hardware acceleration */
}

.project-card-catalogue .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
}

.project-card-catalogue:hover .card-image {
    transform: scale(1.08);
}

.project-card-catalogue .project-card-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.project-card-catalogue .project-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-card-catalogue .project-brand p {
    font-size: 8px;
    line-height: 12px;
    color: #FAFAFA;
    margin-bottom: 0;
    text-align: right;
}

.project-card-catalogue .project-brand img {
    height: 18px;
}

.project-card-catalogue .project-category {
    border: 1px solid #FAFAFA;
    backdrop-filter: blur(48px);
    background: #71717A3D;
    height: fit-content;
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
    color: #FAFAFA;
    border-radius: 99px;
    padding: 4px 16px;
}

.project-card-catalogue .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    box-sizing: border-box;
    z-index: 1;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0) 60%, rgba(9, 9, 11, 0.72) 90%);
}

.project-card-catalogue .project-card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 16px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.project-card-catalogue .card-content {
    color: #fff;
}

.project-card-catalogue .project-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.project-card-catalogue .project-designer-image {
    width: 32px;
    height: 32px;
    border-radius: 100%;
}

