.office-stub {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: min(420px, 60vh);
    padding: 2rem 2.25rem;
    gap: 0.75rem;
}

.office-stub__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--office-muted);
}

.office-stub__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--office-text);
}

.office-stub__text {
    margin: 0;
    max-width: 42ch;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--office-muted);
}

.office-stub__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.office-stub__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border-radius: var(--office-radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--office-border);
    color: var(--office-text);
    background: var(--office-surface-2);
    transition: border-color var(--office-transition), background var(--office-transition);
}

.office-stub__btn:hover {
    border-color: var(--office-accent);
    background: rgba(59, 130, 246, 0.12);
}

.office-stub__btn--primary {
    background: var(--office-accent);
    border-color: var(--office-accent);
    color: #fff;
}

.office-stub__btn--primary:hover {
    background: var(--office-accent-hover);
    border-color: var(--office-accent-hover);
}
