.cpg-3efc1b0a-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cpg-3efc1b0a-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}
.cpg-3efc1b0a-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.cpg-3efc1b0a-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.cpg-3efc1b0a-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cpg-3efc1b0a-content {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.cpg-3efc1b0a-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}
.cpg-3efc1b0a-arrow {
    color: #c9494e; /* matching red arrow from screenshot */
    display: flex;
    align-items: center;
}
@media (max-width: 1024px) {
    .cpg-3efc1b0a-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 767px) {
    .cpg-3efc1b0a-grid {
        grid-template-columns: 1fr !important;
    }
}