:root {
    --ink: #0c0c0c;
    --paper: #ffffff;
    --soft: #f1f1f1;
    --soft-dark: #e5e5e5;
    --line: #d7d7d7;
    --muted: #707070;
    --green: #79ee9d;
    --font: "Noto Sans KR", "Inter", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
    --font-heading: "Syncopate", "Inter", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--paper);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--green);
    color: var(--ink);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 76px;
    padding-right: max(40px, calc((100vw - 1400px) / 2 + 40px));
    padding-left: max(40px, calc((100vw - 1400px) / 2 + 40px));
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    width: fit-content;
}

.brand img {
    display: block;
    width: 154px;
    height: auto;
}

.header-series,
.header-index {
    margin: 0;
    color: var(--ink);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-decoration: none;
}

.header-series {
    display: inline-flex;
    align-items: center;
    gap: .48em;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: .1em;
}

.header-series-lead {
    color: var(--ink);
}

.header-series-accent {
    background: linear-gradient(108deg, #4fba70 0 42%, #a7f5bd 48%, #eefef3 50%, #a7f5bd 52%, #4fba70 58% 100%);
    background-position: 50% 50%;
    background-size: 160% 100%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    filter: brightness(1.03);
    text-shadow: 0 0 7px rgba(79, 186, 112, .16);
}

.header-index {
    color: var(--muted);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 18px;
}

.admin-shortcut {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    text-decoration: none;
}

.admin-shortcut:hover {
    background: var(--green);
    color: var(--ink);
}

main {
    width: min(calc(100% - 80px), 1120px);
    margin: 0 auto;
}

.archive-heading {
    margin-top: 64px;
    padding: 76px 68px 70px;
    border-bottom: 0;
    border-radius: 16px;
    background: var(--ink);
    color: var(--paper);
}

.archive-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 30px;
    color: #929292;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.archive-heading h1 {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: clamp(16px, 2.4vw, 28px);
    width: fit-content;
    margin-bottom: 46px;
    padding-bottom: 25px;
    border-bottom: 1px solid #454545;
    font-family: var(--font-heading);
    font-size: clamp(44px, 6vw, 70px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.06em;
    white-space: nowrap;
}

.archive-heading h1 span {
    display: block;
}

.archive-title-lead {
    flex: 0 0 auto;
    color: var(--paper);
}

.archive-title-accent {
    position: relative;
    flex: 0 0 auto;
    background: linear-gradient(108deg, var(--green) 0 42%, #bfffd2 48%, #f3fff7 50%, #bfffd2 52%, var(--green) 58% 100%);
    background-position: 50% 50%;
    background-size: 160% 100%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    filter: brightness(1.02);
    text-shadow: 0 0 12px rgba(121, 238, 157, .2);
}

.archive-subtitle {
    margin-bottom: 34px;
    font-size: clamp(21px, 2.3vw, 28px);
    color: var(--paper);
    font-weight: 500;
    letter-spacing: -0.035em;
}

.archive-disclosure {
    max-width: 760px;
    color: #a5a5a5;
    font-size: 14px;
    line-height: 1.9;
}

.archive-disclosure p {
    margin-bottom: 14px;
}

.archive-disclosure p:last-child {
    margin-bottom: 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.post-grid > .empty-state {
    grid-column: 1 / -1;
    padding: 72px 38px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    color: var(--muted);
    text-align: center;
}

.post-card {
    display: flex;
    position: relative;
    overflow: hidden;
    min-width: 0;
    min-height: 360px;
    padding: 28px 24px 24px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    background: #fafafa;
    color: #000;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    isolation: isolate;
    line-height: 1.5;
    text-decoration: none;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.post-card::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(250, 250, 250, .99) 0%, rgba(250, 250, 250, .96) 42%, rgba(250, 250, 250, .78) 68%, rgba(250, 250, 250, .16) 100%);
    content: "";
    pointer-events: none;
    transition: background .35s ease;
}

.post-card > :not(.post-card-portrait) {
    position: relative;
    z-index: 2;
}

.post-card:hover {
    border-color: rgba(0, 0, 0, .3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}

.post-card:hover::before {
    background: linear-gradient(90deg, rgba(248, 248, 248, .99) 0%, rgba(248, 248, 248, .92) 38%, rgba(248, 248, 248, .58) 65%, rgba(248, 248, 248, .04) 100%);
}

.post-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    color: #777;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.post-card-portrait {
    position: absolute;
    z-index: 0;
    top: var(--portrait-top, 0);
    right: var(--portrait-right, -12%);
    overflow: hidden;
    width: var(--portrait-width, 84%);
    height: var(--portrait-height, 100%);
    opacity: .17;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 24%, #000 58%);
    pointer-events: none;
    transform: scale(var(--portrait-scale, 1.04));
    transform-origin: 70% 50%;
    transition: opacity .5s ease, transform .75s cubic-bezier(.2, .75, .2, 1);
}

.post-card-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    filter: grayscale(1) contrast(1.08);
    mix-blend-mode: multiply;
    object-fit: cover;
    object-position: var(--portrait-position, 50% 50%);
    transition: filter .35s ease, transform .55s cubic-bezier(.2, .75, .2, 1);
}

.post-card.portrait-variant-1 {
    --portrait-right: -14%;
    --portrait-scale: 1.08;
    --portrait-position: 46% 48%;
}

.post-card.portrait-variant-2 {
    --portrait-top: 5%;
    --portrait-right: -6%;
    --portrait-width: 76%;
    --portrait-height: 94%;
    --portrait-scale: 1.16;
    --portrait-position: 58% 34%;
}

.post-card.portrait-variant-3 {
    --portrait-top: -7%;
    --portrait-right: -20%;
    --portrait-width: 92%;
    --portrait-height: 108%;
    --portrait-scale: 1;
    --portrait-position: 40% 58%;
}

.post-card.portrait-variant-4 {
    --portrait-top: 11%;
    --portrait-right: -10%;
    --portrait-width: 80%;
    --portrait-height: 89%;
    --portrait-scale: 1.2;
    --portrait-position: 54% 26%;
}

@media (hover: hover) {
    .post-card:hover .post-card-portrait {
        opacity: .38;
        transform: translateX(-3px) scale(calc(var(--portrait-scale, 1.04) + .035));
    }

    .post-card:hover .post-card-portrait img {
        filter: grayscale(.28) contrast(1.08);
        transform: scale(1.025);
    }
}

.post-card-arrow {
    color: #4f9f68;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.post-card-number {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    color: #000;
    font-family: "Inter", sans-serif;
}

.post-card-number small {
    color: #4f9f68;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.post-card-number strong {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.2px;
}

.post-card h2 {
    margin-bottom: 16px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -.45px;
    word-break: keep-all;
}

.post-card-summary {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 24px;
    color: #686868;
    font-size: 12px;
    line-height: 1.8;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.post-card:hover .post-card-summary {
    color: #686868;
}

.post-card-focus {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.post-card-focus li {
    padding: 4px 6px;
    border: 1px solid #d6d6d6;
    color: #777;
    font-size: 9px;
}

.post-card:hover .post-card-focus li {
    border-color: #d6d6d6;
    color: #777;
}

@media (max-width: 991px) {
    .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .post-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }

    .post-card {
        min-height: 0;
        padding: 26px 22px;
    }

    .post-card-top {
        margin-bottom: 28px;
    }

    .post-card-portrait {
        --portrait-width: 72%;
        --portrait-right: -13%;
        opacity: .19;
    }

    .post-card-number strong {
        font-size: 26px;
    }

    .post-card h2 {
        font-size: 20px;
    }

    .post-card-summary {
        -webkit-line-clamp: 3;
    }
}

.archive-return {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 44px;
    margin: 80px 0 112px;
    padding: 50px 56px;
    border-radius: 16px;
    background: var(--soft);
}

.archive-return-label {
    margin-bottom: 13px;
    color: #4f9f68;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
}

.archive-return h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -.045em;
}

.archive-return a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 24px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -.01em;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.archive-return a:hover {
    background: var(--green);
    color: var(--ink);
    transform: translateY(-2px);
}

.detail-back {
    padding-top: 72px;
}

.detail-back a {
    color: var(--ink);
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none;
}

.case-heading {
    padding: 52px 0 76px;
}

.case-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    color: var(--muted);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.case-number {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid var(--ink);
    color: var(--ink);
}

.case-number.indexed {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 0;
    border: 0;
}

.case-number.indexed small {
    color: #4f9f68;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .16em;
}

.case-number.indexed strong {
    color: var(--ink);
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.05em;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    max-width: 980px;
    margin-bottom: 28px;
    font-size: clamp(38px, 4.3vw, 56px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.055em;
}

.case-summary {
    max-width: 780px;
    margin-bottom: 34px;
    color: #454545;
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.85;
    letter-spacing: -0.02em;
}

.case-focus {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.case-focus li {
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
    color: #4f4f4f;
    font-size: 13px;
}

.conversation-section {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f6f6f6;
}

@media (min-width: 721px) {
    .detail-back,
    .case-heading,
    .conversation-section {
        width: 80%;
        margin-right: auto;
        margin-left: auto;
    }

    .outcome,
    .disclosure,
    .detail-bottom-nav {
        width: 80%;
        margin-right: auto;
        margin-left: auto;
    }
}

.conversation-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 90px;
    padding: 20px 30px;
    background: var(--ink);
    color: var(--paper);
}

.conversation-head > div {
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.conversation-kicker,
.status {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.conversation-head strong {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c7c7c7;
}

.status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.conversation-body {
    padding: clamp(34px, 6vw, 76px);
}

.message-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 10px;
}

.message-row.group-start {
    margin-top: 38px;
}

.message-row:first-child {
    margin-top: 0;
}

.message-row.studio {
    justify-content: flex-end;
}

.avatar-space {
    flex: 0 0 96px;
    width: 96px;
    min-height: 96px;
}

.avatar-placeholder {
    overflow: hidden;
    width: 96px;
    height: 96px;
    border: 1px solid #b9b9b9;
    border-radius: 50%;
    background: var(--paper);
}

.avatar-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-profile {
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.client-profile-effect {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.7);
    transition: opacity 180ms ease, transform 260ms cubic-bezier(.2, .8, .2, 1);
}

.client-avatar {
    position: relative;
    z-index: 2;
    transform-origin: center;
    transition: border-color 180ms ease, border-width 180ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(.2, .75, .25, 1);
}

.client-avatar img {
    position: absolute;
    inset: 0;
    transition: filter 220ms ease, opacity 160ms ease, transform 260ms cubic-bezier(.2, .8, .2, 1);
}

.client-avatar-base {
    z-index: 1;
    opacity: 1;
}

.client-avatar-hover {
    z-index: 2;
    opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
    .client-profile:hover {
        z-index: 30;
    }

    .client-avatar {
        transition: border-color 180ms ease, border-width 180ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(.2, .75, .25, 1);
    }

    .client-profile:hover .client-avatar {
        border-color: var(--line);
        border-width: .5px;
    }

    .client-profile:hover .client-avatar-base {
        opacity: 0;
    }

    .client-profile:hover .client-avatar-hover {
        opacity: 1;
    }

    /* 남자 2: 시네마틱 오비트와 스캔 라이트 */
    .client-profile--male-2 .client-profile-effect {
        width: 150px;
        height: 150px;
        border: 2px solid var(--green);
        border-right-color: transparent;
        border-bottom-color: var(--ink);
        border-radius: 50%;
        box-shadow: 0 0 28px rgba(121, 238, 157, .38);
    }

    .client-profile--male-2 .client-profile-effect::before {
        position: absolute;
        inset: 10px;
        border: 1px solid rgba(12, 12, 12, .72);
        border-top-color: transparent;
        border-radius: 50%;
        content: "";
    }

    .client-profile--male-2 .client-avatar::after {
        position: absolute;
        z-index: 3;
        inset: -35%;
        background: linear-gradient(105deg, transparent 39%, rgba(255, 255, 255, .84) 49%, rgba(121, 238, 157, .74) 51%, transparent 61%);
        content: "";
        opacity: 0;
        pointer-events: none;
        transform: translateX(-115%) rotate(7deg);
    }

    .client-profile--male-2:hover .client-avatar {
        box-shadow: 0 20px 52px rgba(0, 0, 0, .28), 0 0 0 5px rgba(121, 238, 157, .16);
        transform: scale(1.7) rotate(-2deg);
    }

    .client-profile--male-2:hover .client-avatar img {
        filter: contrast(1.12) saturate(.82);
    }

    .client-profile--male-2:hover .client-avatar::after {
        animation: client-male-2-scan 4.6s cubic-bezier(.2, .8, .2, 1) infinite;
    }

    .client-profile--male-2:hover .client-profile-effect {
        opacity: 1;
        animation: client-male-2-orbit 1.5s linear infinite;
    }

    /* 남자 3: 코믹 버스트와 방정맞은 바운스 */
    .client-profile--male-3 .client-profile-effect {
        width: 158px;
        height: 158px;
        border: 2px solid var(--ink);
        border-radius: 50%;
        background: repeating-conic-gradient(from 4deg, var(--green) 0 5deg, transparent 5deg 14deg);
    }

    .client-profile--male-3 .client-profile-effect::before,
    .client-profile--male-3 .client-profile-effect::after {
        position: absolute;
        z-index: 4;
        padding: 2px 7px 3px;
        border: 2px solid var(--ink);
        background: var(--paper);
        color: var(--ink);
        font-family: var(--font);
        font-size: 17px;
        font-weight: 800;
        line-height: 1;
        box-shadow: 3px 3px 0 var(--green);
    }

    .client-profile--male-3 .client-profile-effect::before {
        top: 0;
        right: -8px;
        content: "ㅋㅋ";
        transform: rotate(9deg);
    }

    .client-profile--male-3 .client-profile-effect::after {
        bottom: 2px;
        left: -7px;
        content: "?!";
        transform: rotate(-12deg);
    }

    .client-profile--male-3:hover .client-avatar {
        box-shadow: 0 18px 44px rgba(0, 0, 0, .23);
        animation: client-male-3-chaos .52s steps(2, end) infinite;
    }

    .client-profile--male-3:hover .client-avatar img {
        filter: contrast(1.09) saturate(1.12);
    }

    .client-profile--male-3:hover .client-profile-effect {
        opacity: 1;
        animation: client-male-3-burst .72s steps(3, end) infinite;
    }

    /* 여자 1: 부드러운 글로우와 하트·스파클 */
    .client-profile--female-1 .client-profile-effect {
        width: 148px;
        height: 148px;
        border: 1px solid rgba(121, 238, 157, .48);
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, .9) 0 30%, rgba(121, 238, 157, .34) 54%, transparent 73%);
        filter: drop-shadow(0 0 22px rgba(121, 238, 157, .48));
    }

    .client-profile--female-1 .client-profile-effect::before,
    .client-profile--female-1 .client-profile-effect::after {
        position: absolute;
        z-index: 4;
        color: var(--green);
        line-height: 1;
        text-shadow: 0 2px 0 var(--paper), 0 0 12px rgba(121, 238, 157, .58);
    }

    .client-profile--female-1 .client-profile-effect::before {
        top: -7px;
        right: -2px;
        content: "♥";
        font-size: 30px;
        text-shadow: -118px 52px 0 rgba(121, 238, 157, .78), -38px 128px 0 rgba(121, 238, 157, .62), 0 2px 0 var(--paper), 0 0 14px rgba(121, 238, 157, .62);
    }

    .client-profile--female-1 .client-profile-effect::after {
        bottom: 2px;
        left: -5px;
        content: "✦";
        font-size: 34px;
        text-shadow: 34px -123px 0 rgba(121, 238, 157, .72), 128px -65px 0 rgba(121, 238, 157, .58), 0 2px 0 var(--paper), 0 0 14px rgba(121, 238, 157, .62);
    }

    .client-profile--female-1:hover .client-avatar {
        box-shadow: 0 20px 48px rgba(0, 0, 0, .18), 0 0 0 7px rgba(121, 238, 157, .18);
        animation: client-female-1-float 1.65s ease-in-out infinite;
    }

    .client-profile--female-1:hover .client-avatar img {
        filter: brightness(1.04) contrast(1.03) saturate(.92);
        transform: scale(1.035);
    }

    .client-profile--female-1:hover .client-profile-effect {
        opacity: 1;
        animation: client-female-1-glow 1.65s ease-in-out infinite;
    }
}

/* 터치/클릭 강제 트리거 fallback (미디어 판별 실패 시에도 효과 유지) */
.client-profile.is-mobile-hover-active {
    z-index: 30;
}

.client-profile.is-mobile-hover-active .client-avatar {
    border-color: var(--line);
    border-width: .5px;
}

.client-profile.is-mobile-hover-active .client-avatar-base {
    opacity: 0;
}

.client-profile.is-mobile-hover-active .client-avatar-hover {
    opacity: 1;
}

.client-profile--male-2.is-mobile-hover-active .client-profile-effect {
    width: 150px;
    height: 150px;
    border: 2px solid var(--green);
    border-right-color: transparent;
    border-bottom-color: var(--ink);
    border-radius: 50%;
    box-shadow: 0 0 28px rgba(121, 238, 157, .38);
    opacity: 1;
    animation: client-male-2-orbit 1.5s linear infinite;
}

.client-profile--male-2.is-mobile-hover-active .client-profile-effect::before {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(12, 12, 12, .72);
    border-top-color: transparent;
    border-radius: 50%;
    content: "";
}

.client-profile--male-2.is-mobile-hover-active .client-avatar {
    box-shadow: 0 20px 52px rgba(0, 0, 0, .28), 0 0 0 5px rgba(121, 238, 157, .16);
    transform: scale(1.7) rotate(-2deg);
}

.client-profile--male-2.is-mobile-hover-active .client-avatar img {
    filter: contrast(1.12) saturate(.82);
}

.client-profile--male-2.is-mobile-hover-active .client-avatar::after {
    position: absolute;
    z-index: 3;
    inset: -35%;
    background: linear-gradient(105deg, transparent 39%, rgba(255, 255, 255, .84) 49%, rgba(121, 238, 157, .74) 51%, transparent 61%);
    content: "";
    opacity: 0;
    pointer-events: none;
    animation: client-male-2-scan 4.6s cubic-bezier(.2, .8, .2, 1) infinite;
    transform: translateX(-115%) rotate(7deg);
}

.client-profile--male-3.is-mobile-hover-active .client-avatar {
    box-shadow: 0 18px 44px rgba(0, 0, 0, .23);
    animation: client-male-3-chaos .52s steps(2, end) infinite;
}

.client-profile--male-3.is-mobile-hover-active .client-avatar img {
    filter: contrast(1.09) saturate(1.12);
}

.client-profile--male-3.is-mobile-hover-active .client-profile-effect {
    width: 158px;
    height: 158px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: repeating-conic-gradient(from 4deg, var(--green) 0 5deg, transparent 5deg 14deg);
    opacity: 1;
    animation: client-male-3-burst .72s steps(3, end) infinite;
}

.client-profile--male-3.is-mobile-hover-active .client-profile-effect::before,
.client-profile--male-3.is-mobile-hover-active .client-profile-effect::after {
    position: absolute;
    z-index: 4;
    padding: 2px 7px 3px;
    border: 2px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 3px 3px 0 var(--green);
}

.client-profile--male-3.is-mobile-hover-active .client-profile-effect::before {
    top: 0;
    right: -8px;
    content: "ㅋㅋ";
    transform: rotate(9deg);
}

.client-profile--male-3.is-mobile-hover-active .client-profile-effect::after {
    bottom: 2px;
    left: -7px;
    content: "?!";
    transform: rotate(-12deg);
}

.client-profile--female-1.is-mobile-hover-active .client-profile-effect {
    width: 148px;
    height: 148px;
    border: 1px solid rgba(121, 238, 157, .48);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .9) 0 30%, rgba(121, 238, 157, .34) 54%, transparent 73%);
    filter: drop-shadow(0 0 22px rgba(121, 238, 157, .48));
    opacity: 1;
    animation: client-female-1-glow 1.65s ease-in-out infinite;
}

