:root {
    --sc-columns: 2.5;
}
.sc-5b3dfde0-container {
    position: relative;
}
.sc-5b3dfde0-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px;
    scrollbar-width: none; /* Firefox */
}
.sc-5b3dfde0-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.sc-5b3dfde0-item {
    flex: 0 0 calc(100% / var(--sc-columns) - 20px);
    scroll-snap-align: start;
    opacity: 1; /* Changed opacity to 1 so items aren't faded out by default unless hovered */
    transform: scale(0.95);
    transition: all 0.3s ease;
    border-radius: 10px;
    background-color: #f9f9f9;
}
.sc-5b3dfde0-item:hover {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.sc-5b3dfde0-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.sc-5b3dfde0-inner {
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.sc-5b3dfde0-image {
    margin-bottom: 20px;
}
.sc-5b3dfde0-image img {
    width: 100%;
    height: 200px; /* Default height */
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
.sc-5b3dfde0-title {
    margin: 0 0 10px;
    font-size: 20px;
    color: #111;
}
.sc-5b3dfde0-desc {
    margin: 0 0 20px;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}
.sc-5b3dfde0-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #111;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    align-self: center;
}

/* Arrow Navigation */
.sc-5b3dfde0-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #111;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}
.sc-5b3dfde0-arrow:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.sc-5b3dfde0-prev {
    left: 0;
}
.sc-5b3dfde0-next {
    right: 0;
}
/* Hide arrows on mobile typically, or adjust as needed */
@media (max-width: 768px) {
    .sc-5b3dfde0-arrow {
        display: none;
    }
}
