/* =====================================================
   BENCH AI — SaaS-grade UI (orange + black)
   Max-width centered layout · 3×3 video grid
   ===================================================== */

:root {
    --bench-accent:       #f97316;
    --bench-accent-dark:  #ea580c;
    --bench-accent-light: #fff7ed;
    --bench-accent-glow:  rgba(249,115,22,0.20);
    --bench-dark:         #0f172a;
    --bench-dark-2:       #1e293b;
    --bench-text:         #111827;
    --bench-text-muted:   #6b7280;
    --bench-text-light:   #9ca3af;
    --bench-border:       #e5e7eb;
    --bench-bg:           #ffffff;
    --bench-bg-subtle:    #f9fafb;
    --bench-bg-hover:     #f3f4f6;
    --bench-shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
    --bench-shadow-md:    0 4px 16px rgba(0,0,0,0.08);
    --bench-shadow-lg:    0 8px 32px rgba(0,0,0,0.10);
    --bench-radius:       20px;
    --bench-font:         'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --bench-max-w:        1200px;
    --bench-content-w:    820px;   /* prompt box + chat content max-width */
}


/* =====================================================
   CENTERED WRAPPER UTILITY
   ===================================================== */

.bench-center {
    width: 100%;
    max-width: var(--bench-max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px;
    box-sizing: border-box;
}


/* =====================================================
   STATE 1: LANDING
   ===================================================== */

.bench-landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 24px 15px;
    margin-bottom: 15px;
    background: var(--bench-bg);
    position: relative;
    overflow: hidden;
}

/* Dot grid background */
.bench-landing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(249,115,22,0.055) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

/* Warm radial glow */
.bench-landing::after {
    content: '';
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 520px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.bench-landing-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: var(--bench-max-w);
    padding: 0 28px;
    box-sizing: border-box;
}

.bench-landing--hiding {
    animation: benchFadeOut 0.3s ease forwards;
}

@keyframes benchFadeOut {
    to { opacity: 0; transform: translateY(-10px); }
}

/* --- Brand Orb --- */
.bench-brand { margin-bottom: 24px; }

.bench-brand-orb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #f97316, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow:
        0 0 0 10px rgba(249,115,22,0.08),
        0 0 0 20px rgba(249,115,22,0.04),
        0 10px 32px -4px rgba(249,115,22,0.40);
    animation: benchOrbFloat 4.5s ease-in-out infinite;
}

@keyframes benchOrbFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

/* --- Headings --- */
.bench-gradient-text {
    background: linear-gradient(90deg, #f97316, #ea580c, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bench-hero-heading {
    font-family: var(--bench-font);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--bench-dark);
    text-align: center;
    margin: 0 0 10px;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.bench-hero-sub {
    font-family: var(--bench-font);
    font-size: 16px;
    color: var(--bench-text-muted);
    text-align: center;
    margin: 0 0 32px;
    line-height: 1.55;
    max-width: 460px;
}

/* ── Prompt Outer (centered column) ── */
.bench-prompt-outer {
    width: 100%;
    max-width: var(--bench-content-w);
}

/* ── Prompt Box — small default, expands on input ── */
.bench-prompt-box {
    background: var(--bench-bg);
    border: 1.5px solid var(--bench-border);
    border-radius: var(--bench-radius);
    box-shadow: var(--bench-shadow-md);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bench-prompt-box:focus-within {
    border-color: var(--bench-accent);
    box-shadow:
        0 0 0 4px var(--bench-accent-glow),
        var(--bench-shadow-lg);
}

.bench-prompt-textarea {
    width: 100%;
    min-height: 44px;      /* compact single line */
    max-height: 80px;     /* clamp; JS keeps it within this too */
    padding: 14px 20px 6px;
    font-family: var(--bench-font);
    font-size: 15px;
    line-height: 1.5;
    color: var(--bench-text);
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    box-sizing: border-box;
    overflow-y: auto;
    transition: min-height 0.15s ease;
}

.bench-prompt-textarea::placeholder {
    color: var(--bench-text-light);
}

.bench-prompt-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 4px 12px 8px;
}

/* ── Submit Button ── */
.bench-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--bench-dark);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
    box-shadow: 0 2px 10px rgba(15,23,42,0.22);
    flex-shrink: 0;
}