.client-profile--female-1.is-mobile-hover-active .client-profile-effect::before,
.client-profile--female-1.is-mobile-hover-active .client-profile-effect::after {
    position: absolute;
    z-index: 4;
    color: var(--green);
    line-height: 1;
    text-shadow: 0 2px 0 var(--paper), 0 0 12px rgba(121, 238, 157, .58);
}

.client-profile--female-1.is-mobile-hover-active .client-profile-effect::before {
    top: -7px;
    right: -2px;
    content: "♥";
    font-size: 30px;
    text-shadow: -118px 52px 0 rgba(121, 238, 157, .78), -38px 128px 0 rgba(121, 238, 157, .62), 0 2px 0 var(--paper), 0 0 14px rgba(121, 238, 157, .62);
}

.client-profile--female-1.is-mobile-hover-active .client-profile-effect::after {
    bottom: 2px;
    left: -5px;
    content: "✦";
    font-size: 34px;
    text-shadow: 34px -123px 0 rgba(121, 238, 157, .72), 128px -65px 0 rgba(121, 238, 157, .58), 0 2px 0 var(--paper), 0 0 14px rgba(121, 238, 157, .62);
}

.client-profile--female-1.is-mobile-hover-active .client-avatar {
    box-shadow: 0 20px 48px rgba(0, 0, 0, .18), 0 0 0 7px rgba(121, 238, 157, .18);
    animation: client-female-1-float 1.65s ease-in-out infinite;
}

