/* ==========================================================================
   Iguazu Noticias — Logistics
   Four friction cards with drifting icon chips, plus the cruise callout.
   ========================================================================== */

.ig-logistics__card {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-xl);
    padding: 22px;
    box-shadow: var(--shadow-press);
}

.ig-logistics__body {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ig-logistics__title {
    font-family: var(--font-display);
    font-size: 16.5px;
}

.ig-logistics__text {
    font-size: 14px;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Floating chips

   Staggered by position rather than by an inline animation-delay, so the CSS
   owns the motion and the reduced-motion switch in base.css can stop all of it.
   -------------------------------------------------------------------------- */

.ig-floaty {
    animation: ig-float 4.5s ease-in-out infinite alternate;
}

.ig-grid4 > :nth-child(2) .ig-floaty { animation-delay: 0.7s; }
.ig-grid4 > :nth-child(3) .ig-floaty { animation-delay: 1.4s; }
.ig-grid4 > :nth-child(4) .ig-floaty { animation-delay: 2.1s; }

@keyframes ig-float {
    from { transform: translateY(0); }
    to   { transform: translateY(-4px); }
}

/* The cruise callout's own rules moved to components/callout.css when the How
   to Plan guide needed callouts of its own. This section renders
   .ig-callout.ig-callout--cruise; nothing about it lives here any more. */
