:root {
    --bg-deep: #0b0e14;
    --card-bg: #161b22;
    --text-primary: #f0f6fc;
    --text-muted: #8b949e;
    --border-subtle: #30363d;
    --neon: #38bdf8;
    --neon-bright: #7dd3fc;
    --neon-dim: rgba(56, 189, 248, 0.45);
    --glow-cyan: rgba(165, 243, 252, 0.55);
    --content-max: 1180px;
    --radius-md: 12px;
    --radius-lg: 14px;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

::selection {
    background: rgba(56, 189, 248, 0.28);
    color: var(--text-primary);
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    line-height: 1.6;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-deep);
    background-image:
        radial-gradient(ellipse 100% 80% at 50% -30%, rgba(56, 189, 248, 0.12), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 20%, rgba(99, 102, 241, 0.06), transparent 50%),
        radial-gradient(ellipse 40% 35% at 0% 80%, rgba(56, 189, 248, 0.05), transparent 45%);
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 20%, transparent 100%);
}

body:not(.sub-page) {
    display: flex;
    flex-direction: column;
}

body:not(.sub-page) > .page-stack {
    flex: 1 0 auto;
}

body.sub-page {
    display: flex;
    flex-direction: column;
}

body.sub-page > main.content-wrapper {
    flex: 1 0 auto;
}

.page-stack {
    width: 100%;
}

/* Focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 3px;
}

.asset-search-input:focus-visible {
    outline: none;
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.18),
        0 0 36px -10px rgba(56, 189, 248, 0.4);
}

/* Navigation */
.site-nav {
    padding: 0 clamp(1rem, 5vw, 5%);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(11, 14, 20, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(56, 189, 248, 0.06);
}

.site-nav-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 0;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    color: var(--text-primary);
}

.logo:hover {
    color: var(--neon-bright);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a.is-active {
    color: var(--neon-bright);
    text-shadow: 0 0 20px var(--neon-dim);
}

/* Hero */
.hero {
    text-align: center;
    padding: clamp(4rem, 12vw, 7.5rem) clamp(1rem, 5vw, 5%) clamp(3rem, 8vw, 5rem);
    position: relative;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 1.25rem;
    text-shadow: 0 0 24px var(--neon-dim);
}

.hero h1 {
    margin: 0 auto 1.5rem;
    max-width: 14ch;
    font-size: clamp(2.75rem, 9vw, 5.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.038em;
}

.hero-title-line {
    display: block;
}

.hero-accent {
    background: linear-gradient(135deg, #e0f2fe 0%, var(--neon) 45%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 28px rgba(56, 189, 248, 0.55));
}

.hero-lead {
    max-width: 36rem;
    margin: 0 auto 2rem;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.65;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon) 0%, #0ea5e9 100%);
    color: #0b0e14;
    box-shadow: 0 0 32px -4px var(--neon-dim);
}

.btn-primary:hover {
    box-shadow: 0 0 48px -2px rgba(56, 189, 248, 0.55);
    transform: translateY(-1px);
}

.btn-secondary {
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    background: rgba(22, 27, 34, 0.6);
}

.btn-secondary:hover {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 24px -6px var(--neon-dim);
}

/* Feature cards */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 5%) 5rem;
    width: 100%;
}

.card-glow {
    position: relative;
    background: linear-gradient(165deg, rgba(22, 27, 34, 0.98), rgba(22, 27, 34, 0.88));
    padding: 2rem 2rem 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.card-glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--neon) 45%, var(--neon-bright) 55%, transparent 95%);
    opacity: 0.55;
    pointer-events: none;
}

#context.card-glow::before {
    background: linear-gradient(90deg, transparent 5%, #38bdf8 45%, #5eead4 55%, transparent 95%);
}

#environment.card-glow::before {
    background: linear-gradient(90deg, transparent 5%, #5eead4 45%, #2dd4bf 55%, transparent 95%);
}

.card-glow:hover {
    transform: translateY(-6px);
    border-color: rgba(165, 243, 252, 0.45);
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.15),
        0 0 56px -8px rgba(56, 189, 248, 0.5),
        0 24px 48px -24px rgba(0, 0, 0, 0.55);
}

.grid-container .card-glow .tag {
    margin-bottom: 0.7rem;
}

.card-glow h2 {
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.card-glow p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 6px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neon-bright);
    background: rgba(56, 189, 248, 0.09);
    border: 1px solid rgba(56, 189, 248, 0.22);
    width: fit-content;
    box-shadow: 0 0 24px -10px rgba(56, 189, 248, 0.35);
}