.client-profile--female-1.is-mobile-hover-active .client-avatar img {
    filter: brightness(1.04) contrast(1.03) saturate(.92);
    transform: scale(1.035);
}

.studio-avatar.is-mobile-hover-active {
    animation: studio-glitch-frame .58s steps(2, end) infinite;
    box-shadow: -3px 0 0 rgba(121, 238, 157, .9), 3px 0 0 rgba(255, 255, 255, .75), 0 12px 30px rgba(0, 0, 0, .2);
}

.studio-avatar.is-mobile-hover-active img {
    animation: studio-glitch-image .36s steps(2, end) infinite;
}

.studio-avatar.is-mobile-hover-active::before,
.studio-avatar.is-mobile-hover-active::after {
    opacity: .82;
    filter: drop-shadow(-3px 0 0 var(--green));
    animation: studio-glitch-slice-a .29s steps(2, end) infinite;
}

.studio-avatar.is-mobile-hover-active::before {
    clip-path: polygon(0 8%, 100% 8%, 100% 24%, 0 24%, 0 51%, 100% 51%, 100% 62%, 0 62%);
    animation: studio-glitch-slice-a .29s steps(2, end) infinite;
}

.studio-avatar.is-mobile-hover-active::after {
    opacity: .64;
    filter: drop-shadow(3px 0 0 rgba(255, 255, 255, .9));
    clip-path: polygon(0 29%, 100% 29%, 100% 43%, 0 43%, 0 70%, 100% 70%, 100% 89%, 0 89%);
    animation: studio-glitch-slice-b .37s steps(2, end) infinite;
}

