/* ==========================================================================
   Iguazu Noticias — CTA panel

   The "Ready to make the day happen?" block that closes every guide page.

   Named .ig-cta-panel, not .ig-booking-panel: that class is already the
   landing's closing steps panel, a column flex with a different job. Two
   components, two names.
   ========================================================================== */

.ig-cta-panel {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-8);
    align-items: center;
    background: var(--surface-dark);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    box-shadow: var(--shadow-lift);
}

/* No photo uploaded yet: the copy takes the full width rather than leaving a
   dead column. */
.ig-cta-panel--no-media {
    grid-template-columns: 1fr;
}

.ig-cta-panel__copy {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    min-width: 0;
}

.ig-cta-panel__title {
    color: #fff;
    font-family: var(--font-display);
    font-weight: var(--weight-display);
    font-size: var(--text-2xl);
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-tight);
}

/* --------------------------------------------------------------------------
   What the day includes
   -------------------------------------------------------------------------- */

.ig-cta-panel__features {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ig-cta-panel__feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14.5px;
    color: var(--green-100);
}

.ig-cta-panel__tick {
    display: grid;
    place-items: center;
    flex: none;
    /* Line up with the first line of text, not with its box. */
    margin-top: 4px;
    color: var(--green-400);
}

/* --------------------------------------------------------------------------
   Price chips
   -------------------------------------------------------------------------- */

.ig-cta-panel__prices {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ig-cta-panel__price {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 9px 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.ig-cta-panel__price--featured {
    background: var(--green-400);
    border-color: transparent;
    color: var(--ink);
}

.ig-cta-panel__price-label {
    font-size: 11.5px;
    font-weight: var(--weight-semibold);
    opacity: 0.85;
    white-space: nowrap;
}

/* The weight used to come from <strong>; a <dd> is not bold, so it is pinned. */
.ig-cta-panel__price-value {
    font-family: var(--font-display);
    font-weight: var(--weight-display);
    font-size: 17px;
}

/* --------------------------------------------------------------------------
   Actions
   -------------------------------------------------------------------------- */

.ig-cta-panel__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.ig-cta-panel__link {
    color: var(--green-100);
}

.ig-cta-panel__link:hover {
    color: var(--green-400);
}

/* --------------------------------------------------------------------------
   Media
   -------------------------------------------------------------------------- */

.ig-cta-panel__media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 280px;
    min-width: 0;
}

.ig-cta-panel__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 960px) {
    .ig-cta-panel {
        grid-template-columns: 1fr;
        padding: var(--space-8) var(--space-6);
    }

    .ig-cta-panel__media {
        height: 220px;
    }
}