.tag--mint {
    color: #5eead4;
    background: rgba(94, 234, 212, 0.08);
    border-color: rgba(94, 234, 212, 0.28);
    box-shadow: 0 0 24px -10px rgba(94, 234, 212, 0.25);
}

.link-arrow {
    color: var(--neon-bright);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.link-arrow:hover {
    color: #fff;
    text-shadow: 0 0 18px var(--neon-dim);
}

/* Footer */
.site-footer {
    margin-top: auto;
    padding: 2.5rem clamp(1rem, 5vw, 5%) 2rem;
    border-top: 1px solid var(--border-subtle);
    background: rgba(8, 10, 14, 0.55);
}

.site-footer-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.site-footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(48, 54, 61, 0.55);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1.75rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--neon-bright);
}

.logo--footer {
    font-size: 0.95rem;
    letter-spacing: 0.14em;
}

.site-footer-legal {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    opacity: 0.88;
}

/* Sub-pages */
.content-wrapper {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 clamp(1rem, 5vw, 5%) 4rem;
    width: 100%;
}

.sub-header {
    margin-bottom: 2.5rem;
}

.sub-header--ruled {
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(48, 54, 61, 0.7);
}

.sub-header .tag {
    margin-bottom: 0.65rem;
}

.sub-header h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.sub-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 40rem;
}

.sub-page .card-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.content-wrapper--prompts {
    max-width: 1040px;
}

.sub-page--prompts {
    --prompts-sticky-offset: 3.5rem;
}

.sub-header--prompts {
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
}

.sub-header--prompts .sub-header-lead {
    max-width: 42rem;
    line-height: 1.65;
}

/* Prompt catalog — sticky toolbar + search */
.prompts-toolbar {
    position: sticky;
    top: var(--prompts-sticky-offset);
    z-index: 40;
    margin: 0 0 1.25rem;
    padding: 0.65rem 0 1rem;
    background: linear-gradient(
        180deg,
        rgba(11, 14, 20, 0.97) 0%,
        rgba(11, 14, 20, 0.88) 70%,
        rgba(11, 14, 20, 0) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(48, 54, 61, 0.45);
}

.prompts-stats {
    margin: 0.65rem 0 0;
    padding: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.asset-search-wrap {
    position: relative;
    margin-bottom: 0;
}

.asset-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.asset-search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: rgba(22, 27, 34, 0.72);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9375rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.asset-search-input::placeholder {
    color: var(--text-muted);
    opacity: 0.9;
}

.asset-search-input:hover {
    border-color: rgba(56, 189, 248, 0.22);
}

.asset-search-input:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.18),
        0 0 36px -10px rgba(56, 189, 248, 0.4);
}

/* Category accordions */
.prompt-catalog {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 4rem;
}

.prompt-catalog-message {
    margin: 0;
    padding: 1.35rem 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    border: 1px dashed rgba(48, 54, 61, 0.85);
    border-radius: var(--radius-md);
    background: rgba(22, 27, 34, 0.35);
}

.prompt-catalog-message--error {
    color: #fca5a5;
    border-color: rgba(248, 113, 113, 0.35);
    background: rgba(127, 29, 29, 0.12);
}

.sub-header .inline-code,
.inline-code {
    font-family: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.84em;
    font-weight: 500;
    padding: 0.12rem 0.38rem;
    border-radius: 5px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--neon-bright);
}

.prompt-category {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: rgba(22, 27, 34, 0.45);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.prompt-category:hover {
    border-color: rgba(56, 189, 248, 0.18);
}

.prompt-category[open] {
    border-color: rgba(56, 189, 248, 0.28);
    box-shadow: 0 0 48px -20px rgba(56, 189, 248, 0.22);
}

.prompt-category-summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1rem 1rem 2.75rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    user-select: none;
    position: relative;
    transition: background 0.2s ease;
}

.prompt-category-summary-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
    flex: 1;
}

.prompt-category-count {
    flex-shrink: 0;
    min-width: 2rem;
    padding: 0.25rem 0.55rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    text-align: center;
    color: var(--neon-bright);
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.28);
    line-height: 1.2;
}

.prompt-category-summary::-webkit-details-marker {
    display: none;
}

.prompt-category-summary::marker {
    content: "";
}

.prompt-category-summary::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    top: 50%;
    margin-top: -0.2rem;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid var(--neon);
    border-bottom: 2px solid var(--neon);
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
    opacity: 0.85;
}

.prompt-category[open] .prompt-category-summary::before {
    transform: rotate(45deg);
    margin-top: -0.1rem;
}

.prompt-category-summary:hover {
    background: rgba(56, 189, 248, 0.04);
}

.prompt-category-title {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neon-bright);
}

