.topic-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.topic-card .card-img-top {
    height: 220px;
    object-fit: cover;
    object-position: center;
}

.topic-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.topic-card .card-title {
    font-weight: 600;
}

.topic-card .card-text {
    flex-grow: 1;
    color: #6c757d;
}

.image-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.image-card .card-img-top {
    height: 220px;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
} 