@media (hover: none), (pointer: coarse) {
    .client-profile--male-2 .client-profile-effect {
        width: 150px;
        height: 150px;
        border: 2px solid var(--green);
        border-right-color: transparent;
        border-bottom-color: var(--ink);
        border-radius: 50%;
        box-shadow: 0 0 28px rgba(121, 238, 157, .38);
    }

    .client-profile--male-2 .client-profile-effect::before {
        position: absolute;
        inset: 10px;
        border: 1px solid rgba(12, 12, 12, .72);
        border-top-color: transparent;
        border-radius: 50%;
        content: "";
    }

    .client-profile--male-2 .client-avatar::after {
        position: absolute;
        z-index: 3;
        inset: -35%;
        background: linear-gradient(105deg, transparent 39%, rgba(255, 255, 255, .84) 49%, rgba(121, 238, 157, .74) 51%, transparent 61%);
        content: "";
        opacity: 0;
        pointer-events: none;
        transform: translateX(-115%) rotate(7deg);
    }

    .client-profile--male-3 .client-profile-effect {
        width: 158px;
        height: 158px;
        border: 2px solid var(--ink);
        border-radius: 50%;
        background: repeating-conic-gradient(from 4deg, var(--green) 0 5deg, transparent 5deg 14deg);
    }

    .client-profile--male-3 .client-profile-effect::before,
    .client-profile--male-3 .client-profile-effect::after {
        position: absolute;
        z-index: 4;
        padding: 2px 7px 3px;
        border: 2px solid var(--ink);
        background: var(--paper);
        color: var(--ink);
        font-family: var(--font);
        font-size: 17px;
        font-weight: 800;
        line-height: 1;
        box-shadow: 3px 3px 0 var(--green);
    }

    .client-profile--male-3 .client-profile-effect::before {
        top: 0;
        right: -8px;
        content: "ㅋㅋ";
        transform: rotate(9deg);
    }

    .client-profile--male-3 .client-profile-effect::after {
        bottom: 2px;
        left: -7px;
        content: "?!";
        transform: rotate(-12deg);
    }

    .client-profile--female-1 .client-profile-effect {
        width: 148px;
        height: 148px;
        border: 1px solid rgba(121, 238, 157, .48);
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, .9) 0 30%, rgba(121, 238, 157, .34) 54%, transparent 73%);
        filter: drop-shadow(0 0 22px rgba(121, 238, 157, .48));
    }

    .client-profile--female-1 .client-profile-effect::before,
    .client-profile--female-1 .client-profile-effect::after {
        position: absolute;
        z-index: 4;
        color: var(--green);
        line-height: 1;
        text-shadow: 0 2px 0 var(--paper), 0 0 12px rgba(121, 238, 157, .58);
    }

    .client-profile--female-1 .client-profile-effect::before {
        top: -7px;
        right: -2px;
        content: "♥";
        font-size: 30px;
        text-shadow: -118px 52px 0 rgba(121, 238, 157, .78), -38px 128px 0 rgba(121, 238, 157, .62), 0 2px 0 var(--paper), 0 0 14px rgba(121, 238, 157, .62);
    }

    .client-profile--female-1 .client-profile-effect::after {
        bottom: 2px;
        left: -5px;
        content: "✦";
        font-size: 34px;
        text-shadow: 34px -123px 0 rgba(121, 238, 157, .72), 128px -65px 0 rgba(121, 238, 157, .58), 0 2px 0 var(--paper), 0 0 14px rgba(121, 238, 157, .62);
    }

    .client-profile.is-mobile-hover-active {
        z-index: 30;
    }

    .client-profile.is-mobile-hover-active .client-avatar {
        border-color: var(--line);
        border-width: .5px;
    }

    .client-profile.is-mobile-hover-active .client-avatar-base {
        opacity: 0;
    }

    .client-profile.is-mobile-hover-active .client-avatar-hover {
        opacity: 1;
    }

    .client-profile--male-2.is-mobile-hover-active .client-avatar {
        box-shadow: 0 20px 52px rgba(0, 0, 0, .28), 0 0 0 5px rgba(121, 238, 157, .16);
        transform: scale(1.7) rotate(-2deg);
    }

    .client-profile--male-2.is-mobile-hover-active .client-avatar img {
        filter: contrast(1.12) saturate(.82);
    }

    .client-profile--male-2.is-mobile-hover-active .client-avatar::after {
        animation: client-male-2-scan 4.6s cubic-bezier(.2, .8, .2, 1) infinite;
    }

    .client-profile--male-2.is-mobile-hover-active .client-profile-effect {
        opacity: 1;
        animation: client-male-2-orbit 1.5s linear infinite;
    }

    .client-profile--male-3.is-mobile-hover-active .client-avatar {
        box-shadow: 0 18px 44px rgba(0, 0, 0, .23);
        animation: client-male-3-chaos .52s steps(2, end) infinite;
    }

    .client-profile--male-3.is-mobile-hover-active .client-avatar img {
        filter: contrast(1.09) saturate(1.12);
    }

    .client-profile--male-3.is-mobile-hover-active .client-profile-effect {
        opacity: 1;
        animation: client-male-3-burst .72s steps(3, end) infinite;
    }

    .client-profile--female-1.is-mobile-hover-active .client-avatar {
        box-shadow: 0 20px 48px rgba(0, 0, 0, .18), 0 0 0 7px rgba(121, 238, 157, .18);
        animation: client-female-1-float 1.65s ease-in-out infinite;
    }

    .client-profile--female-1.is-mobile-hover-active .client-avatar img {
        filter: brightness(1.04) contrast(1.03) saturate(.92);
        transform: scale(1.035);
    }

    .client-profile--female-1.is-mobile-hover-active .client-profile-effect {
        opacity: 1;
        animation: client-female-1-glow 1.65s ease-in-out infinite;
    }

    .studio-avatar.is-mobile-hover-active {
        animation: studio-glitch-frame .58s steps(2, end) infinite;
        box-shadow: -3px 0 0 rgba(121, 238, 157, .9), 3px 0 0 rgba(255, 255, 255, .75), 0 12px 30px rgba(0, 0, 0, .2);
    }

    .studio-avatar.is-mobile-hover-active img {
        animation: studio-glitch-image .36s steps(2, end) infinite;
    }

    .studio-avatar.is-mobile-hover-active::before,
    .studio-avatar.is-mobile-hover-active::after {
        opacity: .82;
        filter: drop-shadow(-3px 0 0 var(--green));
    }
}

