.isc-987-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.isc-987-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid transparent;
}

.isc-987-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.05);
}

.isc-987-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.isc-987-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.isc-987-card:hover .isc-987-image img {
    transform: scale(1.05);
}

.isc-987-content {
    padding: 25px;
}

.isc-987-title {
    margin: 0 0 15px 0;
    font-size: 1.25rem;
}

.isc-987-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.isc-987-excerpt {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.isc-987-read-more {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    color: #333;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.isc-987-card:hover .isc-987-read-more {
    border-color: currentColor;
}