
/* =============================================================================
   Brand Logo — shared logo primitive used across all pages
   ============================================================================= */

.brand-logo {
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--glass-border);
    padding: 4px;
}
.brand-logo--sm  { width: 32px; height: 32px; border-radius: 8px; }
.brand-logo--md  { width: 44px; height: 44px; }
.brand-logo--lg  { width: 48px; height: 48px; border-radius: 12px; }

.brand-logo-placeholder {
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
}
.brand-logo-placeholder--sm { width: 32px; height: 32px; border-radius: 8px; font-size: 0.875rem; }
.brand-logo-placeholder--md { width: 44px; height: 44px; }
.brand-logo-placeholder--lg { width: 48px; height: 48px; border-radius: 12px; font-size: 1.25rem; }

/* Guide card — compact crawlable link to how-to-apply pages */
.guide-card {
    display: flex;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color, rgba(255,255,255,0.08));
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, background 0.2s;
    background: var(--bg-surface, #111);
}
.guide-card:hover {
    border-color: var(--accent-primary, #3b82f6);
    background: var(--bg-surface-hover, #1a1a1a);
    color: inherit;
}
.guide-card__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}
.guide-card__logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
}
.guide-card__logo-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--bg-surface, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
    color: var(--text-muted, #666);
}
.guide-card__text {
    flex: 1;
    min-width: 0;
}
.guide-card__name {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.guide-card__ats {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted, #666);
}
.guide-card__cta {
    font-size: 0.8125rem;
    color: var(--accent-primary, #3b82f6);
    white-space: nowrap;
    flex-shrink: 0;
}
