.client-projects {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    font-family: "Poppins", Sans-serif;
}

.client-projects .post-item {
    padding: 10px;
    background-color: #F5F5F5;
}

.client-projects .post-item .post-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-projects .post-item .post-item-header h2 {
    margin-bottom: 0px;
}

.client-projects .post-item .post-excerpt {
    font-weight: 600;
    padding: 10px;
}

.client-projects .post-item .post-item-header .settings {
    position: relative;
    margin-left: auto;
    margin-bottom: auto;
}

.client-projects .post-item .post-item-header .settings .dropdown {
    position: absolute;
    right: 0;
    width: 100px;
    transform: scale(0);
    transition: .3s ease-in-out;
}

.client-projects .post-item .post-item-header .settings .dropdown.show {
    transform: scale(1);
}

.client-projects .post-item .post-item-header .settings .dropdown .design {
    background: #6754E2;
    border-radius: 4px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, .25);
    padding: 8px;
}

.client-projects .post-item .post-item-header .settings .dropdown .design .new-icon-text {
    align-items: center;
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
    cursor: pointer;
    display: flex;
    gap: 5px;
    padding: 5px 5px;
    color: #ffffff;
}

.client-projects .post-item .post-item-header .settings .dropdown .design .new-icon-text:hover {
    background: rgba(255, 255, 255, 0.1);
}

.client-projects .post-item .post-item-header .settings .dropdown .design .new-icon-text p {
    margin: 0;
}

@media only screen and (max-width:980px) {
    .client-projects {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width:525px) {
    .client-projects {
        grid-template-columns: 1fr;
    }
}