/* ─────────────────────────────────────────────────────────────
   MRKTMAP — Travel Affiliate Rows
   Subtle additions inside existing info-card panels
───────────────────────────────────────────────────────────── */

/* Dividing line — matches the visual language of the card system */
.info-card-divider {
    border: none;
    border-top: 1px solid var(--border-soft);
    margin: 1rem 0;
}

/* Travel row — mirrors .organiser-brand exactly */
.travel-row {
    display: flex;
    align-items: center;
    gap: .85rem;
}

/* Icon box — identical dimensions/radius to .organiser-avatar */
.travel-row-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--green-bg);
    border: 1px solid var(--border-soft);
}

/* Body — mirrors .organiser-meta */
.travel-row-meta {
    flex: 1;
    min-width: 0;
}

/* Label — mirrors .organiser-name */
.travel-row-label {
    font-size: .95rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.3;
}

/* Sub-line — mirrors .organiser-link */
.travel-row-link {
    display: inline-block;
    margin-top: .15rem;
    font-size: .8rem;
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
}
.travel-row-link:hover {
    text-decoration: underline;
}


/* ── Hotels section (below map, full-width) ───────────────── */

.travel-hotels-section {
    margin-top: 2rem;
}

.travel-hotels-intro {
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.travel-hotel-featured {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

/* Logo slot — white background, fixed dimensions, no tint */
.travel-hotel-logo-slot {
    width: 120px;
    height: 52px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border-soft);
    padding: 6px 10px;
    overflow: hidden;
}

/* Logo image — contained within slot, preserves aspect ratio */
.affiliate-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Featured card — icon slot alias (keeps old class working) */
.travel-hotel-featured-icon {
    width: 120px;
    height: 52px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border-soft);
    padding: 6px 10px;
    overflow: hidden;
}

.travel-hotel-featured-body {
    flex: 1;
    min-width: 140px;
}

.travel-hotel-featured-label {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: var(--forest);
}

.travel-hotel-featured-note {
    margin-top: .2rem;
    font-size: .82rem;
    color: var(--muted);
}

.travel-hotel-secondary {
    display: flex;
    align-items: center;
    gap: .5rem 1rem;
    flex-wrap: wrap;
    margin-top: .75rem;
    padding: .5rem .25rem;
}

.travel-hotel-secondary-label {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}

.travel-hotel-alt-link {
    font-size: .82rem;
    color: var(--forest-mid);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--green-pale);
    padding-bottom: 1px;
    transition: color .15s, border-color .15s;
}
.travel-hotel-alt-link:hover {
    color: var(--green);
    border-color: var(--green);
}


/* ── Proximity brand cards ────────────────────────────────── */

/* Grid wrapper — matches .events-grid column sizing */
.travel-hotel-proximity {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Cards inherit all .event-card styles — only affililate-specific additions here */
.travel-proximity-card {
    text-decoration: none;
    color: inherit;
}

/* Logo strip — sits above card-title in card-body */
.travel-proximity-logo {
    margin-bottom: .75rem;
}

.travel-proximity-logo .affiliate-logo {
    height: 28px;
    width: auto;
}

/* Property photo — fills card-image exactly like market/event images */
.affiliate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, opacity .2s ease;
}

.travel-proximity-card:hover .affiliate-img {
    transform: scale(1.03);
}


/* ── LateRooms bar — sits below proximity cards ───────────── */

.travel-hotel-laterooms {
    margin-top: 1.5rem;
}

@media (max-width: 640px) {
    .travel-hotel-featured {
        flex-direction: column;
        align-items: flex-start;
    }
    .travel-hotel-featured .btn {
        width: 100%;
        text-align: center;
    }
    .travel-hotel-featured-icon,
    .travel-hotel-logo-slot {
        width: 100px;
        height: 44px;
    }
    .travel-hotel-proximity {
        gap: 1rem;
    }
}