/* Safari tour fact table: lives inside the "The Journey" block (.tour-overview),
   under the overview text, over the gallery, in the content column beside the
   booking form. No ground and no header of its own: the short facts are cells
   in a grid with a hairline over each, the long lists (the countries, the
   parks) are hairline rows with chips. Fewer facts leave the last row shorter,
   never a hole. */

.sft-facts {
    margin: 40px 0 0;
    padding: 0;
}

/* The label: icon + small caps, shared by cells and lines */
.sft-facts__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(17,18,20,.55);
}
.sft-facts__label .sft-ic {
    width: 18px;
    height: 18px;
    color: #FF6A00;
    flex: 0 0 auto;
}

/* Cells: a hairline over each, the value large, no box */
.sft-facts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 28px;
    margin: 0;
}
.sft-facts__tile {
    border-top: 1px solid rgba(17,18,20,.18);
    padding: 16px 0 22px;
}
.sft-facts__value {
    margin: 8px 0 0;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #111214;
}

/* Lines: the label in the first column, the names as chips beside it */
.sft-facts__lines {
    margin: 0;
    display: flex;
    flex-direction: column;
}
.sft-facts__line {
    display: grid;
    grid-template-columns: minmax(140px, 180px) 1fr;
    gap: 10px 24px;
    align-items: center;
    border-top: 1px solid rgba(17,18,20,.18);
    padding: 16px 0 18px;
}
.sft-facts__list {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sft-facts__item {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(17,18,20,.16);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    color: #111214;
    background: #fff;
}

@media (max-width: 600px) {
    .sft-facts { margin-top: 32px; }
    .sft-facts__grid { grid-template-columns: repeat(2, 1fr); gap: 0 20px; }
    .sft-facts__tile { padding: 14px 0 18px; }
    .sft-facts__value { font-size: 19px; }
    .sft-facts__line { grid-template-columns: 1fr; gap: 8px; padding: 14px 0 16px; }
}
