/* ==========================================================================
   /tools/design-studio-help — Studio Help & FAQ page
   Extends static-pages.css + help-center.css
   ========================================================================== */

/* ---------------------------------------------------------------------------
   Keyboard Shortcuts Card — spans full width of the grid
   --------------------------------------------------------------------------- */
.dsh-shortcuts-card {
    grid-column: 1 / -1;
}

.dsh-shortcuts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}
.dsh-shortcuts-table thead {
    border-bottom: 2px solid #f3f4f6;
}
.dsh-shortcuts-table th {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    padding: 8px 12px;
    text-align: left;
}
.dsh-shortcuts-table td {
    padding: 8px 12px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    line-height: 1.5;
}
.dsh-shortcuts-table tbody tr:last-child td {
    border-bottom: none;
}
.dsh-shortcuts-table tbody tr:hover {
    background: #fafbfc;
}

/* kbd styling */
.dsh-shortcuts-table kbd {
    display: inline-block;
    padding: 2px 8px;
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    box-shadow: 0 1px 0 #d1d5db;
    line-height: 1.4;
}

/* ---------------------------------------------------------------------------
   CTA Banner (reused from design-studio.css pattern)
   --------------------------------------------------------------------------- */
.ds-cta-banner {
    background: #ccea4a;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}
.ds-cta-banner h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin: 0 0 8px;
}
.ds-cta-banner p {
    font-size: 0.9375rem;
    color: rgba(0,0,0,0.65);
    margin: 0 0 20px;
}
.ds-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: #111827;
    color: #fff;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.ds-cta-btn:hover {
    background: #1f2937;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(17,24,39,0.35);
    transform: translateY(-1px);
}
.ds-cta-btn--outline {
    background: transparent;
    color: #111827;
    border: 1.5px solid rgba(0,0,0,0.2);
}
.ds-cta-btn--outline:hover {
    background: rgba(0,0,0,0.06);
    color: #111827;
    box-shadow: none;
}

/* ---------------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .dsh-shortcuts-table {
        font-size: 0.75rem;
    }
    .dsh-shortcuts-table th,
    .dsh-shortcuts-table td {
        padding: 6px 8px;
    }
    .ds-cta-banner {
        padding: 28px 20px;
    }
    .ds-cta-banner h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 575px) {
    /* Hide Mac column on very small screens to save space */
    .dsh-shortcuts-table th:last-child,
    .dsh-shortcuts-table td:last-child {
        display: none;
    }
}
