/* Safari tour "Tierwelt + Highlights der Reise" section. Header row: title
   left, lede right. Then the Big Five as five silhouette cards across the
   full width: an animal the itinerary names stands in ink on a white paper
   card, rising above its top edge onto an orange ground line, with an orange
   check; one it doesn't is a faint shadow on a dashed line and no card at
   all. The other animals run as one line of names. Below, the highlights
   bookshelf (tour-highlights.css/.js) on the same milk topo ground. */

.sft-wild {
    background: #F5EDDE url('/images/backgrounds/6a0acbec-9e6a-463e-a7e9-0ae96154faa9.webp') center / cover no-repeat;
    border-top: 1px solid rgba(17,18,20,.08);
    padding: 72px 24px;
}
.sft-wild__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.sft-wild__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 46ch);
    gap: 24px 48px;
    align-items: end;
}
.sft-wild__eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #FF6A00;
    margin-bottom: 14px;
}
.sft-wild__h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #111214;
    margin: 0;
}
.sft-wild__lede {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(17,18,20,.62);
    margin: 0;
}

.sft-wild__body { display: flex; flex-direction: column; gap: 28px; }

/* app_r_min.css styles every li (centered, pointer, orange on hover,
   4px bottom margin): reset that for the cards and the name line here. */
.sft-wild li { text-align: left; margin: 0; cursor: default; font-size: inherit; transition: none; }
.sft-wild li:hover { color: inherit; }

/* Big Five */
.sft-wild__five-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(17,18,20,.12);
}
.sft-wild__five-title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #111214;
}
.sft-wild__five-sub {
    font-size: 13px;
    font-weight: 500;
    color: rgba(17,18,20,.5);
}
.sft-wild__five-sub b {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #FF6A00;
    margin-right: 2px;
}
.sft-wild__five-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.sft-wild__card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 26px;               /* room for the animal to rise above the card */
    padding: 0 14px 12px;
    border-radius: 4px;
    color: rgba(17,18,20,.42);
}
/* Named in the itinerary: a paper card, the animal in ink on an orange ground line */
.sft-wild__card.is-on {
    background: #fff;
    border: 1px solid #e2ddd4;
    color: rgba(17,18,20,.62);
}
/* Not on this route: no card, the animal as a faint shadow on a dashed ground line */
.sft-wild__card-art {
    display: block;
    height: 96px;
    margin: -26px 0 8px;
    padding: 0 4px;
    border-bottom: 1px dashed rgba(17,18,20,.28);
    color: rgba(17,18,20,.14);
}
.sft-wild__card.is-on .sft-wild__card-art {
    border-bottom: 2px solid #FF6A00;
    color: #111214;
}
.sft-an { display: block; width: 100%; height: 100%; }
.sft-wild__card-name {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.2;
    color: rgba(17,18,20,.42);
}
.sft-wild__card.is-on .sft-wild__card-name { color: #111214; }
.sft-wild__card-state {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 2px;
}
.sft-wild__card-mark {
    flex: none;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid currentColor;
    color: inherit;
}
.sft-wild__card.is-on .sft-wild__card-mark { background: #FF6A00; border-color: #FF6A00; color: #fff; }
.sft-wild__card-mark .sft-ic { width: 12px; height: 12px; stroke-width: 2.4; }
.sft-wild__card-dash { display: block; width: 7px; height: 1px; background: currentColor; }
.sft-wild__card-note {
    font-size: 11px;
    line-height: 1.3;
    color: inherit;
}

/* The others, one line of names */
.sft-wild__more-title {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(17,18,20,.5);
    margin-bottom: 8px;
}
.sft-wild__line {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    row-gap: 4px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.4;
    color: #111214;
}
.sft-wild__line-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FF6A00;
    margin: 0 12px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

/* The highlights shelf, below the animals on the same ground. Its own
   rules (tour-highlights.css) size the books and the cover; here only the
   seam above it. */
.sft-wild__shelf {
    padding-top: 40px;
    border-top: 1px solid rgba(17,18,20,.12);
}
.sft-wild__body + .sft-wild__shelf { margin-top: -8px; }

@media (max-width: 1024px) {
    .sft-wild__five-list { gap: 8px; }
    .sft-wild__card { padding: 0 12px 10px; }
    .sft-wild__card-art { height: 72px; }
    .sft-wild__card-name { font-size: 15px; }
}
@media (max-width: 900px) {
    .sft-wild__inner { gap: 28px; }
    .sft-wild__header { grid-template-columns: 1fr; gap: 12px; align-items: start; }
    .sft-wild__five-list { grid-template-columns: repeat(3, 1fr); }
    .sft-wild__shelf { padding-top: 28px; }
}
@media (max-width: 600px) {
    .sft-wild { padding: 48px 20px; }
    .sft-wild__five-list { grid-template-columns: repeat(2, 1fr); }
    .sft-wild__line { font-size: 15px; }
    .sft-wild__line-item:not(:last-child)::after { margin: 0 9px; }
}
