/* ==========================================================================
   Iguazu Noticias — What's included
   Five white cards and two dashed orchid "optional" cards, in a fixed
   three-column grid. There was a photo cell as an eighth item; it was removed,
   so the last row now holds one card rather than two.
   ========================================================================== */

.ig-included__card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-press);
}

.ig-included__card--optional {
    background: transparent;
    border: 1.5px dashed var(--magenta-700);
    box-shadow: none;
}

.ig-included__optional-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

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

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

