/* ============================================================
   ZodiacTales — Standalone Horoscope Page CSS
   Prefix: ho-  (horoscope)
   Mirrors the daily-energy-snippet.css design language
   for visual consistency with the animal page embed.
   ============================================================ */

@keyframes hoFadeSlideIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes hoSoftPulse {
    0%, 100% { opacity: 0.04; }
    50% { opacity: 0.12; }
}
@keyframes hoBreathe {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,197,71,0); }
    50% { box-shadow: 0 0 12px 3px rgba(232,197,71,0.06); }
}
@keyframes hoBarGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}


/* ── HERO ── */

.ho-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: 100vw;
    background: var(--color-bg-surface);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    padding: var(--space-lg) var(--space-lg) var(--space-md);
}
.ho-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.ho-breadcrumb {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}
.ho-breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.ho-breadcrumb a:hover {
    color: var(--ho-accent);
}
.ho-breadcrumb-sep {
    margin: 0 0.4em;
    opacity: 0.4;
}
.ho-hero-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ho-accent);
    margin-bottom: var(--space-sm);
}
.ho-hero-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}
.ho-hero-date {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}
.ho-hero-profile-link {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--ho-accent);
    text-decoration: none;
    padding: 4px 14px;
    border: 1px solid var(--ho-accent-border);
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.ho-hero-profile-link:hover {
    background: var(--ho-accent-subtle);
    color: var(--ho-accent);
}


/* ── SECTION ── */

.ho-section {
    padding: var(--space-xl) var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
}
.ho-section-heading {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ho-accent);
    margin-bottom: var(--space-md);
}
.ho-section-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    margin: 0 0 8px;
    font-weight: 600;
}


/* ── MAIN CARD ── */

.ho-card {
    background: #12121e;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--ho-accent);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    animation: hoFadeSlideIn 0.5s ease;
}
.ho-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(232,197,71,0.06), transparent);
    pointer-events: none;
    animation: hoSoftPulse 4s ease-in-out infinite;
    border-radius: 16px 16px 0 0;
}

.ho-card-header {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}
.ho-card-date {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.ho-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}


/* ── TOP ROW: 2-column ── */

.ho-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
    align-items: start;
}


/* ── TIER BADGE ── */

.ho-tier {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(232,197,71,0.04);
    border: 1px solid rgba(232,197,71,0.08);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    animation: hoBreathe 4s ease-in-out infinite;
}
.ho-tier-icon {
    font-size: 1.6rem;
    line-height: 1;
}
.ho-tier-info {
    display: flex;
    flex-direction: column;
}
.ho-tier-label {
    font-size: 0.95rem;
    font-weight: 700;
}
.ho-tier-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}


/* ── ENERGY BAR + HOVER LEGEND ── */

.ho-energy-hover {
    position: relative;
    margin-bottom: 8px;
}
.ho-energy-row {
    display: flex;
    align-items: center;
    gap: 3px;
}
.ho-energy-seg {
    flex: 1;
    height: 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
}
.ho-energy-seg--filled {
    animation: hoFadeSlideIn 0.3s ease both;
}
.ho-energy-score {
    margin-left: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    flex-shrink: 0;
    cursor: help;
}
.ho-energy-hint {
    font-size: 0.6rem;
    opacity: 0.35;
    margin-left: 2px;
}

/* Tier legend tooltip */
.ho-tier-legend {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(232,197,71,0.18);
    border-radius: 12px;
    padding: 14px 16px;
    z-index: 50;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    animation: hoFadeSlideIn 0.2s ease;
}
.ho-energy-hover:hover .ho-tier-legend { display: block; }
.ho-energy-hover:focus-within .ho-tier-legend { display: block; }

.ho-tier-legend-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
    font-weight: 600;
}
.ho-tier-legend-row {
    display: grid;
    grid-template-columns: 1.4em 5em 4em 1fr;
    gap: 6px;
    align-items: center;
    padding: 4px 6px;
    border-radius: 5px;
    margin-bottom: 2px;
    font-size: 0.8rem;
}
.ho-tier-legend-row--active {
    background: rgba(232,197,71,0.08);
    border: 1px solid rgba(232,197,71,0.15);
}
.ho-tier-legend-icon { font-size: 0.85rem; text-align: center; }
.ho-tier-legend-label { font-weight: 700; }
.ho-tier-legend-range { font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.ho-tier-legend-desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.ho-tier-legend-note {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.4;
}

@media (hover: none) {
    .ho-energy-score { cursor: pointer; }
    .ho-energy-hover:focus-within .ho-tier-legend { display: block; }
}


/* ── DAY PILLAR ── */

.ho-pillar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.ho-pillar-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.25);
}
.ho-pillar-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    padding: 3px 8px;
    border-radius: 5px;
    cursor: help;
    transition: background 0.15s;
}
.ho-pillar-value:hover {
    background: rgba(232,197,71,0.08);
}
.ho-pillar-info-icon {
    font-size: 0.65rem;
    opacity: 0.35;
    margin-left: 3px;
}
.ho-pillar-hover {
    position: relative;
    display: inline-block;
}
.ho-pillar-tip {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 340px;
    max-width: 90vw;
    background: #1a1a2e;
    border: 1px solid rgba(232,197,71,0.18);
    border-radius: 12px;
    padding: 16px 18px;
    z-index: 100;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    animation: hoFadeSlideIn 0.15s ease;
}
.ho-pillar-hover:hover .ho-pillar-tip,
.ho-pillar-hover:focus-within .ho-pillar-tip { display: block; }
.ho-pillar-tip-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.ho-pillar-tip p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0 0 8px;
}
.ho-pillar-tip p:last-child { margin-bottom: 0; }
.ho-pillar-tip p strong { color: rgba(255,255,255,0.85); }

