/* "More from this Host" cross-reference tiles. Shared across Business,
   Event, and Experience detail pages. Each grouping has a colored chip
   header (BUSINESSES / EVENTS / EXPERIENCES / TRADING POST) and the items
   render as flex tiles with a thumbnail, title, optional meta line, and
   a trailing chevron that nudges right on hover.

   Per-color variants (--business / --event / --experience / --tradingpost)
   keep each category visually distinct without needing a separate template. */

.host-cross-group { margin-bottom: 1.25rem; }
.host-cross-group:last-child { margin-bottom: 0.25rem; }
.host-cross-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.625rem;
}

.host-cross-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid transparent;
}
.host-cross-chip--business { background: #dbeafe; color: #1d4ed8; border-color: #bfdbfe; }
.host-cross-chip--experience { background: #cffafe; color: #0e7490; border-color: #a5f3fc; }
.host-cross-chip--event { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.host-cross-chip--tradingpost { background: #fef3c7; color: #92400e; border-color: #fde68a; }

.host-cross-tile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    height: 100%;
}
.host-cross-tile:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.25rem 0.625rem rgba(0,0,0,0.07);
    color: inherit;
}

.host-cross-tile__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-size: 0.95rem;
    overflow: hidden;
}
.host-cross-tile__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.host-cross-tile--business .host-cross-tile__icon { background: #dbeafe; color: #1d4ed8; }
.host-cross-tile--experience .host-cross-tile__icon { background: #cffafe; color: #0e7490; }
.host-cross-tile--event .host-cross-tile__icon { background: #dcfce7; color: #166534; }
.host-cross-tile--tradingpost .host-cross-tile__icon { background: #fef3c7; color: #92400e; }

.host-cross-tile--business:hover { border-color: #93c5fd; }
.host-cross-tile--experience:hover { border-color: #67e8f9; }
.host-cross-tile--event:hover { border-color: #86efac; }
.host-cross-tile--tradingpost:hover { border-color: #fcd34d; }

.host-cross-tile__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.host-cross-tile__title {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.host-cross-tile__meta {
    font-size: 0.75rem;
    color: #6c757d;
}

.host-cross-tile__chevron {
    color: #adb5bd;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.15s ease;
}
.host-cross-tile:hover .host-cross-tile__chevron {
    transform: translateX(2px);
    color: #495057;
}
