/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 19 2026 | 18:28:21 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

.custom-carousel-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    gap: 15px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 5px;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 calc(50% - 15px);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #D5D5D5;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.carousel-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.carousel-btn {
    background-color: #349980;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.2s;
    box-shadow: 0 4px 10px rgba(52, 153, 128, 0.3);
}

.carousel-btn:hover {
    background-color: #2a7a66;
    transform: scale(1.05);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .carousel-card {
        flex: 0 0 100%; 
    }
    .custom-carousel-container {
        position: relative;
    }
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    .carousel-btn.prev {
        left: -15px;
    }
    .carousel-btn.next {
        right: -15px;
    }
    .carousel-btn:hover {
        transform: translateY(-50%) scale(1.05);
    }
}