/* ==========================================================================
   Tour Management — main stylesheet
   All styling lives here as reusable classes. No inline CSS in Blade views.
   Works for both LTR (en) and RTL (ar); RTL handled via [dir=rtl] overrides.
   ========================================================================== */

:root {
    --tm-primary: #0b4f52;
    --tm-primary-dark: #4338ca;
    --tm-primary-light: #eef0ff;
    --tm-sidebar-bg: #ffffff;
    --tm-bg: #f5f6fa;
    --tm-text: #1f2330;
    --tm-muted: #8a90a2;
    --tm-border: #e8eaf0;
    --tm-green: #16a34a;
    --tm-amber: #d97706;
    --tm-red: #dc2626;
    --tm-radius: 12px;
    --tm-shadow: 0 1px 3px rgba(16, 24, 40, .06), 0 1px 2px rgba(16, 24, 40, .04);
}

* { box-sizing: border-box; }

body.tm-body {
    margin: 0;
    background: var(--tm-bg);
    color: var(--tm-text);
    font-family: "Segoe UI", Tahoma, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
}

body[dir="rtl"].tm-body {
    font-family: "Segoe UI", Tahoma, "Cairo", "Helvetica Neue", Arial, sans-serif;
}

a { color: var(--tm-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- App shell ---------- */
.tm-app { display: flex; min-height: 100vh; }

.tm-sidebar {
    width: 230px;
    background: var(--tm-sidebar-bg);
    border-inline-end: 1px solid var(--tm-border);
    padding: 18px 12px;
    flex-shrink: 0;
}

.tm-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--tm-primary);
    padding: 6px 10px 18px;
}

.tm-nav { list-style: none; padding: 0; margin: 0; }
.tm-nav li { margin-bottom: 2px; }
.tm-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--tm-text);
    font-weight: 500;
}
.tm-nav a:hover { background: var(--tm-bg); text-decoration: none; }
.tm-nav a.active { background: var(--tm-primary); color: #fff; }

.tm-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.tm-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 24px;
    background: #fff;
    border-bottom: 1px solid var(--tm-border);
}
.tm-topbar .tm-title { font-size: 18px; font-weight: 700; margin: 0; }
.tm-topbar-right { display: flex; align-items: center; gap: 14px; }

.tm-content { padding: 24px; flex: 1; }

/* ---------- Cards / panels ---------- */
.tm-card {
    background: #fff;
    border: 1px solid var(--tm-border);
    border-radius: var(--tm-radius);
    box-shadow: var(--tm-shadow);
    padding: 18px;
    margin-bottom: 20px;
}
.tm-card-title { font-size: 15px; font-weight: 700; margin: 0 0 14px; }