.bench-submit-btn:hover {
    background: var(--bench-accent);
    transform: scale(1.07);
    box-shadow: 0 4px 18px rgba(249,115,22,0.45);
}

.bench-submit-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ══════════════════════════════════════════════════
   NAV BUTTONS — Collections / Category
   Centered · Proportional · SaaS-grade
══════════════════════════════════════════════════ */
.bench-nav-row {
    display: flex;
    justify-content: center;   /* centred horizontally */
    gap: 14px;
    margin-top: 16px;
}

.bench-nav-row--chat {
    margin-top: 12px;
    margin-bottom: 10px;
    justify-content: center;
}

.bench-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 12px 20px;
    flex: 1;
    min-width: 0;
    text-decoration: none;
    border-radius: 14px;
    border: 1.5px solid transparent;
    background: var(--bench-bg);
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Left accent stripe — disabled */

.bench-nav-btn--collections {
    border-color: rgba(249,115,22,0.28);
    box-shadow: 0 2px 10px rgba(249,115,22,0.09), var(--bench-shadow-sm);
}

.bench-nav-btn--category {
    border-color: rgba(15,23,42,0.18);
    box-shadow: 0 2px 10px rgba(15,23,42,0.07), var(--bench-shadow-sm);
}

.bench-nav-btn:hover { transform: translateY(-2px); }

.bench-nav-btn--collections:hover {
    border-color: var(--bench-accent);
    background: var(--bench-accent-light);
    box-shadow: 0 6px 20px rgba(249,115,22,0.18);
}
.bench-nav-btn--category:hover {
    border-color: rgba(15,23,42,0.5);
    background: #f8fafc;
    box-shadow: 0 6px 20px rgba(15,23,42,0.12);
}

.bench-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    flex-shrink: 0;
}
/*.bench-nav-btn--collections .bench-nav-icon {
    background: rgba(249,115,22,0.10);
    color: var(--bench-accent);
}
.bench-nav-btn--category .bench-nav-icon {
    background: rgba(15,23,42,0.07);
    color: var(--bench-dark);
}
*/
.bench-nav-label {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.bench-nav-title {
    font-family: var(--bench-font);
    font-size: 13px;
    font-weight: 700;
    color: var(--bench-text);
    line-height: 1.2;
}

.bench-nav-hint {
    font-family: var(--bench-font);
    font-size: 11px;
    color: var(--bench-text-light);
    margin-top: 2px;
}

.bench-nav-arrow {
    display: flex;
    align-items: center;
    color: var(--bench-text-light);
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}
.bench-nav-btn:hover .bench-nav-arrow {
    transform: translateX(3px);
    color: var(--bench-text-muted);
}

/* Small variant inside chat — stretches to fill */
.bench-nav-btn--sm {
    padding: 11px 18px;
    gap: 10px;
    border-radius: 12px;
}
.bench-nav-btn--sm .bench-nav-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

/* ── Example Chips — Premium card buttons ── */
.bench-chips-label {
    font-family: var(--bench-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--bench-text-light);
    margin: 30px 0 14px;
    text-align: center;
}

.bench-chips-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: var(--bench-content-w);
    width: 100%;
}

.bench-chip {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 18px 14px 18px;
    min-height: 110px;
    font-family: var(--bench-font);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--bench-text);
    background: var(--bench-bg-subtle);
    border: 1px solid var(--bench-border);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: normal;
    box-shadow: none;
    text-align: left;
    line-height: 1.45;
}

/* Arrow icon — bottom right */
.bench-chip::after {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    margin-top: 14px;
    align-self: flex-end;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    flex-shrink: 0;
    transition: background-image 0.18s ease;
}

.bench-chip:hover {
    color: var(--bench-text);
    border-color: rgba(249,115,22,0.35);
    background: var(--bench-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.10);
}

.bench-chip:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E");
}


/* =====================================================
   STATE 2: CONVERSATION
   ===================================================== */

.bench-conversation {
    height: calc(100vh - var(--bench-header-h, 0px));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bench-bg);
    animation: benchSlideIn 0.35s ease;
    box-sizing: border-box;
}

