.hcf-container-b9414508 {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for Firefox and IE */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hide scrollbar for WebKit browsers */
.hcf-container-b9414508::-webkit-scrollbar {
    display: none;
}

.hcf-track-b9414508 {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
}

.hcf-card-b9414508 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    width: 300px;
    flex: 0 0 300px;
    aspect-ratio: 1/1;
}

.hcf-thumbnail-b9414508 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hcf-thumbnail-b9414508 img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hcf-no-thumb-b9414508 {
    background-color: #f0f0f0;
}

.hcf-card-content-b9414508 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
    z-index: 2;
    box-sizing: border-box;
}

.hcf-card-b9414508:hover .hcf-card-content-b9414508 {
    opacity: 1;
}

.hcf-title-b9414508 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: center;
    color: #ffffff;
}

.hcf-title-anim-yes .hcf-title-b9414508 {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.hcf-title-anim-yes .hcf-card-b9414508:hover .hcf-title-b9414508 {
    transform: translateY(0);
}