.aspect-ratio-container {
    width: 100%;
    padding-top: 50%;
    position: relative;
    background-size: cover;
}

.thumbnail-container {
    cursor: pointer;
    overflow: hidden;
}

.thumbnail {
    display: block;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumbnail-container:hover .thumbnail {
    transform: scale(1.1);
}

.thumbnail-container:hover .overlay {
    opacity: 1;
}

.button.is-ghost:hover {
    color: #f5f5f5;
    text-decoration: none;
}

.card-image img {
    border-radius: 0;
}

.card-image:first-child img {
    border-radius: 0;
}