/* When the conversation panel is active (visible), lock it to a fixed overlay
   so all Elementor sections / page content below the plugin are hidden. */
.bench-conversation:not([hidden]) {
    position: fixed;
    top: var(--bench-header-h, 0px);
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    z-index: 9998;
    background: var(--bench-bg);
}

@keyframes benchSlideIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Centered inner column */
.bench-conversation-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    max-width: var(--bench-max-w);
    margin: 0 auto;
    padding: 0 28px;
    box-sizing: border-box;
    min-height: 0;
}

/* --- Chat Header --- */
.bench-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 14px;
    border-bottom: 1px solid var(--bench-border);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.bench-chat-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bench-orb-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bench-chat-header-title {
    font-family: var(--bench-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--bench-dark);
}

.bench-reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-family: var(--bench-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--bench-text-muted);
    background: var(--bench-bg-subtle);
    border: 1.5px solid var(--bench-border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.bench-reset-btn:hover {
    background: #fee2e2;
    border-color: #fecaca;
    color: #ef4444;
}

/* --- Messages (ONLY this div scrolls) --- */
.bench-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 0 16px;
    min-height: 0;
    scroll-behavior: smooth;
}

.bench-messages::-webkit-scrollbar { width: 4px; }
.bench-messages::-webkit-scrollbar-track { background: transparent; }
.bench-messages::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

/* Centered message rows */
.bench-msg-assistant,
.bench-typing {
    max-width: var(--bench-content-w);
    margin-left: 0;
    margin-right: auto;
    width: 100%;
}

/* --- User bubble — flush right --- */
.bench-msg-user {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    margin-bottom: 20px;
    width: 100%;
}

.bench-msg-user .bench-msg-bubble {
    background: var(--bench-dark);
    color: #f8fafc;
    padding: 13px 20px;
    border-radius: 20px 20px 4px 20px;
    max-width: 55%;
    font-family: var(--bench-font);
    font-size: 15px;
    line-height: 1.55;
}

/* --- Assistant message --- */
.bench-msg-assistant {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-left: 48px;
    position: relative;
}

.bench-msg-assistant::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #f97316);
    flex-shrink: 0;
}

/* Wide variant for 3×3 grid (overrides max-width) */
.bench-msg-assistant--wide {
    max-width: 100%;
    padding-left: 0;
}

.bench-msg-assistant--wide::before {
    display: none;
}

.bench-msg-assistant .bench-msg-bubble {
    background: transparent;
    color: var(--bench-text);
    padding: 4px 0;
    font-family: var(--bench-font);
    font-size: 15px;
    line-height: 1.65;
    max-width: 92%;
}

/* --- Batch header (e.g. "Showing 1–9 of 25") --- */
.bench-batch-header {
    font-family: var(--bench-font);
    font-size: 12px;
    font-weight: 600;
    color: var(--bench-text-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
    padding-left: 2px;
}

/* ═══════════════════════════════════════
   3×3 INLINE VIDEO GRID
═══════════════════════════════════════ */
.bench-inline-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.bench-inline-card {
    display: block;
    background: var(--bench-bg);
    border: 1px solid var(--bench-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--bench-shadow-sm);
}

.bench-inline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bench-shadow-lg);
}

.bench-inline-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bench-bg-subtle);
}

.bench-inline-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bench-inline-card:hover .bench-inline-thumb img {
    transform: scale(1.04);
}

/* Funnel badge */
.bench-funnel-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 9px;
    border-radius: 6px;
    font-family: var(--bench-font);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #fff;
    backdrop-filter: blur(4px);
}

.bench-funnel-badge--tofu { background: rgba(16,185,129,0.9); }
.bench-funnel-badge--mofu { background: rgba(245,158,11,0.9); }
.bench-funnel-badge--bofu { background: rgba(239,68,68,0.9); }

.bench-inline-body {
    padding: 12px 14px 14px;
}

