/*
 * Card media restoration.
 *
 * The original cards did not put editorial/category labels on top of their
 * photographs. Keep the existing markup, metadata, and card dimensions, but
 * remove only those later presentation-layer overlays. Tour duration and
 * price metadata remain in their existing card body/metarow.
 */

/* Country/category ribbons added to safari cards are not part of the source
 * card treatment and obscure the image. */
.safari-card__img-link .safari-card__badge {
    display: none !important;
}

/* Remove the orange “From USD …” ribbon shown in the screenshot. The same
 * price remains available in the card metadata/body where that component
 * already renders it. */
.tour-card__thumb .tour-card__days-badge,
.tour-card__thumb .tour-card__price-badge {
    display: none !important;
}

/* The homepage's destination captions belong in the existing card body, not
 * as a white title pill or translucent label over the photograph. */
body.home .card-grid .dest-card__body h2,
body.home .card-grid .dest-card__body h2 a {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Keep the existing four-up homepage cards' caption panel below the image
 * even when an earlier visual layer tries to position it over the photo. */
body.home .card-grid .grid--4 .dest-card__body {
    position: static !important;
    inset: auto !important;
    background: #fff !important;
    box-shadow: none !important;
    color: var(--color-text, #1a1a1a) !important;
}

/* Top Travel Destinations uses the same card structure; keep its image clear
 * without changing the surrounding grid or card markup. */
body.home .home-destinations-section .dest-card__body {
    position: static !important;
    inset: auto !important;
    background: #fff !important;
    box-shadow: none !important;
}
