


/*-- section Blog start --*/

.collabcrm-cards-wrapper {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1280px;
}

.collabcrm-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    width: calc(100% / 3 - 17px);
    /* box-shadow: 0 0 0 1px #f3f4f6; */
    transition: transform 0.2s ease;
}

.collabcrm-card:hover {
    transform: translateY(-3px);
}

.collabcrm-card-thumb {
    width: 100%;
    /* height: 200px; */
    overflow: hidden;
}

.collabcrm-card-thumb img {
    width: 100%;
    /* height: 170px; */
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0px 0px;
}

.collabcrm-card-content {
    padding: 24px;
}

.collabcrm-card a {
    color: #111111;
}

.collabcrm-card-content h3 {
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.025em;
    color: #111827;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 60px;
}

.collabcrm-card-content p {
    color: #6B7280;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

  .collabcrm-cards-wrapper {
        gap: 15px;
    }
    .collabcrm-card {
        width: calc(100% / 3 - 10px);
        padding: 0px;
    }

/* @media screen and (max-width: 1025px) {

    .collabcrm-cards-wrapper {
        gap: 15px;
    }

    .collabcrm-card {
        width: calc(100% / 3 - 10px);
        padding: 0px;
    }

} */


@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .collabcrm-cards-wrapper {
        gap: 15px;
    }
    .collabcrm-card {
        width: calc(100% / 2 - 10px);
        padding: 0px;
    }
    .collabcrm-card:last-child{
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .collabcrm-card {
        width: calc(100% / 1 - 0px);
    }
    .collabcrm-card-content h3 {
        min-height: auto;
    }

    .collabcrm-card-thumb {
        height: 300px;
    }
    .collabcrm-card-content h3 {
        -webkit-line-clamp: none;;
    }
}

@media screen and (max-width: 576px) {
    .collabcrm-card-thumb {
        height: 230px;
    }

}

/*-- section Blog end --*/