/* ---------- Stat cards ---------- */
.tm-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 20px; }
.tm-stat { background: #fff; border: 1px solid var(--tm-border); border-radius: var(--tm-radius); padding: 16px 18px; box-shadow: var(--tm-shadow); }
.tm-stat-label { color: var(--tm-muted); font-size: 12px; margin-bottom: 6px; }
.tm-stat-value { font-size: 24px; font-weight: 700; }
.tm-stat-sub { font-size: 12px; margin-top: 4px; }
.tm-up { color: var(--tm-green); }
.tm-down { color: var(--tm-red); }

/* ---------- Tables ---------- */
.tm-table { width: 100%; border-collapse: collapse; }
.tm-table th, .tm-table td { padding: 11px 12px; text-align: start; border-bottom: 1px solid var(--tm-border); }
.tm-table th { color: var(--tm-muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }
.tm-table tbody tr:hover { background: var(--tm-bg); }
.tm-table-wrap { overflow-x: auto; }
.tm-num { font-variant-numeric: tabular-nums; }
.tm-text-end { text-align: end; }

/* ---------- Badges ---------- */
.tm-badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.tm-badge-green { background: #e7f6ec; color: var(--tm-green); }
.tm-badge-amber { background: #fdf0db; color: var(--tm-amber); }
.tm-badge-red { background: #fdecec; color: var(--tm-red); }
.tm-badge-gray { background: #eef0f4; color: var(--tm-muted); }
.tm-badge-blue { background: #e7ecfd; color: var(--tm-primary); }

/* ---------- Buttons ---------- */
.tm-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    background: var(--tm-bg);
    color: var(--tm-text);
}
.tm-btn:hover { text-decoration: none; filter: brightness(.97); }
.tm-btn-primary { background: var(--tm-primary); color: #fff; }
.tm-btn-outline { background: #fff; border-color: var(--tm-border); }
.tm-btn-danger { background: var(--tm-red); color: #fff; }
.tm-btn-sm { padding: 5px 10px; font-size: 12px; }
.tm-btn-busy { opacity: .6; cursor: wait; }

/* ---------- Forms ---------- */
.tm-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.tm-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.tm-field label { font-size: 13px; font-weight: 600; color: var(--tm-text); }
.tm-input, .tm-select, .tm-textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--tm-border);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: var(--tm-text);
}
.tm-input:focus, .tm-select:focus, .tm-textarea:focus {
    outline: none;
    border-color: var(--tm-primary);
    box-shadow: 0 0 0 3px rgba(91, 80, 230, .12);
}
.tm-textarea { min-height: 80px; resize: vertical; }
.tm-checkbox-row { display: flex; align-items: center; gap: 8px; }
.tm-form-actions { display: flex; gap: 10px; margin-top: 10px; }
.tm-help { font-size: 12px; color: var(--tm-muted); }

/* ---------- Alerts ---------- */
.tm-alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 13px; }
.tm-alert-success { background: #e7f6ec; color: var(--tm-green); }
.tm-alert-error { background: #fdecec; color: var(--tm-red); }
.tm-alert-info { background: #e7ecfd; color: var(--tm-primary); }

/* Suggest-only smart default chip */
.tm-suggest { background: #fff7e6; border: 1px dashed var(--tm-amber); color: var(--tm-amber); padding: 8px 12px; border-radius: 8px; font-size: 12px; display: inline-flex; gap: 8px; align-items: center; margin-bottom: 8px; }

/* ---------- Layout helpers ---------- */
.tm-row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.tm-flex { display: flex; gap: 12px; align-items: center; }
.tm-flex-wrap { flex-wrap: wrap; }
/* Align a button row to the bottom of taller labeled fields. */
.tm-flex-end { align-items: flex-end; }
.tm-flex-end .tm-field { margin-bottom: 0; }
.tm-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tm-mt { margin-top: 16px; }
.tm-mb { margin-bottom: 16px; }
.tm-muted { color: var(--tm-muted); }
.tm-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--tm-border); margin-bottom: 18px; }
.tm-tab { padding: 10px 16px; font-weight: 600; color: var(--tm-muted); border-bottom: 2px solid transparent; }
.tm-tab.active { color: var(--tm-primary); border-bottom-color: var(--tm-primary); }

.tm-lang-switch a { padding: 4px 8px; border-radius: 6px; font-size: 12px; }
.tm-lang-switch a.active { background: var(--tm-primary); color: #fff; }
.tm-lang-switch.tm-center { justify-content: center; }
.tm-w-full { width: 100%; }

.tm-pagination { margin-top: 16px; }

/* Itinerary sub-sections */
.tm-subcard { background: var(--tm-bg); border: 1px solid var(--tm-border); border-radius: 10px; padding: 14px; }
.tm-subcard > strong { display: block; margin-bottom: 8px; font-size: 14px; }
.tm-itin-list { margin: 0 0 12px; padding-inline-start: 18px; font-size: 13px; }
.tm-itin-list li { margin-bottom: 4px; }

/* ---------- Brand / initials logo ---------- */
.tm-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a7a45, #0f3d22);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .5px;
    flex-shrink: 0;
}
.tm-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.tm-brand-name { font-weight: 800; font-size: 17px; color: var(--tm-primary); }
.tm-brand-sub { font-size: 11px; font-weight: 500; color: var(--tm-muted); }
.tm-nav-icon {
    width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tm-muted);
    transition: color .15s ease;
}
.tm-nav-svg { display: block; }
.tm-nav a:hover .tm-nav-icon { color: var(--tm-primary); }
.tm-nav a.active .tm-nav-icon { color: #fff; }

.tm-user-chip { display: inline-flex; align-items: center; gap: 8px; }
.tm-user-avatar {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--tm-primary); color: #fff; font-weight: 700; font-size: 13px;
}

/* ---------- Auth ---------- */
.tm-auth { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--tm-bg); }
.tm-auth-card { width: 380px; max-width: 92vw; background: #fff; border-radius: var(--tm-radius); box-shadow: var(--tm-shadow); padding: 32px; }
.tm-auth-brand { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--tm-primary); font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.tm-auth-logo {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, #1a7a45, #0f3d22);
    color: #fff; font-weight: 800; font-size: 16px;
}
.tm-auth-sub { text-align: center; color: var(--tm-muted); margin-bottom: 24px; }

@media (max-width: 800px) {
    .tm-sidebar { display: none; }
    .tm-grid-2 { grid-template-columns: 1fr; }
}

/* ---------- PDF documents ---------- */
.pdf-body { font-family: DejaVu Sans, sans-serif; color: #1f2330; font-size: 12px; }
.pdf-header { display: flex; justify-content: space-between; border-bottom: 2px solid #5b50e6; padding-bottom: 10px; margin-bottom: 16px; }
.pdf-title { font-size: 20px; font-weight: bold; color: #5b50e6; }
.pdf-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.pdf-table th, .pdf-table td { border: 1px solid #ddd; padding: 7px 9px; text-align: left; }
.pdf-table th { background: #f3f4f8; }
.pdf-total { font-weight: bold; }
.pdf-muted { color: #888; }
.pdf-mt { margin-top: 18px; }

/* ---------- New-booking: form + live quote ---------- */
.tm-alert-warning { background: #fef6e7; color: var(--tm-amber); }
.tm-hint { display: block; color: var(--tm-muted); font-size: 12px; margin-top: 4px; }

.tm-booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 20px; align-items: start; }
@media (max-width: 1100px) { .tm-booking-layout { grid-template-columns: 1fr; } }

.tm-quote { position: sticky; top: 20px; }
.tm-quote-lines td { padding: 8px 4px; font-size: 13px; border-bottom: 1px solid var(--tm-border); }
.tm-quote-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 4px; }
.tm-quote-total { border-top: 2px solid var(--tm-border); margin-top: 4px; font-size: 15px; }
.tm-quote-total strong { color: var(--tm-primary); }


/* ---------- Phase 2: public site (clean minimal, green + gold) ---------- */
:root {
    --tm-pub-green: #0b4f52;
    --tm-pub-green-d: #083a3c;
    --tm-pub-gold: #c8a24a;
    --tm-pub-gold-d: #b08c34;
    --tm-pub-ink: #1f2330;
    --tm-pub-soft: #6b7280;
}
.tm-public-body { background: #fff; color: var(--tm-pub-ink); margin: 0; font-size: 16px; }
.tm-public-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Header */
.tm-public-header { background: #fff; border-bottom: 1px solid #eef0f2; padding: 18px 0; position: relative; z-index: 5; }
.tm-public-brand { font-size: 20px; font-weight: 700; color: var(--tm-pub-green); text-decoration: none; letter-spacing: .2px; }
.tm-public-header .tm-lang-switch a { color: var(--tm-pub-soft); }
.tm-public-header .tm-lang-switch a.active { color: var(--tm-pub-green); font-weight: 600; }
.tm-has-hero .tm-public-header { position: absolute; top: 0; left: 0; right: 0; background: transparent; border-bottom: none; }
.tm-has-hero .tm-public-header .tm-public-brand,
.tm-has-hero .tm-public-header .tm-lang-switch a { color: #fff; }
.tm-has-hero .tm-public-header .tm-lang-switch a.active { color: #fff; text-decoration: underline; }

/* Hero — minimal, deep green with a thin gold rule under the title */
.tm-hero { position: relative; min-height: 72vh; display: flex; align-items: center; justify-content: center; text-align: center;
    background-color: var(--tm-pub-green-d); background-size: cover; background-position: center; color: #fff; }
.tm-hero-inner { padding: 90px 24px 60px; max-width: 760px; }
.tm-hero-eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 3px; font-size: 12px; color: var(--tm-pub-gold); margin-bottom: 18px; }
.tm-hero-title { font-size: clamp(36px, 6vw, 62px); font-weight: 800; margin: 0; line-height: 1.1; }
.tm-hero-title::after { content: ""; display: block; width: 64px; height: 3px; background: var(--tm-pub-gold); margin: 20px auto 0; }
.tm-hero-sub { font-size: clamp(16px, 2.4vw, 22px); margin: 22px 0 32px; color: rgba(255,255,255,.88); font-weight: 400; }
.tm-hero-cta { display: inline-block; padding: 13px 40px; background: var(--tm-pub-gold); color: #fff; border-radius: 4px; text-decoration: none; font-weight: 600; letter-spacing: .3px; transition: background .15s ease; }
.tm-hero-cta:hover { background: var(--tm-pub-gold-d); color: #fff; }

/* Section heading */
.tm-section-head { text-align: center; padding: 64px 0 8px; }
.tm-section-heading { font-size: clamp(26px, 4vw, 36px); color: var(--tm-pub-ink); margin: 0 0 10px; font-weight: 700; }
.tm-section-heading::after { content: ""; display: block; width: 48px; height: 3px; background: var(--tm-pub-gold); margin: 14px auto 0; }

/* Filters */
.tm-public-filters { display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end; justify-content: center; margin: 28px auto 36px; max-width: 720px; }
.tm-public-filters .tm-field { margin: 0; }
.tm-field-actions { display: flex; gap: 8px; }

/* Tour cards — clean, gold top accent */
.tm-public-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; padding-bottom: 8px; }
.tm-public-card { display: flex; flex-direction: column; justify-content: space-between; background: #fff; border: 1px solid #eceef1; border-radius: 8px; text-decoration: none; color: inherit; overflow: hidden; transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease; }
.tm-public-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(16,24,40,.10); border-color: #e2e5e9; }
.tm-public-card-accent { height: 4px; background: var(--tm-pub-gold); }
.tm-public-card-body { padding: 22px 22px 10px; }
.tm-public-card-title { margin: 0 0 4px; font-size: 19px; color: var(--tm-pub-green); font-weight: 700; }
.tm-public-card-dest { font-size: 14px; }
.tm-public-card-meta { display: flex; flex-direction: column; gap: 5px; margin-top: 14px; font-size: 13px; color: var(--tm-pub-soft); }
.tm-public-card-foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; border-top: 1px solid #f0f1f3; }
.tm-public-seats { font-size: 13px; color: var(--tm-pub-green); font-weight: 600; }
.tm-public-price { font-weight: 700; color: var(--tm-pub-ink); }
.tm-public-empty { grid-column: 1 / -1; text-align: center; padding: 56px 0; }

/* Detail page */
.tm-public-back { display: inline-block; margin: 28px 0 10px; color: var(--tm-pub-green); text-decoration: none; font-weight: 500; }
.tm-public-detail-head { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; align-items: flex-start; margin-bottom: 24px; }
.tm-public-detail-head h1 { margin: 0 0 6px; color: var(--tm-pub-ink); }
.tm-public-price-box { background: #fff; border: 1px solid #eceef1; border-top: 4px solid var(--tm-pub-gold); border-radius: 8px; padding: 18px 26px; text-align: center; min-width: 210px; }
.tm-public-price-lg { font-size: 27px; font-weight: 800; color: var(--tm-pub-green); margin: 2px 0; }
.tm-sm { font-size: 12px; }
.tm-public-section-title { margin: 34px 0 16px; font-size: 22px; color: var(--tm-pub-ink); }
.tm-public-itinerary { display: flex; flex-direction: column; gap: 14px; }
.tm-public-day { display: flex; gap: 20px; background: #fff; border: 1px solid #eceef1; border-radius: 8px; padding: 18px 22px; }
.tm-public-day-num { flex: 0 0 auto; font-weight: 700; color: var(--tm-pub-gold-d); white-space: nowrap; }
.tm-public-day-body { flex: 1; }
.tm-public-day-body h4 { margin: 0 0 4px; color: var(--tm-pub-ink); }
.tm-public-day-list { margin: 10px 0 0; padding-inline-start: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; font-size: 14px; }
.tm-day-tag { display: inline-block; min-width: 78px; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--tm-pub-soft); font-weight: 600; }
.tm-public-cta { margin-top: 32px; text-align: center; background: #f7f8f9; border: 1px solid #eceef1; border-radius: 8px; padding: 28px; }
.tm-public-cta h3 { color: var(--tm-pub-green); margin: 0 0 6px; }

/* Footer — deep green, minimal */
.tm-public-footer { margin-top: 72px; padding: 52px 0 24px; background: var(--tm-pub-green-d); color: #d7dedf; }
.tm-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.tm-footer-col h4 { color: #fff; margin: 0 0 16px; font-size: 16px; font-weight: 600; }
.tm-footer-col h4::after { content: ""; display: block; width: 30px; height: 2px; background: var(--tm-pub-gold); margin-top: 10px; }
.tm-footer-about { color: #b7c2c3; line-height: 1.8; max-width: 420px; }
.tm-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; color: #b7c2c3; }
.tm-footer-list a { color: #b7c2c3; text-decoration: none; }
.tm-footer-list a:hover { color: var(--tm-pub-gold); }
.tm-footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.10); color: #8fa0a1; font-size: 13px; text-align: center; }

@media (max-width: 900px) {
    .tm-footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 600px) {
    .tm-public-detail-head { flex-direction: column; }
    .tm-public-day { flex-direction: column; gap: 8px; }
}

/* ---------- Phase 2: images + services ---------- */
.tm-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 28px 0 8px; }
.tm-service-card { background: #fff; border: 1px solid #eceef1; border-radius: 8px; overflow: hidden; transition: transform .12s ease, box-shadow .12s ease; }
.tm-service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(16,24,40,.10); }
.tm-service-img { height: 150px; background-size: cover; background-position: center; }
.tm-service-body { padding: 18px 18px 22px; }
.tm-service-body h3 { margin: 0 0 6px; font-size: 17px; color: var(--tm-pub-green); }
.tm-service-body p { margin: 0; font-size: 14px; line-height: 1.6; }

/* Tour card image */
.tm-public-card-img { height: 170px; background-size: cover; background-position: center; }
.tm-public-card .tm-public-card-accent { display: none; } /* image replaces the gold bar */

/* Detail banner */
.tm-detail-banner { height: 320px; border-radius: 0 0 10px 10px; background-color: var(--tm-pub-green-d); background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 28px; margin-bottom: 8px; }
.tm-detail-banner-title { color: #fff; font-size: clamp(28px, 5vw, 46px); font-weight: 800; margin: 0; text-shadow: 0 2px 14px rgba(0,0,0,.35); }

@media (max-width: 900px) {
    .tm-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .tm-services-grid { grid-template-columns: 1fr; }
    .tm-detail-banner { height: 220px; }
}

/* ---------- Phase 2: About section ---------- */
.tm-about { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin: 64px 0 8px; }
.tm-about-media { min-height: 360px; border-radius: 10px; background-size: cover; background-position: center; box-shadow: 0 12px 30px rgba(16,24,40,.12); }
.tm-about-eyebrow { color: var(--tm-pub-gold-d); }
.tm-about-title { font-size: clamp(24px, 3.2vw, 34px); color: var(--tm-pub-ink); margin: 10px 0 16px; font-weight: 700; line-height: 1.2; }
.tm-about-text > p { color: var(--tm-pub-soft); line-height: 1.8; margin: 0 0 22px; }
.tm-about-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.tm-about-list li { display: flex; flex-direction: column; gap: 3px; padding-inline-start: 18px; border-inline-start: 3px solid var(--tm-pub-gold); }
.tm-about-list strong { color: var(--tm-pub-green); font-size: 15px; }
.tm-about-list span { font-size: 14px; line-height: 1.6; }

@media (max-width: 800px) {
    .tm-about { grid-template-columns: 1fr; gap: 28px; }
    .tm-about-media { min-height: 240px; }
}

/* ---------- Phase 2: header nav + login link ---------- */
.tm-public-nav { display: flex; align-items: center; gap: 18px; }
.tm-login-link { padding: 7px 18px; border-radius: 4px; background: var(--tm-pub-gold); color: #fff; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .15s ease; }
.tm-login-link:hover { background: var(--tm-pub-gold-d); color: #fff; text-decoration: none; }
.tm-has-hero .tm-public-header .tm-login-link { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.55); }
.tm-has-hero .tm-public-header .tm-login-link:hover { background: var(--tm-pub-gold); border-color: var(--tm-pub-gold); }