.prompt-category-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.45;
}

.prompt-category-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.15rem 1.25rem;
}

.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.model-tag {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.28rem 0.55rem;
    border-radius: 6px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: var(--neon-bright);
    background: rgba(56, 189, 248, 0.08);
    box-shadow: 0 0 20px -6px rgba(56, 189, 248, 0.35);
}

.sub-card {
    background: linear-gradient(155deg, rgba(22, 27, 34, 0.95), rgba(18, 22, 28, 0.88));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem 1.45rem;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
    position: relative;
}

.sub-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    bottom: 0.85rem;
    width: 3px;
    border-radius: 0 2px 2px 0;
    background: linear-gradient(180deg, var(--neon), rgba(56, 189, 248, 0.25));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sub-card:hover {
    border-color: rgba(165, 243, 252, 0.32);
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.08),
        0 0 48px -16px rgba(56, 189, 248, 0.35);
    transform: translateY(-2px);
}

.sub-card:hover::before {
    opacity: 1;
}

.sub-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.sub-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Prompt library */
.prompt-item {
    background: linear-gradient(165deg, rgba(22, 27, 34, 0.98), rgba(22, 27, 34, 0.9));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 0;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.prompt-category-body .prompt-item {
    margin-bottom: 0;
}

.prompt-item:hover {
    border-color: rgba(165, 243, 252, 0.25);
    box-shadow: 0 0 36px -14px rgba(56, 189, 248, 0.3);
}

.prompt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem 1.25rem;
    padding: 1.15rem 1.35rem 1.2rem;
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid var(--border-subtle);
}

.prompt-header-main {
    flex: 1;
    min-width: 0;
}

.prompt-title {
    margin: 0 0 0.45rem;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.prompt-desc {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.62;
    max-width: 62ch;
}

.prompt-header-actions {
    flex-shrink: 0;
    padding-top: 0.15rem;
}

.code-block {
    padding: 1.25rem;
    margin: 0;
    font-family: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8125rem;
    color: #c9d1d9;
    white-space: pre-wrap;
    background: #0d1117;
    line-height: 1.55;
}

.prompt-item .code-block--asset {
    background: rgba(30, 35, 42, 0.78);
    color: #d6dde6;
    border-top: 1px solid rgba(56, 189, 248, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(125, 211, 252, 0.06),
        0 0 0 1px rgba(56, 189, 248, 0.12),
        0 0 40px -16px rgba(56, 189, 248, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-height: min(65vh, 26rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: rgba(56, 189, 248, 0.35) rgba(22, 27, 34, 0.5);
    scrollbar-width: thin;
}

.prompt-item .code-block--asset::-webkit-scrollbar {
    width: 8px;
}

.prompt-item .code-block--asset::-webkit-scrollbar-track {
    background: rgba(13, 17, 23, 0.6);
}

.prompt-item .code-block--asset::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.28);
    border-radius: 4px;
}

.prompt-item .code-block--asset::-webkit-scrollbar-thumb:hover {
    background: rgba(56, 189, 248, 0.45);
}

.copy-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--neon) 0%, #0ea5e9 100%);
    color: #0b0e14;
    border: none;
    padding: 0.45rem 1.05rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: inherit;
    transition:
        opacity 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.copy-btn:hover {
    opacity: 0.92;
    box-shadow: 0 0 20px -2px var(--neon-dim);
}

.copy-btn.copy-btn--success {
    background: linear-gradient(135deg, #34d399 0%, #22c55e 100%);
    color: #052e1a;
    opacity: 1;
    animation: copyGlowPulse 0.85s ease-out;
}

.copy-btn.copy-btn--success:hover {
    box-shadow: 0 0 28px 2px rgba(52, 211, 153, 0.55);
}

@keyframes copyGlowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.75);
    }
    45% {
        box-shadow: 0 0 36px 8px rgba(34, 197, 94, 0.55);
    }
    100% {
        box-shadow: 0 0 22px 0 rgba(52, 211, 153, 0.45);
    }
}

@media (max-width: 640px) {
    .nav-links {
        gap: 0.65rem;
    }

    .nav-links a {
        font-size: 0.8125rem;
    }

    .site-footer-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .prompt-header {
        flex-direction: column;
        align-items: stretch;
    }

    .prompt-header-actions {
        align-self: flex-end;
        padding-top: 0;
    }

    .prompt-category-summary {
        padding-left: 2.5rem;
        flex-wrap: wrap;
    }

    .prompt-category-count {
        align-self: flex-start;
    }

    .sub-page--prompts {
        --prompts-sticky-offset: 3.25rem;
    }
}