@keyframes client-male-2-orbit {
    from { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    to { transform: translate(-50%, -50%) scale(1) rotate(360deg); }
}

@keyframes client-male-2-scan {
    0% { opacity: 0; transform: translateX(-115%) rotate(7deg); }
    4% { opacity: 1; }
    16% { opacity: 0; transform: translateX(115%) rotate(7deg); }
    17%, 100% { opacity: 0; transform: translateX(115%) rotate(7deg); }
}

@keyframes client-male-3-chaos {
    0%, 100% { transform: translate(0, 0) scale(1.54) rotate(-4deg); }
    25% { transform: translate(3px, -3px) scale(1.61) rotate(5deg); }
    50% { transform: translate(-3px, 2px) scale(1.5) rotate(-6deg); }
    75% { transform: translate(2px, 3px) scale(1.6) rotate(4deg); }
}

@keyframes client-male-3-burst {
    0%, 100% { transform: translate(-50%, -50%) scale(.9) rotate(-3deg); }
    50% { transform: translate(-50%, -50%) scale(1.08) rotate(6deg); }
}

@keyframes client-female-1-float {
    0%, 100% { transform: translateY(1px) scale(1.58) rotate(-1deg); }
    50% { transform: translateY(-5px) scale(1.64) rotate(1deg); }
}

@keyframes client-female-1-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(.92) rotate(-3deg); }
    50% { transform: translate(-50%, -50%) scale(1.08) rotate(4deg); }
}

