.report-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Hover effect */
.report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Image section */
.report-img {
    padding: 12px;
    background: #f9f9f9;
}

.report-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.4s ease;
}

.report-card:hover .report-img img {
    transform: scale(1.03);
}

/* Footer button style */
.report-footer {
    padding: 15px;
    display: flex;
    justify-content: center;
    background: #fff;
}

/* Rounded button look */
.report-title {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid #ad1f26;
    color: #ad1f26;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

/* hover button fill */
.report-card:hover .report-title {
    background: #ad1f26;
    color: #fff;
}


