/* Grid */
.masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    padding: 30px;
}

/* Card */
.item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: .35s ease;
}

.item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

/* Image */
.item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Title */
.item h4,
.item b {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

/* Content */
.item dfn {
    font-style: normal;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    display: block;
    margin-top: 8px;
}

/* Links */
.item a {
    color: inherit;
    text-decoration: none;
}

/* Badge icon */
.item i {
    color: #0d6efd;
}

/* Mobile spacing */
@media(max-width:768px) {
    .masonry {
        padding: 15px;
        gap: 15px;
    }
}