@media (hover: none) {
    .ho-pillar-value { cursor: pointer; }
    .ho-pillar-hover:focus-within .ho-pillar-tip { display: block; }
    .ho-pillar-tip { width: calc(100vw - 80px); }
}


/* ── SIGNALS ── */

.ho-signals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.ho-signal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 6px;
    border-radius: 8px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    animation: hoFadeSlideIn 0.4s ease both;
}
.ho-signal:nth-child(1) { animation-delay: 0.05s; }
.ho-signal:nth-child(2) { animation-delay: 0.1s; }
.ho-signal:nth-child(3) { animation-delay: 0.15s; }
.ho-signal:nth-child(4) { animation-delay: 0.2s; }
.ho-signal-icon {
    font-size: 1rem;
    line-height: 1;
}
.ho-signal-domain {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.3);
}
.ho-signal-label {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
}
.ho-signal-arrow {
    font-size: 0.8rem;
    font-weight: 700;
}


/* ── READING (visually structured) ── */

.ho-reading {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 18px 18px;
    margin-bottom: 14px;
    animation: hoFadeSlideIn 0.5s ease 0.15s both;
}
.ho-reading-label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 12px;
    font-weight: 600;
}
.ho-reading p {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 0 10px;
}
.ho-reading p:last-child {
    margin-bottom: 0;
}

/* Opening — accent left border, slightly larger */
.ho-reading-opener {
    border-left: 3px solid var(--ho-accent);
    padding-left: 14px;
    margin-bottom: 14px;
}
.ho-reading-opener p {
    font-size: 0.95rem;
    color: #fff;
    margin: 0;
}

/* Middle — standard body */
.ho-reading-mid {
    color: rgba(255,255,255,0.8);
    margin-bottom: 14px;
}

/* Closing — italicized with subtle background */
.ho-reading-closer {
    background: rgba(232,197,71,0.04);
    border: 1px solid rgba(232,197,71,0.08);
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 4px;
}
.ho-reading-closer p {
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
}


/* ── LUCKY STATS PILLS ── */

.ho-lucky-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.ho-lucky-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    font-size: 0.78rem;
    flex: 1;
    min-width: 120px;
}
.ho-lucky-pill--window {
    flex: 2;
    min-width: 200px;
    border-color: rgba(232,197,71,0.15);
    background: rgba(232,197,71,0.04);
}
.ho-lucky-icon {
    font-size: 0.9rem;
    line-height: 1;
}
.ho-lucky-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
}
.ho-lucky-value {
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-left: auto;
}
.ho-lucky-pill--window .ho-lucky-value {
    color: var(--ho-accent);
}

@media (max-width: 480px) {
    .ho-lucky-row {
        flex-direction: column;
    }
    .ho-lucky-pill {
        min-width: unset;
    }
}


/* ── ADVICE CARDS ── */

.ho-advice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.ho-advice-card {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    animation: hoFadeSlideIn 0.4s ease 0.2s both;
}
.ho-advice-card--best {
    border-color: rgba(76,175,80,0.15);
    background: rgba(76,175,80,0.03);
}
.ho-advice-card--watch {
    border-color: rgba(255,152,0,0.15);
    background: rgba(255,152,0,0.03);
}
.ho-advice-icon {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
}
.ho-advice-card h4 {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
    margin: 0 0 4px;
}
.ho-advice-card p {
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.7);
    margin: 0;
}


/* ── MID ROW: 2-column (compat + week chart) ── */

.ho-mid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}


/* ── COMPATIBILITY ── */

.ho-compat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.ho-compat-card {
    text-align: center;
    padding: 12px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
}
.ho-compat-card--best {
    border-color: rgba(232,197,71,0.15);
}
.ho-compat-card--avoid {
    border-color: rgba(255,82,82,0.1);
}
.ho-compat-badge {
    display: block;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 4px;
}
.ho-compat-name--best {
    color: #E8C547;
    font-weight: 600;
    font-size: 0.85rem;
}
.ho-compat-name--avoid {
    color: rgba(255,82,82,0.75);
    font-weight: 600;
    font-size: 0.85rem;
}


/* ── WEEK CHART ── */

