/* TubHotels City Information card */

.thci-heading {
    max-width: 610px;
    margin: 0 auto 10px;
    font-size: 18px;
    line-height: 1.3;
    color: #222;
}

.thci-box {
    background: #ffffff;
    border: 0.5px solid rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 14px 16px;
    /* font-family: 'Roboto', -apple-system, sans-serif; */
    color: #222;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    box-sizing: border-box;
    max-width: 610px;
    margin: 0 auto 24px;
}
.thci-box * { box-sizing: border-box; }

.thci-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px 16px;
}
.thci-stat {
    border-left: 3px solid #f1a502;
    padding-left: 10px;
    min-width: 0;
}
.thci-stat-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 3px;
    line-height: 1.3;
}
.thci-stat-val {
    font-size: 14.5px;
    font-weight: 600;
    color: #222;
    line-height: 1.1;
    margin-bottom: 2px;
    white-space: nowrap;
}
.thci-stat-sub {
    font-size: 11px;
    font-weight: 400;
    color: #6b6b6b;
    line-height: 1.3;
}

.thci-divider {
    border-top: 1px dashed rgba(0,0,0,0.18);
    margin: 14px 0 14px;
}

.thci-neighborhoods-title {
    font-size: 9.6px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 7px;
}

.thci-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.thci-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    padding: 3.5px 9.3px;
    border-radius: 999px;
    color: #0d2e30;
    background: #f5ede0;
    white-space: nowrap;
}
.thci-pill.thci-premium {
    background: #0d7377;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 520px) {
    .thci-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
