/* Result card styles (partially redundant with .card.result-card in styles.css) */
.result-card {
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Hover effect for result card (partially redundant with .card:hover in styles.css) */
.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    text-decoration: none;
}

/* Result card content layout (partially redundant with .card-content in styles.css) */
.result-card-content {
    display: flex;
}

/* Result card image (redundant with .card img in styles.css) */
.result-card img {
    width: 195px;
    height: 130px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 20px;
}

@media (max-width: 576px) {
    .result-card img {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

