/* =====================================================================
   Category landing — "how do I find the right tour": the head runs the
   full width, the four questions sit below it as a 2x2 grid. Icons only,
   no photos: this block is a decision aid, not another gallery.

   The grid is what halves the block. Stacked in a 5fr/7fr right column
   each card still wrapped to four lines, so four cards ran ~690px; two
   rows of the same card run ~370px for the same words.
   ===================================================================== */

.cat-htc {
    /* Milk, not white: the review strip above is white, and two white sections
       in a row read as one. */
    background: #EDE3D5;
    padding: 72px 24px;
}

.cat-htc__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.cat-htc__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 36px;
}

.cat-htc__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF6A00;
    margin-bottom: 10px;
}

.cat-htc__h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #111214;
    margin: 0 0 14px;
}

.cat-htc__intro {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(17, 18, 20, 0.66);
    margin: 0;
    /* 60-75 characters stays readable even at the full 1140px */
    max-width: 62ch;
}

.cat-htc__outro {
    padding-top: 22px;
    border-top: 1px solid rgba(17, 18, 20, 0.12);
}

.cat-htc__outro-text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(17, 18, 20, 0.66);
    margin: 0 0 14px;
    max-width: 46ch;
}

.cat-htc__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border: 0;
    background: #FF6A00;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: opacity .18s;
}

.cat-htc__btn:hover { opacity: .88; }

.cat-htc__btn:focus-visible {
    outline: 2px solid #111214;
    outline-offset: 3px;
}

.cat-htc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    /* The 2px gap over a darker ground is the hairline between the cards */
    gap: 2px;
    background: rgba(17, 18, 20, 0.08);
    border: 1px solid rgba(17, 18, 20, 0.08);
}

.cat-htc__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #F7F2EA;
    padding: 20px 22px;
}

.cat-htc__icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 106, 0, 0.1);
    color: #FF6A00;
    font-size: 17px;
    border-radius: 50%;
}

.cat-htc__item-body { min-width: 0; }

.cat-htc__item-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #111214;
    margin: 0 0 6px;
}

.cat-htc__num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(17, 18, 20, 0.3);
    font-variant-numeric: tabular-nums;
}

.cat-htc__item-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(17, 18, 20, 0.62);
    margin: 0;
}

@media (min-width: 900px) {
    .cat-htc__head {
        grid-template-columns: 6fr 5fr;
        gap: 56px;
        align-items: end;
    }

    /* Beside the headline the rule reads better as a column edge than a lid */
    .cat-htc__outro {
        padding-top: 0;
        padding-left: 34px;
        border-top: 0;
        border-left: 1px solid rgba(17, 18, 20, 0.12);
    }

    .cat-htc__list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .cat-htc { padding: 56px 20px; }
    .cat-htc__item { padding: 18px 16px; gap: 14px; }
    .cat-htc__btn { width: 100%; }
}