@media (prefers-reduced-motion: reduce) {
    .client-profile:hover .client-avatar,
    .client-profile:hover .client-profile-effect,
    .client-profile:hover .client-avatar::after {
        animation: none !important;
    }

    .client-profile:hover .client-avatar {
        transform: scale(1.25);
    }
}

.studio-avatar {
    position: relative;
    border-color: var(--ink);
    background: var(--ink);
    isolation: isolate;
}

.studio-avatar img {
    position: relative;
    z-index: 1;
    object-fit: contain;
}

.studio-avatar::before,
.studio-avatar::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    background: var(--ink) url("/worked-raw/assets/avatar-486.png") center / contain no-repeat;
    content: "";
    opacity: 0;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .studio-avatar:hover {
        animation: studio-glitch-frame .58s steps(2, end) infinite;
        box-shadow: -3px 0 0 rgba(121, 238, 157, .9), 3px 0 0 rgba(255, 255, 255, .75), 0 12px 30px rgba(0, 0, 0, .2);
    }

    .studio-avatar:hover img {
        animation: studio-glitch-image .36s steps(2, end) infinite;
    }

    .studio-avatar:hover::before {
        opacity: .82;
        filter: drop-shadow(-3px 0 0 var(--green));
        clip-path: polygon(0 8%, 100% 8%, 100% 24%, 0 24%, 0 51%, 100% 51%, 100% 62%, 0 62%);
        animation: studio-glitch-slice-a .29s steps(2, end) infinite;
    }

    .studio-avatar:hover::after {
        opacity: .64;
        filter: drop-shadow(3px 0 0 rgba(255, 255, 255, .9));
        clip-path: polygon(0 29%, 100% 29%, 100% 43%, 0 43%, 0 70%, 100% 70%, 100% 89%, 0 89%);
        animation: studio-glitch-slice-b .37s steps(2, end) infinite;
    }
}

@keyframes studio-glitch-frame {
    0%, 100% { transform: translate(0, 0); }
    24% { transform: translate(-1px, 0); }
    25% { transform: translate(2px, -1px); }
    52% { transform: translate(0, 1px); }
    53% { transform: translate(-2px, 0); }
    78% { transform: translate(1px, 0); }
}

