.eh-travel-extras {
    --ehte-border:#d9dde3;
    --ehte-soft:#f5f7f9;
    --ehte-text:#14181f;
    --ehte-muted:#667085;
    --ehte-link:#a4101b;
    width:100%;
    overflow:hidden;
    margin-top:24px;
    border:1px solid var(--ehte-border);
    border-radius:14px;
    background:#fff;
    color:var(--ehte-text);
    font-family:inherit;
    box-sizing:border-box;
}
.eh-travel-extras * { box-sizing:border-box; }
.ehte-header {
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:flex-start;
    padding:22px 24px 18px;
}
.ehte-header h2 {
    margin:0;
    font-size:clamp(1.55rem,4vw,2.2rem);
    line-height:1.1;
}
.ehte-kicker {
    margin:0 0 6px;
    color:var(--ehte-muted);
    font-size:.72rem;
    font-weight:800;
    letter-spacing:.12em;
}
.ehte-subtitle {
    margin:6px 0 0;
    color:var(--ehte-muted);
}
.ehte-badge {
    flex:0 0 auto;
    padding:5px 10px;
    border-radius:999px;
    background:var(--ehte-soft);
    color:var(--ehte-muted);
    font-size:.8rem;
    font-weight:800;
}
.ehte-section { border-top:1px solid var(--ehte-border); }
.ehte-section-heading {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 24px;
    background:var(--ehte-soft);
    border-bottom:1px solid var(--ehte-border);
}
.ehte-section-heading h3 { margin:0; font-size:1rem; }
.ehte-section-heading span {
    color:var(--ehte-muted);
    font-size:.76rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.05em;
}
.ehte-body { padding:18px 24px 20px; }
.ehte-body > p:first-child { margin-top:0; }
.ehte-actions {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:14px 0 0;
}
.ehte-button {
    display:inline-flex;
    align-items:center;
    gap:3px;
    padding:9px 13px;
    border:1px solid var(--ehte-border);
    border-radius:8px;
    background:#fff;
    color:var(--ehte-link);
    font-weight:800;
    line-height:1.2;
    text-decoration:none !important;
}
.ehte-button:hover,
.ehte-button:focus { background:var(--ehte-soft); }
.ehte-note {
    margin:14px 0 0 !important;
    color:var(--ehte-muted);
    font-size:.82rem;
    line-height:1.5;
}
.ehte-facts {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    margin-bottom:16px;
}
.ehte-fact {
    padding:12px 14px;
    border:1px solid var(--ehte-border);
    border-radius:9px;
    background:#fff;
}
.ehte-fact span {
    display:block;
    margin-bottom:3px;
    color:var(--ehte-muted);
    font-size:.72rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
}
.ehte-fact strong { display:block; line-height:1.35; }
.ehte-community {
    margin-top:18px;
    padding:14px 16px;
    border-left:4px solid #667085;
    border-radius:8px;
    background:var(--ehte-soft);
}
.ehte-community > strong { display:block; margin-bottom:4px; }
.ehte-community p { margin:0 0 7px; color:var(--ehte-muted); font-size:.9rem; }
.ehte-text-link { color:var(--ehte-link); font-weight:800; text-decoration:none !important; }
.ehte-footer {
    display:flex;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    padding:11px 24px;
    border-top:1px solid var(--ehte-border);
    background:var(--ehte-soft);
    color:var(--ehte-muted);
    font-size:.76rem;
}
@media (max-width:700px) {
    .ehte-header { padding:18px 16px 14px; }
    .ehte-section-heading { padding:12px 16px; align-items:flex-start; }
    .ehte-body { padding:16px; }
    .ehte-facts { grid-template-columns:1fr; }
    .ehte-actions { flex-direction:column; align-items:stretch; }
    .ehte-button { justify-content:center; text-align:center; }
    .ehte-footer { padding:10px 16px; }
}
