/* ========================================
   BREADCRUMB FEATURES - SIGNATURE THEME
   Horizontal scroll features section
   Uses similar pattern to packages-grid
   Primary color: #F56011 (Orange)
   ======================================== */

.feature-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Match header padding: 240px horizontal */
    margin-bottom: 40px;
    margin-top: 60px;
}

.feature-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.feature-scroll-wrapper .features {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}

.feature-scroll-wrapper .feature-item {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    background: #F7F7F8;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-scroll-wrapper .feature-item:hover {
    background: rgba(245, 96, 17, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 96, 17, 0.1);
}

.feature-scroll-wrapper .feature-item .icon {
    height: 60px;
    width: auto;
    margin: 0 auto 16px;
    display: block;
}

.feature-scroll-wrapper .feature-item h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #3D3D3D;
}

.feature-scroll-wrapper .feature-item p {
    margin: 0;
    font-size: 14px;
    color: #888888;
    line-height: 1.5;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Desktop: Show 4 items */
@media (min-width: 1024px) {
    .feature-scroll-wrapper .feature-item {
        flex: 0 0 calc((100% - 48px) / 4);
        min-width: calc((100% - 48px) / 4);
        max-width: calc((100% - 48px) / 4);
    }

    .feature-scroll-wrapper .features {
        gap: 16px;
    }
}

/* Tablet: Show 2 items */
@media (min-width: 768px) and (max-width: 1023px) {
    .feature-scroll-wrapper {
        padding: 0 40px 10px;
        /* Match header tablet padding */
        margin-top: 48px;
        margin-bottom: 32px;
    }

    .feature-scroll-wrapper .feature-item {
        flex: 0 0 calc((100% - 16px) / 2);
        min-width: calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
    }
}

/* Mobile: Show 1 item */
@media (max-width: 767px) {
    .feature-scroll-wrapper {
        padding: 0 16px 10px;
        /* Match header mobile padding */
        margin-top: 32px;
        margin-bottom: 24px;
    }

    .feature-scroll-wrapper .features {
        gap: 12px;
    }

    .feature-scroll-wrapper .feature-item {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }

    .feature-scroll-wrapper .feature-item h3 {
        font-size: 15px;
    }

    .feature-scroll-wrapper .feature-item p {
        font-size: 13px;
    }
}