.sc-wrapper-aedbf344 {
    padding: 80px 20px;
    background-color: #fff;
    color: #1a1a1a;
    font-family: inherit;
}

.sc-header-aedbf344 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.sc-title-aedbf344 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sc-intro-aedbf344 {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.6;
}

.sc-cards-container-aedbf344 {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    /* Prevent vertical scrolling side effects */
    overflow-y: hidden;
}

.sc-card-aedbf344 {
    flex: 1 1 calc(25% - 18px); /* 4 cols minus gap adjustments */
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sc-card-aedbf344:hover {
    transform: translateY(-5px);
}

.sc-card-image-wrapper-aedbf344 {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #f5f5f5;
}

.sc-card-image-wrapper-aedbf344 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sc-card-aedbf344:hover .sc-card-image-wrapper-aedbf344 img {
    transform: scale(1.05);
}

.sc-card-title-aedbf344 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
    line-height: 1.3;
}

.sc-card-desc-aedbf344 {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Tablet & Mobile: Horizontally Swipeable */
@media (max-width: 1024px) {
    .sc-cards-container-aedbf344 {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE and Edge */
    }
    
    .sc-cards-container-aedbf344::-webkit-scrollbar {
        display: none;
    }
    
    .sc-card-aedbf344 {
        flex: 0 0 calc(50% - 12px); /* 2 cards visible */
        scroll-snap-align: start;
    }
}

@media (max-width: 767px) {
    .sc-wrapper-aedbf344 {
        padding: 60px 15px;
    }
    
    .sc-title-aedbf344 {
        font-size: 2.25rem;
    }
    
    .sc-card-aedbf344 {
        flex: 0 0 85%; /* 1 card visible with a peek of the next */
    }
}