.ho-week-meta {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
}
.ho-week-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    justify-content: center;
}
.ho-week-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.ho-week-score {
    font-size: 0.6rem;
    font-weight: 600;
}
.ho-week-bar {
    width: 32px;
    border-radius: 4px;
    transform-origin: bottom;
    animation: hoBarGrow 0.4s ease both;
}
.ho-week-col:nth-child(1) .ho-week-bar { animation-delay: 0s; }
.ho-week-col:nth-child(2) .ho-week-bar { animation-delay: 0.05s; }
.ho-week-col:nth-child(3) .ho-week-bar { animation-delay: 0.08s; }
.ho-week-col:nth-child(4) .ho-week-bar { animation-delay: 0.12s; }
.ho-week-col:nth-child(5) .ho-week-bar { animation-delay: 0.16s; }
.ho-week-col:nth-child(6) .ho-week-bar { animation-delay: 0.2s; }
.ho-week-col:nth-child(7) .ho-week-bar { animation-delay: 0.25s; }
.ho-week-day {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
}
.ho-week-day--today {
    color: #E8C547;
    font-weight: 700;
}
.ho-week-today-tag {
    display: block;
    font-size: 0.45rem;
    font-weight: 700;
    color: #E8C547;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: -1px;
}


/* ── SHARE + BOOKMARK BAR ── */

.ho-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
}
.ho-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: var(--font-body);
    text-decoration: none;
    line-height: 1;
}
.ho-share-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}
.ho-share-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}
.ho-share-btn--bookmark {
    color: var(--ho-accent);
    border-color: var(--ho-accent-border);
}
.ho-share-btn--bookmark:hover {
    background: var(--ho-accent-subtle);
    color: var(--ho-accent);
}


/* ── TRAILING DAYS ── */

.ho-trailing {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ho-trail-day {
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    background: rgba(255,255,255,0.015);
    overflow: hidden;
    animation: hoFadeSlideIn 0.4s ease both;
}
.ho-trail-day:nth-child(1) { animation-delay: 0.05s; }
.ho-trail-day:nth-child(2) { animation-delay: 0.1s; }
.ho-trail-day:nth-child(3) { animation-delay: 0.15s; }
.ho-trail-day:nth-child(4) { animation-delay: 0.2s; }
.ho-trail-day:nth-child(5) { animation-delay: 0.25s; }
.ho-trail-day:nth-child(6) { animation-delay: 0.3s; }
.ho-trail-day:nth-child(7) { animation-delay: 0.35s; }
.ho-trail-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ho-trail-score {
    font-weight: 700;
    font-size: 0.82rem;
    min-width: 34px;
}
.ho-trail-label {
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}
.ho-trail-date {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
}
.ho-trail-tier {
    margin-left: auto;
    font-size: 0.7rem;
}
.ho-trail-body {
    padding: 10px 14px 12px;
}
.ho-trail-body p {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0 0 8px;
}
.ho-trail-body p:last-of-type {
    margin-bottom: 0;
}
.ho-trail-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.ho-trail-sig {
    font-size: 0.7rem;
    padding: 3px 6px;
    background: rgba(255,255,255,0.025);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.04);
}


/* ── CTA ── */

.ho-cta {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.ho-cta-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin: 0 0 12px;
}
.ho-cta-btn {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 8px;
    background: var(--ho-accent);
    color: #1a1a2e;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}
.ho-cta-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    color: #1a1a2e;
}
.ho-cta-link {
    display: block;
    margin-top: 8px;
    font-size: 0.72rem;
    color: var(--ho-accent);
    text-decoration: none;
}
.ho-cta-link:hover {
    text-decoration: underline;
}


/* ── RESPONSIVE ── */

@media (max-width: 680px) {
    .ho-top-row {
        grid-template-columns: 1fr;
    }
    .ho-mid-row {
        grid-template-columns: 1fr;
    }
    .ho-card {
        padding: 18px 16px;
    }
    .ho-signals {
        grid-template-columns: repeat(4, 1fr);
    }
    .ho-hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ho-signals {
        grid-template-columns: repeat(2, 1fr);
    }
    .ho-advice {
        grid-template-columns: 1fr;
    }
    .ho-week-bar {
        width: 24px;
    }
    .ho-hero-title {
        font-size: 1.5rem;
    }
    .ho-trail-header {
        flex-wrap: wrap;
        gap: 6px;
    }
}


/* ============================================================
   HUB PAGE — Grid of all signs
   ============================================================ */

.ho-hub-heading {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: var(--space-md);
}

.ho-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ho-hub-card {
    display: flex;
    flex-direction: column;
    background: #12121e;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.ho-hub-card:hover {
    border-color: rgba(232,197,71,0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.ho-hub-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.ho-hub-emoji {
    font-size: 1.4rem;
    line-height: 1;
}
.ho-hub-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-heading);
}

.ho-hub-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.ho-hub-score {
    font-size: 1.1rem;
    font-weight: 700;
}
.ho-hub-tier {
    font-size: 0.7rem;
    font-weight: 500;
}

.ho-hub-bar-track {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}
.ho-hub-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.6s ease;
}


@media (max-width: 680px) {
    .ho-hub-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .ho-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ho-hub-card {
        padding: 12px;
    }
}