@keyframes studio-glitch-image {
    0%, 100% { filter: none; transform: translate(0, 0); }
    34% { filter: contrast(1.3); transform: translate(-2px, 0); }
    67% { filter: brightness(1.15) contrast(1.12); transform: translate(2px, 0); }
}

@keyframes studio-glitch-slice-a {
    0%, 100% { transform: translateX(-4px); }
    50% { transform: translateX(5px); }
}

@keyframes studio-glitch-slice-b {
    0%, 100% { transform: translateX(5px); }
    50% { transform: translateX(-5px); }
}

@media (prefers-reduced-motion: reduce) {
    .studio-avatar:hover,
    .studio-avatar:hover img,
    .studio-avatar:hover::before,
    .studio-avatar:hover::after {
        animation: none !important;
    }

    .client-profile.is-mobile-hover-active .client-avatar,
    .client-profile.is-mobile-hover-active .client-profile-effect,
    .client-profile.is-mobile-hover-active .client-avatar::after,
    .studio-avatar.is-mobile-hover-active,
    .studio-avatar.is-mobile-hover-active img,
    .studio-avatar.is-mobile-hover-active::before,
    .studio-avatar.is-mobile-hover-active::after {
        animation: none !important;
    }

    .studio-avatar:hover::before,
    .studio-avatar:hover::after {
        opacity: 0;
    }

    .studio-avatar.is-mobile-hover-active::before,
    .studio-avatar.is-mobile-hover-active::after,
    .client-profile.is-mobile-hover-active .client-avatar {
        transform: scale(1.25);
    }
}

.message-stack {
    max-width: min(74%, 690px);
}

.studio .message-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.speaker-name {
    margin-bottom: 8px;
    color: #555;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.message-bubble {
    width: fit-content;
    margin-bottom: 0;
    padding: 15px 19px;
    border: 1px solid #c9c9c9;
    border-radius: 5px 19px 19px 19px;
    background: var(--paper);
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: -0.015em;
}

.studio .message-bubble {
    border-color: var(--ink);
    border-radius: 19px 5px 19px 19px;
    background: var(--ink);
    color: var(--paper);
}

.outcome {
    margin-top: 18px;
    padding: clamp(44px, 6vw, 74px);
    border-radius: 12px;
    background: var(--ink);
    color: var(--paper);
}

.outcome-label {
    margin-bottom: 30px;
    color: var(--green);
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.outcome-result {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--paper);
    font-size: clamp(19px, 2.2vw, 25px);
    line-height: 1.85;
    letter-spacing: -0.025em;
}

.disclosure {
    padding: 34px 0 88px;
    border-bottom: 1px solid var(--line);
}

.disclosure p {
    max-width: 760px;
    margin-bottom: 13px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.disclosure p:last-child {
    margin-bottom: 0;
}

.detail-bottom-nav {
    padding: 28px 0 88px;
}

.detail-bottom-nav a {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    min-height: 100px;
    padding: 0 26px 0 34px;
    border: 2px solid var(--ink);
    border-radius: 10px;
    background: var(--green);
    box-shadow: 0 8px 0 var(--ink), 0 18px 34px rgba(0, 0, 0, .12);
    color: var(--ink);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.025em;
    text-decoration: none;
    transform: translateY(0);
    transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.detail-bottom-nav a::before {
    position: absolute;
    z-index: 0;
    top: -45%;
    bottom: -45%;
    left: -32%;
    width: 24%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .74), transparent);
    content: "";
    pointer-events: none;
    transform: skewX(-18deg) translateX(0);
}

.detail-bottom-nav a span {
    position: relative;
    z-index: 1;
}

.detail-bottom-nav a span:last-child {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--green);
    font-family: "Inter", sans-serif;
    font-size: 23px;
    line-height: 1;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.detail-bottom-nav a:hover {
    background: #92f8b0;
    box-shadow: 0 12px 0 var(--ink), 0 24px 42px rgba(0, 0, 0, .17);
    color: var(--ink);
    transform: translateY(-4px);
}

.detail-bottom-nav a:hover::before {
    animation: detail-bottom-cta-shine .72s ease-out both;
}

.detail-bottom-nav a:hover span:last-child {
    background: var(--paper);
    color: var(--ink);
    transform: translateX(-4px);
}

.detail-bottom-nav a:active {
    box-shadow: 0 3px 0 var(--ink), 0 10px 20px rgba(0, 0, 0, .12);
    transform: translateY(5px);
}

.detail-bottom-nav a:focus-visible {
    outline: 4px solid rgba(121, 238, 157, .48);
    outline-offset: 5px;
}

@keyframes detail-bottom-cta-shine {
    from { transform: skewX(-18deg) translateX(0); }
    to { transform: skewX(-18deg) translateX(760%); }
}

.studio-footer {
    position: relative;
    padding: 82px max(40px, calc((100vw - 1120px) / 2)) 28px;
    border-top: 4px solid var(--green);
    background: var(--ink);
    color: var(--paper);
}

.studio-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .9fr) minmax(150px, .45fr);
    gap: clamp(46px, 7vw, 96px);
    min-height: 310px;
}

.studio-footer-brand img {
    display: block;
    width: 164px;
    height: auto;
    margin-bottom: 48px;
}

.studio-footer-brand > p {
    margin: 0;
    color: var(--paper);
    font-size: clamp(25px, 2.5vw, 38px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.045em;
}

.studio-footer-label {
    margin: 3px 0 50px;
    color: #878787;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
}

.studio-footer-copy {
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--paper);
    font-family: "Inter", sans-serif;
    font-size: clamp(15px, 1.5vw, 19px);
    font-weight: 500;
    cursor: copy;
    text-align: left;
}

