@font-face {
    font-family: "Spooky Punk";
    src: url("../fonts/Spooky-Punk.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&family=Permanent+Marker&display=swap');

:root {
    --ink: #111111;
    --ink-soft: #262129;
    --paper: #f4efe4;
    --paper-deep: #e9dfce;
    --purple: #7a3bd1;
    --purple-dark: #4e228d;
    --orange: #e56b25;
    --green: #67a72c;
    --blue: #287da2;
    --rose: #c5355a;
    --yellow: #f2c84b;
    --line: rgba(17, 17, 17, .18);
    --shadow: 0 14px 40px rgba(26, 17, 30, .14);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 20% 20%, rgba(122,59,209,.06), transparent 24rem),
        linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)),
        var(--paper);
    font-family: "Atkinson Hyperlegible", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 999;
    background: white;
    padding: .7rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
    min-height: 90px;
    background: var(--ink);
    color: white;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: .7rem clamp(1rem, 4vw, 4rem) 1.1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
    min-width: max-content;
}
.brand img { width: 58px; aspect-ratio: 1; object-fit: cover; border-radius: 18px; }
.brand span { font-family: "Permanent Marker", cursive; font-size: 1.25rem; }
.primary-nav { display: flex; align-items: center; gap: clamp(.55rem, 1.3vw, 1.25rem); margin-left: auto; }
.primary-nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: .86rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .55rem .1rem;
    border-bottom: 3px solid transparent;
}
.primary-nav a:hover, .primary-nav a.active { color: #d6b5ff; border-color: var(--purple); }
.menu-toggle {
    display: none;
    margin-left: auto;
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 999px;
    padding: .45rem .9rem;
}

.ink-edge { position: absolute; left: 0; right: 0; height: 18px; pointer-events: none; }
.ink-edge-bottom { bottom: -9px; background: linear-gradient(175deg, var(--ink) 0 51%, transparent 52%); }
.ink-edge-top { top: -12px; background: linear-gradient(355deg, var(--ink) 0 51%, transparent 52%); }

.page-shell { width: min(1220px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: clamp(3.2rem, 7vw, 6rem) 0; }
.section-tight { padding: 2.5rem 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.section-heading h2, .display-title, .page-title {
    font-family: "Permanent Marker", cursive;
    line-height: 1.04;
    margin: 0;
}
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.section-heading a { font-weight: 700; color: var(--purple-dark); }
.eyebrow {
    display: inline-block;
    margin: 0 0 .8rem;
    padding: .25rem .75rem;
    color: white;
    background: var(--purple);
    transform: rotate(-1deg);
    font-family: "Permanent Marker", cursive;
}
.lead { font-size: clamp(1.12rem, 2vw, 1.35rem); max-width: 48rem; }
.muted { color: #625c64; }

.hero {
    min-height: 680px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding: clamp(4rem, 8vw, 7rem) 0 3rem;
}
.display-title {
    font-family: "Spooky Punk", "Permanent Marker", cursive;
    font-size: clamp(3.6rem, 7.1vw, 7rem);
    font-weight: 400;
    line-height: .88;
    letter-spacing: .01em;
}
.display-title .title-line {
    display: block;
    color: var(--ink);
}
.display-title .title-second-line {
    white-space: nowrap;
}
.display-title .title-arts {
    display: inline;
    color: var(--ink);
}
.display-title .title-studio {
    display: inline;
    color: var(--purple);
    margin-left: .14em;
}
.hero-copy p { max-width: 36rem; font-size: 1.2rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.5rem; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--ink);
    border-radius: 12px;
    padding: .78rem 1.1rem;
    background: white;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary { color: white; background: var(--purple); }
.btn-small { padding: .45rem .75rem; font-size: .9rem; }

.hero-art { position: relative; min-height: 560px; }
.art-sticker {
    position: absolute;
    border: 8px solid white;
    background: white;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.art-sticker img { width: 100%; height: 100%; object-fit: cover; }
.art-sticker.one { width: 46%; height: 46%; left: 2%; top: 5%; transform: rotate(-4deg); border-radius: 28px; background: #111; }
.art-sticker.two { width: 45%; height: 40%; right: 2%; top: 1%; transform: rotate(3deg); border-radius: 50%; background: #111; }
.art-sticker.three { width: 58%; height: 52%; right: 1%; bottom: 0; transform: rotate(-2deg); border-radius: 26px; }
.art-sticker.four { width: 35%; height: 45%; left: 0; bottom: 1%; transform: rotate(5deg); border-radius: 28px; background: #121212; }
.doodle-star { position: absolute; font-family: "Permanent Marker"; font-size: 3rem; color: var(--purple); }
.doodle-star.a { left: 43%; top: 43%; transform: rotate(12deg); }
.doodle-star.b { right: 0; bottom: 42%; color: var(--orange); }

.hub-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.hub-card {
    min-height: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    color: var(--ink);
    text-decoration: none;
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    isolation: isolate;
}
.hub-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: -2; }
.hub-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(transparent 25%, rgba(0,0,0,.88)); }
.hub-card div { position: absolute; left: 1rem; right: 1rem; bottom: .9rem; }
.hub-card h3 {
    margin: 0;
    color: #000;
    font-family: "Permanent Marker";
    font-size: 1.7rem;
    -webkit-text-stroke: 1.25px #fff;
    paint-order: stroke fill;
    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff;
}
.hub-card p {
    margin: .2rem 0 0;
    color: #000;
    font-size: .92rem;
    font-weight: 700;
    -webkit-text-stroke: .55px #fff;
    paint-order: stroke fill;
    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff;
}
.hub-card:nth-child(2) { transform: rotate(1deg); }
.hub-card:nth-child(3) { transform: rotate(-1deg); }
.hub-card:hover { transform: translateY(-5px) rotate(0); }

.art-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}
.art-card {
    background: #fffdf7;
    border: 2px solid var(--ink);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 5px 5px 0 rgba(17,17,17,.9);
    text-decoration: none;
    transition: transform .16s ease;
}
.art-card:hover { transform: translateY(-4px) rotate(.3deg); }
.art-card-image { aspect-ratio: 1 / 1; background: #171717; overflow: hidden; }
.art-card-image img { width: 100%; height: 100%; object-fit: contain; }
.art-card-copy { padding: .9rem 1rem 1.1rem; }
.art-card h3 { margin: 0; font-size: 1.1rem; }
.art-card p { margin: .2rem 0 0; color: #675e66; font-size: .92rem; }

.split-feature { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1.5rem; }
.paper-panel {
    background: #fffaf0;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    padding: clamp(1.3rem, 3vw, 2.3rem);
    box-shadow: var(--shadow);
}
.feature-list { display: grid; gap: 1rem; }
.feature-row {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 1.1rem;
    align-items: center;
    color: inherit;
    text-decoration: none;
    padding: .75rem;
    border-radius: 16px;
}
.feature-row:hover { background: rgba(122,59,209,.08); }
.feature-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; background: #181818; }
.feature-row h3 { margin: 0 0 .25rem; }
.feature-row p { margin: 0; }

.collab-panel { background: var(--ink); color: white; position: relative; overflow: hidden; }
.collab-panel::after { content: '✦'; position: absolute; right: 1rem; top: 0; font-size: 9rem; color: rgba(122,59,209,.25); }
.collab-panel a { color: #d7b6ff; }
.closed-note {
    margin-top: 1.2rem;
    padding: .75rem 1rem;
    background: var(--yellow);
    color: var(--ink);
    border: 2px solid var(--ink);
    transform: rotate(-1deg);
    font-weight: 700;
}

.about-strip { display: grid; grid-template-columns: 180px 1fr; gap: 2rem; align-items: center; }
.about-strip img { aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 6px solid white; background: var(--purple); box-shadow: 5px 5px 0 var(--ink); }

.page-hero { padding: clamp(4rem, 8vw, 7rem) 0 2.5rem; }
.page-title { font-size: clamp(3.6rem, 8vw, 7rem); }
.filter-row { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.4rem 0 2rem; }
.filter-chip {
    text-decoration: none;
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: .35rem .75rem;
    background: white;
}
.filter-chip.active { background: var(--purple); color: white; }
.collection-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.3rem; padding-bottom: 5rem; }
.collection-card { text-decoration: none; background: white; border: 2px solid var(--ink); border-radius: 22px; overflow: hidden; box-shadow: 5px 5px 0 var(--ink); }
.collection-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #181818; }
.collection-card-copy { padding: 1rem 1.1rem 1.25rem; }
.collection-card h2 { margin: 0; }
.collection-card p { margin: .4rem 0 0; }
.tag { display: inline-block; margin-bottom: .4rem; color: var(--purple-dark); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.empty-state { padding: 3rem; text-align: center; border: 3px dashed rgba(17,17,17,.35); border-radius: 22px; grid-column: 1/-1; }

.detail-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: clamp(2rem, 5vw, 5rem); padding: 4rem 0 6rem; align-items: start; }
.detail-art { background: #131313; border: 8px solid white; box-shadow: var(--shadow); border-radius: 28px; overflow: hidden; }
.detail-art img { width: 100%; max-height: 80vh; object-fit: contain; }
.detail-copy { position: sticky; top: 120px; }
.detail-copy h1 { font-family: "Permanent Marker"; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1; margin: .3rem 0 1rem; }
.detail-body { white-space: pre-line; }
.meta-list { display: grid; gap: .35rem; padding: 1rem 0; margin: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }

.site-footer { position: relative; background: var(--ink); color: white; padding: 4rem clamp(1rem,4vw,4rem) 2rem; margin-top: 4rem; }
.footer-grid { width: min(1220px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; }
.footer-grid h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid a { display: block; color: #ded3e5; margin: .3rem 0; }
.footer-brand { display: flex; gap: 1rem; }
.footer-brand img { width: 80px; height: 80px; object-fit: cover; border-radius: 20px; }
.footer-brand p { max-width: 24rem; margin: .25rem 0; }
.copyright { width: min(1220px, 100%); margin: 2rem auto 0; color: #aaa; font-size: .9rem; }

.flash { width: min(900px, calc(100% - 2rem)); margin: 1rem auto; padding: .8rem 1rem; border: 2px solid var(--ink); border-radius: 12px; background: white; }
.flash-success { border-color: var(--green); }
.flash-error { border-color: var(--rose); }

.admin-body { background: #eee7da; }
.admin-shell { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; padding: 2rem 0 5rem; }
.admin-topbar { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-bottom: 2rem; }
.admin-topbar h1 { margin: 0; font-family: "Permanent Marker"; font-size: 2.6rem; }
.admin-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.admin-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 1rem; margin-bottom: 2rem; }
.admin-card { background: white; border: 2px solid var(--ink); padding: 1rem; border-radius: 16px; text-decoration: none; box-shadow: 4px 4px 0 var(--ink); }
.admin-card strong { display: block; font-size: 1.4rem; }
.admin-table-wrap { overflow-x: auto; background: white; border: 2px solid var(--ink); border-radius: 16px; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.admin-table th, .admin-table td { padding: .75rem; border-bottom: 1px solid #ddd; text-align: left; vertical-align: middle; }
.admin-table img { width: 64px; height: 54px; object-fit: cover; background: #111; border-radius: 8px; }
.status-pill { display: inline-block; padding: .18rem .55rem; border-radius: 99px; background: #ddd; font-size: .83rem; }
.status-published { background: #ccebb8; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.form-field { display: grid; gap: .35rem; }
.form-field.full { grid-column: 1/-1; }
.form-field label { font-weight: 700; }
.form-field input, .form-field textarea, .form-field select {
    width: 100%;
    border: 2px solid #3b353b;
    border-radius: 10px;
    padding: .7rem .8rem;
    background: white;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-checks { display: flex; flex-wrap: wrap; gap: 1rem; }
.form-checks label { display: flex; gap: .4rem; align-items: center; }
.current-image { max-width: 320px; max-height: 260px; object-fit: contain; background: #111; border-radius: 14px; }
.login-shell { min-height: 100vh; display: grid; place-items: center; padding: 2rem; }
.login-card { width: min(460px, 100%); background: white; border: 3px solid var(--ink); border-radius: 24px; padding: 2rem; box-shadow: 8px 8px 0 var(--ink); }
.login-card h1 { font-family: "Permanent Marker"; font-size: 3rem; margin-top: 0; }

@media (max-width: 1050px) {
    .primary-nav { position: fixed; inset: 88px 0 auto; display: none; flex-direction: column; align-items: stretch; background: var(--ink); padding: 1rem 2rem 2rem; }
    .primary-nav.open { display: flex; }
    .menu-toggle { display: block; }
    .hero { grid-template-columns: 1fr; }
    .hero-art { min-height: 500px; }
    .hub-grid { grid-template-columns: repeat(3, 1fr); }
    .art-grid { grid-template-columns: repeat(3, 1fr); }
    .admin-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
    body { font-size: 16px; }
    .brand span { display: none; }
    .hero { min-height: auto; padding-top: 3.2rem; }
    .display-title {
        font-size: clamp(3rem, 14vw, 5rem);
        line-height: .9;
    }
    .display-title .title-second-line {
        white-space: nowrap;
    }
    .hero-art { min-height: 390px; }
    .hub-grid, .art-grid, .collection-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
    .hub-card { min-height: 230px; }
    .split-feature, .detail-layout { grid-template-columns: 1fr; }
    .detail-copy { position: static; }
    .feature-row { grid-template-columns: 110px 1fr; }
    .about-strip { grid-template-columns: 110px 1fr; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field.full { grid-column: auto; }
    .admin-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .page-shell { width: min(100% - 1.2rem, 1220px); }
    .hero-art { min-height: 320px; }
    .hub-grid, .art-grid, .collection-grid, .related-grid { grid-template-columns: 1fr; }
    .art-sticker.one { width: 50%; height: 45%; }
    .art-sticker.two { width: 47%; height: 42%; }
    .art-sticker.three { width: 58%; height: 48%; }
    .art-sticker.four { width: 39%; height: 42%; }
    .feature-row { grid-template-columns: 1fr; }
    .feature-row img { aspect-ratio: 16/9; }
    .about-strip { grid-template-columns: 1fr; text-align: center; }
    .about-strip img { width: 150px; margin: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .admin-grid { grid-template-columns: 1fr; }
}


.type-dependent[hidden] { display: none !important; }
.relation-picker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: .6rem;
    max-height: 480px;
    overflow-y: auto;
    padding: .25rem;
}
.relation-picker label {
    display: grid;
    grid-template-columns: auto 58px 1fr;
    gap: .55rem;
    align-items: center;
    border: 2px solid #3b353b;
    border-radius: 12px;
    padding: .5rem;
    background: white;
    cursor: pointer;
}
.relation-picker img { width: 58px; height: 50px; object-fit: cover; border-radius: 8px; background: #111; }
.series-home-section { padding-top: 0; }
.series-preview-grid { padding-bottom: 0; }
.series-piece-section { padding: 0 0 5rem; }
.series-piece-grid { padding-bottom: 0; }

@media (max-width: 800px) {
    .relation-picker { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
    .relation-picker { grid-template-columns: 1fr; }
}

/* Series editor improvements */
.relation-picker .relation-choice.selected {
    border-color: var(--purple);
    box-shadow: 0 0 0 2px rgba(111, 45, 189, .14);
    background: #faf5ff;
}
.relation-picker .relation-choice input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
    accent-color: var(--purple);
}
.relation-picker .relation-choice span small {
    display: block;
    margin-top: .15rem;
    color: #725f72;
    font-size: .72rem;
}
.remove-image-check {
    display: block;
    margin-top: .65rem;
    font-size: .88rem;
}

/* Artwork protection: discourages casual saving without interfering with viewing. */
.protected-image {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
}

.art-protection-notice {
    position: fixed;
    z-index: 10000;
    left: 50%;
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    width: min(calc(100% - 2rem), 520px);
    transform: translate(-50%, 140%);
    opacity: 0;
    padding: .9rem 1.1rem;
    border: 2px solid var(--ink);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    text-align: center;
    font-weight: 700;
    transition: transform .2s ease, opacity .2s ease;
    pointer-events: none;
}

.art-protection-notice.show {
    transform: translate(-50%, 0);
    opacity: 1;
}


/* Stronger public preview protection. The delivered file is also reduced and
   watermarked server-side, so browser inspection never receives the clean master. */
.detail-art,
.art-card-image,
.collection-card,
.feature-row,
.hero-art {
    position: relative;
}

.detail-art img,
.art-card-image img,
.collection-card img,
.feature-row img,
.hero-art img {
    pointer-events: none;
}

.art-copyright-badge {
    position: absolute;
    z-index: 4;
    right: .75rem;
    bottom: .75rem;
    max-width: calc(100% - 1.5rem);
    padding: .4rem .65rem;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 999px;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,.35);
    pointer-events: none;
}

.art-protection-surface::after {
    content: '';
    position: absolute;
    z-index: 3;
    inset: 0;
    background: transparent;
    pointer-events: auto;
}


/* Homepage content is controlled by the admin Featured/Homepage checkbox. */
.hub-card-placeholder {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: grid;
    place-items: center;
    overflow: hidden;
    font-family: "Spooky Punk", "Permanent Marker", cursive;
    font-size: clamp(5rem, 10vw, 9rem);
    color: rgba(255,255,255,.86);
    background:
        radial-gradient(circle at 22% 28%, rgba(255,255,255,.2) 0 5%, transparent 6%),
        radial-gradient(circle at 78% 35%, rgba(255,255,255,.14) 0 7%, transparent 8%),
        linear-gradient(145deg, var(--purple), var(--orange));
}
.hub-card:nth-child(even) .hub-card-placeholder {
    background:
        radial-gradient(circle at 70% 25%, rgba(255,255,255,.2) 0 6%, transparent 7%),
        linear-gradient(145deg, var(--orange), var(--purple-dark));
}
.hero-art-placeholder {
    position: absolute;
    inset: 8% 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3rem);
    border: 8px solid white;
    border-radius: 32px;
    box-shadow: var(--shadow);
    background:
        radial-gradient(circle at 18% 24%, rgba(255,255,255,.22) 0 6%, transparent 7%),
        radial-gradient(circle at 82% 70%, rgba(255,255,255,.18) 0 9%, transparent 10%),
        linear-gradient(135deg, var(--purple), var(--orange));
    transform: rotate(-2deg);
}
.hero-art-placeholder span {
    color: white;
    font-size: clamp(3rem, 8vw, 7rem);
    text-shadow: 4px 4px 0 rgba(0,0,0,.25);
}
.art-sticker {
    text-decoration: none;
}


/* Editable content-type manager */
.type-help-panel {
    margin-bottom: 2rem;
}
.type-help-panel h2 {
    margin-top: 0;
}
.type-manager-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, .8fr);
    gap: 2rem;
    align-items: start;
}
.type-form-panel {
    position: sticky;
    top: 1rem;
}
.type-form-panel h2 {
    margin-top: 0;
    font-family: "Permanent Marker", cursive;
    font-size: 2rem;
}
.type-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
}
.type-placement-checks {
    align-items: flex-start;
    flex-direction: column;
}
.inline-form {
    display: inline;
}
.link-button {
    border: 0;
    background: none;
    color: inherit;
    text-decoration: underline;
    padding: 0;
    cursor: pointer;
}
.link-button-danger {
    color: #a21c3c;
}
.homepage-collection-grid {
    padding-bottom: 0;
}
.homepage-type-section + .homepage-type-section {
    padding-top: 0;
}

@media (max-width: 900px) {
    .type-manager-layout {
        grid-template-columns: 1fr;
    }
    .type-form-panel {
        position: static;
    }
}