.bench-inline-title {
    font-family: var(--bench-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--bench-text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.bench-inline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.bench-inline-tag {
    font-family: var(--bench-font);
    font-size: 10px;
    font-weight: 500;
    background: var(--bench-bg-subtle);
    color: var(--bench-text-light);
    padding: 2px 7px;
    border-radius: 50px;
}

/* --- Typing Indicator --- */
.bench-typing {
    display: flex;
    margin-bottom: 20px;
    padding-left: 48px;
    position: relative;
}

.bench-typing::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #f97316);
}

.bench-typing-text {
    display: inline-block;
    padding: 8px 2px;
    font-family: var(--bench-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--bench-text-muted);
    font-style: italic;
    opacity: 1;
    transition: opacity 0.28s ease;
    animation: benchTypingIn 0.35s ease;
}

@keyframes benchTypingIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Related category suggestions --- */
.bench-related-label {
    font-size: 14px !important;
    color: var(--bench-text-muted) !important;
    margin-bottom: 10px;
}

.bench-related-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.bench-related-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-family: var(--bench-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--bench-accent);
    background: var(--bench-accent-light);
    border: 1.5px solid rgba(249,115,22,0.30);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.18s ease;
}

.bench-related-chip:hover {
    background: rgba(249,115,22,0.18);
    border-color: var(--bench-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249,115,22,0.18);
}

/* --- Chat Input --- */
.bench-chat-input-wrap {
    flex-shrink: 0;
    padding: 8px 0 10px;
    background: var(--bench-bg);
    position: sticky;
    bottom: 0;
}

.bench-chat-input-box {
    background: var(--bench-bg);
    border: 1.5px solid var(--bench-border);
    border-radius: var(--bench-radius);
    overflow: hidden;
    box-shadow: var(--bench-shadow-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bench-chat-input-box:focus-within {
    border-color: var(--bench-accent);
    box-shadow: 0 0 0 4px var(--bench-accent-glow);
}

.bench-chat-textarea {
    width: 100%;
    min-height: 42px;
    max-height: 50px;
    padding: 11px 18px 6px;
    font-family: var(--bench-font);
    font-size: 15px;
    line-height: 1.5;
    color: var(--bench-text);
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    box-sizing: border-box;
    overflow-y: auto;
}

.bench-chat-textarea::placeholder { color: var(--bench-text-light); }

.bench-chat-toolbar {
    display: flex;
    justify-content: flex-end;
    padding: 4px 10px 6px;
}

/* --- Error / Retry --- */
.bench-error {
    color: #dc2626;
    font-family: var(--bench-font);
    font-size: 14px;
}

.bench-retry-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 20px;
    background: var(--bench-accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--bench-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}
.bench-retry-btn:hover { background: var(--bench-accent-dark); }


/* =====================================================
   STATE 3 — hidden during chat
   ===================================================== */

.bench-results { padding: 48px 24px 64px; background: var(--bench-bg-subtle); }

.bench-results-inner {
    max-width: var(--bench-max-w);
    margin: 0 auto;
    padding: 0 28px;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1600px) {
    .bench-nav-btn {
    display: inline-flex;
    align-items: center;}
}

@media (max-width: 1024px) {
    :root { --bench-content-w: 720px; }
    .bench-inline-cards { gap: 18px; }
}

@media (max-width: 860px) {
    .bench-inline-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bench-chips-wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bench-landing { padding: 16px 20px 15px; }
    .bench-landing-inner,
    .bench-conversation-inner,
    .bench-results-inner { padding-left: 20px; padding-right: 20px; }
    .bench-prompt-textarea { padding: 16px 18px 8px; }
    .bench-nav-row { gap: 10px; }
    .bench-nav-btn { padding: 10px 14px; }
    .bench-nav-hint { display: none; }
    .bench-msg-assistant { padding-left: 42px; }
    .bench-typing { padding-left: 42px; }
    .bench-msg-user .bench-msg-bubble { max-width: 70%; }
}

@media (max-width: 560px) {
    .bench-nav-row:not(.bench-nav-row--chat) { flex-direction: column; align-items: center; }
    .bench-nav-btn { max-width: 100%; }
    .bench-inline-cards { grid-template-columns: 1fr; gap: 14px; }
    .bench-chips-wrap { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bench-chip { font-size: 13px; padding: 14px 16px; min-height: 90px; }
    .bench-reset-btn span { display: none; }
}
