@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.cbc-grid-3f229abe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 1024px) {
    .cbc-grid-3f229abe {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cbc-grid-3f229abe {
        grid-template-columns: 1fr;
    }
}

.cbc-card-3f229abe {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cbc-card-3f229abe:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.cbc-card-link-3f229abe {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.cbc-card-link-3f229abe:hover, .cbc-card-link-3f229abe:focus {
    text-decoration: none;
    color: inherit;
}

.cbc-image-wrap-3f229abe {
    width: 100%;
    height: 220px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background-color: #f5f5f5;
}

.cbc-image-3f229abe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cbc-card-3f229abe:hover .cbc-image-3f229abe {
    transform: scale(1.05);
}

.cbc-content-3f229abe {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cbc-meta-3f229abe {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.cbc-badge-3f229abe {
    background-color: #ff8210;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.cbc-date-3f229abe {
    color: #888888;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cbc-date-3f229abe i {
    font-size: 14px;
}

.cbc-title-3f229abe {
    color: #282167;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.cbc-text-3f229abe {
    color: #777777;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.cbc-readmore-3f229abe {
    color: #ff8210;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-top: auto;
    transition: color 0.3s ease;
}