.studio-footer-copy-state {
    min-width: 62px;
    padding: 7px 9px;
    border: 1px solid #3b3b3b;
    border-radius: 4px;
    color: #8c8c8c;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .14em;
    text-align: center;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.studio-footer-copy:hover .studio-footer-copy-state,
.studio-footer-copy:focus-visible .studio-footer-copy-state {
    border-color: var(--green);
    color: var(--green);
}

.studio-footer-copy:focus-visible {
    outline: 1px solid var(--green);
    outline-offset: 7px;
}

.studio-footer-copy.is-copied .studio-footer-copy-state {
    border-color: var(--green);
    background: var(--green);
    color: var(--ink);
}

.studio-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.studio-footer-links .studio-footer-label {
    margin-bottom: 32px;
}

.studio-footer-links a {
    color: #b7b7b7;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    text-decoration: none;
    transition: color 160ms ease;
}

.studio-footer-links a:hover {
    color: var(--paper);
}

.studio-footer-links .rss-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.studio-footer-links .rss-link span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.studio-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid #303030;
}

.studio-footer-bottom p {
    margin: 0;
    color: #777;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .15em;
}

@media (max-width: 720px) {
    .site-header {
        grid-template-columns: 1fr auto auto;
        gap: 12px;
        min-height: 68px;
        padding: 0 20px;
    }

    .brand img {
        width: 116px;
    }

    .header-series {
        font-size: 9px;
    }

    .header-index {
        display: none;
    }

    .header-actions {
        gap: 0;
    }

    .admin-shortcut {
        min-height: 30px;
        padding: 6px 9px;
        font-size: 9px;
    }

    main {
        width: min(100% - 32px, 1180px);
    }

    .archive-heading {
        margin-top: 20px;
        padding: 48px 22px 44px;
        border-radius: 12px;
    }

    .archive-meta {
        display: block;
        margin-bottom: 24px;
        line-height: 2;
    }

    .archive-meta span {
        display: block;
    }

    .archive-heading h1 {
        gap: 9px;
        margin-bottom: 36px;
        padding-bottom: 16px;
        font-size: clamp(26px, 8vw, 31px);
        letter-spacing: -0.07em;
    }

    .archive-subtitle {
        margin-bottom: 26px;
        font-size: 20px;
    }

    .archive-disclosure {
        font-size: 13px;
    }

    .post-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }

    .post-card {
        min-height: 0;
        padding: 26px 22px;
    }

    .post-card-top {
        margin-bottom: 28px;
    }

    .post-card-portrait {
        --portrait-width: 72%;
        --portrait-right: -13%;
        opacity: .19;
    }

    .post-card-number strong {
        font-size: 26px;
    }

    .post-card h2 {
        font-size: 20px;
    }

    .post-card-summary {
        -webkit-line-clamp: 3;
    }

    .archive-return {
        grid-template-columns: 1fr;
        gap: 28px;
        margin: 44px 0 64px;
        padding: 34px 24px 24px;
        border-radius: 12px;
    }

    .archive-return h2 {
        font-size: 26px;
    }

    .archive-return a {
        width: 100%;
    }

    .detail-back {
        padding-top: 34px;
    }

    .case-heading {
        padding: 42px 0 56px;
    }

    .case-meta {
        margin-bottom: 22px;
        font-size: 9px;
    }

    .case-number.indexed strong {
        font-size: 27px;
    }

    h1 {
        margin-bottom: 22px;
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.25;
    }

    .case-summary {
        margin-bottom: 26px;
        font-size: 16px;
        line-height: 1.8;
    }

    .conversation-head {
        min-height: 72px;
        padding: 17px 18px;
    }

    .conversation-head > div {
        display: block;
    }

    .conversation-kicker {
        display: none;
    }

    .conversation-head strong {
        font-size: 13px;
    }

    .status {
        font-size: 8px;
    }

    .conversation-body {
        padding: 30px 16px 38px;
    }

    .message-row {
        gap: 9px;
    }

    .message-row.group-start {
        margin-top: 30px;
    }

    .avatar-space,
    .avatar-placeholder {
        width: 76px;
        height: 76px;
    }

    .avatar-space {
        flex-basis: 76px;
        min-height: 76px;
    }

    .message-stack {
        max-width: calc(100% - 86px);
    }

    .message-bubble {
        padding: 12px 14px;
        border-radius: 4px 16px 16px 16px;
        font-size: 14px;
        line-height: 1.7;
    }

    .studio .message-bubble {
        border-radius: 16px 4px 16px 16px;
    }

    .outcome {
        margin-top: 12px;
        padding: 38px 24px 42px;
    }

    .outcome-result {
        font-size: 18px;
    }

    .disclosure {
        padding: 28px 0 60px;
    }

    .detail-bottom-nav {
        padding: 20px 0 60px;
    }

    .detail-bottom-nav a {
        min-height: 86px;
        padding: 0 18px 0 22px;
        box-shadow: 0 6px 0 var(--ink), 0 14px 28px rgba(0, 0, 0, .12);
        font-size: 17px;
    }

    .detail-bottom-nav a span:last-child {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .studio-footer {
        padding: 58px 20px 24px;
    }

    .studio-footer-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        min-height: 0;
        padding-bottom: 58px;
    }

    .studio-footer-brand img {
        width: 138px;
        margin-bottom: 34px;
    }

    .studio-footer-brand > p {
        font-size: 26px;
    }

    .studio-footer-label {
        margin-bottom: 22px;
    }

    .studio-footer-links .studio-footer-label {
        margin-bottom: 10px;
    }

    .studio-footer-bottom {
        display: block;
        padding-top: 20px;
    }

    .studio-footer-bottom p + p {
        margin-top: 9px;
    }
}
