/* AMCO Features Bar – style.css */

.r4d-features-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 40px;
    box-sizing: border-box;
    width: 100%;
}

.r4d-has-shadow {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

/* ── Item ─────────────────────────────────────── */
.r4d-feat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 180px;
    min-width: 140px;
}

/* ── Icon box ─────────────────────────────────── */
.r4d-feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.r4d-feat-icon i,
.r4d-feat-icon svg {
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.r4d-feat-item:hover .r4d-feat-icon {
    transform: scale(1.08);
}

/* ── Text ─────────────────────────────────────── */
.r4d-feat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.r4d-feat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #9CA3AF;
    text-transform: uppercase;
    line-height: 1;
}

.r4d-feat-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

/* ── Divider between items ────────────────────── */
.r4d-feat-item:not(:last-child) {
    padding-right: 16px;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
    .r4d-features-bar {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .r4d-feat-item {
        flex: unset;
        width: 100%;
        padding-right: 0 !important;
        padding: 16px 0;
    }
    /* Swap right-padding divider for a bottom border */
    .r4d-feat-item:not(:last-child) {
        padding-right: 0;
        border-bottom: 1px solid #F3F4F6;
    }
}

@media (max-width: 480px) {
    .r4d-features-bar {
        padding: 14px 16px;
        border-radius: 14px;
    }
    .r4d-feat-icon { width: 42px; height: 42px; }
    .r4d-feat-title { font-size: 14px; }
}
