@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
    --pink: #f28fa3;
    --pink-deep: #c95f79;
    --pink-soft: #fff0f3;
    --pink-pale: #fff7f8;

    --ink: #171517;
    --muted: #746d70;
    --line: #ebe3e6;
    --soft: #faf8f9;
    --white: #fff;
    --max: 1180px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Pretendard", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button { font-family: inherit; }

.shell {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
}


/* TOP NOTICE
   일반 문서 흐름이므로 페이지 최상단에서만 보이고 스크롤하면 사라짐 */

.headline {
    position: relative;
    z-index: 40;
    color: #fff;
    background: var(--pink);
}

.headline-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
}

.headline a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 14px;
    font-weight: 650;
}

.headline a strong {
    flex: 0 0 auto;
    font-size: 13px;
}


/* STICKY LOGO + NAV HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 35;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.masthead {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: auto;
    max-width: 205px;
    max-height: 50px;
}

.global-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-main,
.nav-actions {
    display: flex;
    align-items: center;
}

.nav-main {
    gap: 28px;
}

.nav-actions {
    gap: 9px;
}

.nav-main > a {
    font-size: 16px;
    font-weight: 700;
}

.nav-main > a:hover {
    color: var(--pink-deep);
}

.nav-history,
.nav-partnership {
    padding: 11px 14px;
    color: #5d5659;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 14px;
    font-weight: 700;
}

.nav-partnership {
    border-color: transparent;
    background: transparent;
    padding-right: 8px;
    padding-left: 8px;
}

.nav-history:hover,
.nav-partnership:hover {
    color: var(--pink-deep);
    border-color: #e5b9c3;
}

.nav-submit {
    padding: 12px 18px;
    color: #fff;
    background: var(--pink);
    font-size: 14px;
    font-weight: 800;
}

.nav-submit:hover {
    background: var(--pink-deep);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    width: 24px;
    height: 2px;
    display: block;
    margin: 6px auto;
    background: var(--ink);
    transition: .2s ease;
}


/* MAIN SLIDER */

.main-slider {
    margin: 0;
    padding: 0;
    background: var(--pink);
}

.slider-viewport {
    position: relative;
    height: clamp(330px, 30vw, 410px);
    overflow: hidden;
    background: var(--pink);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-layout {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 61%) minmax(280px, 39%);
    align-items: stretch;
}

.slide-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: clamp(42px, 6vw, 86px);
    color: #fff;
}

.slide-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3.8vw, 50px);
    font-weight: 820;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.slide-copy h2 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(19px, 2vw, 26px);
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: -.025em;
}

.slide-copy p {
    max-width: 560px;
    margin: 15px 0 0;
    color: rgba(255,255,255,.9);
    font-size: 14px;
    line-height: 1.75;
}

.slide-button {
    align-self: flex-start;
    min-width: 136px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 0 20px;
    border: 1px solid #fff;
    background: #fff;
    color: var(--pink-deep);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transition:
        background .18s ease,
        color .18s ease,
        transform .18s ease;
}

.slide-button:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-1px);
}

.slide-image {
    height: 100%;
    padding: 28px 0;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: rgba(255,255,255,.13);
    color: #fff;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.slider-prev { left: 14px; }
.slider-next { right: 14px; }

.slider-ui {
    position: absolute;
    z-index: 5;
    right: 0;
    left: 0;
    bottom: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.slider-dots,
.slider-count {
    pointer-events: auto;
}

.slider-dots {
    display: flex;
    gap: 5px;
    align-items: center;
}

.slider-dots button {
    width: 22px;
    height: 2px;
    padding: 0;
    border: 0;
    background: rgba(255,255,255,.42);
    cursor: pointer;
}

.slider-dots button.active {
    width: 38px;
    background: #fff;
}

.slider-count {
    color: rgba(255,255,255,.72);
    font-size: 10px;
}

.slider-count strong {
    margin-right: 3px;
    color: #fff;
    font-size: 13px;
}


/* COMMON */

.section {
    padding: 104px 0;
}

.section + .section {
    border-top: 1px solid var(--line);
}

.section-heading {
    margin-bottom: 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.section-heading p,
.section-label {
    margin: 0 0 7px;
    color: var(--pink-deep);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
}

.section-heading h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.section-heading > a {
    color: var(--pink-deep);
    font-size: 14px;
    font-weight: 700;
}

.section-intro {
    max-width: 720px;
    margin: -18px 0 34px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}


/* PICKUP */

.pickup-section {
    background: var(--pink-pale);
}

.pickup-item {
    display: grid;
    grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
    align-items: center;
    gap: 64px;
}

.pickup-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.pickup-content .meta {
    margin: 0 0 11px;
    color: var(--pink-deep);
    font-size: 14px;
    font-weight: 800;
}

.pickup-content h3 {
    margin: 0 0 20px;
    color: var(--pink-deep);
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -.05em;
}

.pickup-content > strong {
    display: block;
    margin-bottom: 14px;
    font-size: 23px;
}

.pickup-content > p:not(.meta) {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

.text-actions {
    display: flex;
    gap: 28px;
    margin-top: 30px;
}

.text-actions a {
    color: var(--pink-deep);
    font-size: 15px;
    font-weight: 700;
}


/* NEWS BOARD
   SS의 날짜/제목/요약 흐름 + 작은 기사 썸네일 */

.news-section {
    background: #fff;
}

.news-heading {
    margin-bottom: 28px;
}

.news-board {
    border-top: 2px solid var(--ink);
}

.news-row {
    min-height: 142px;
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 26px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.news-thumb {
    overflow: hidden;
    background: var(--soft);
}

.news-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .22s ease;
}

.news-row:hover .news-thumb img {
    transform: scale(1.025);
}

.news-body {
    min-width: 0;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.news-meta span {
    min-width: 42px;
    color: var(--pink-deep);
    font-size: 11px;
    font-weight: 800;
}

.news-meta time {
    color: #8b8588;
    font-size: 12px;
}

.news-body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.45;
    letter-spacing: -.02em;
}

.news-body p {
    display: -webkit-box;
    max-width: 800px;
    margin: 7px 0 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-arrow {
    color: #aaa2a6;
    font-size: 19px;
    text-align: right;
}

.news-row:hover .news-body h3,
.news-row:hover .news-arrow {
    color: var(--pink-deep);
}


/* PUBLICATIONS */

.publications-section {
    background: var(--soft);
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.publication-card {
    min-width: 0;
}

.publication-image {
    margin-bottom: 18px;
    overflow: hidden;
    background: #f1ecee;
}

.publication-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform .25s ease;
}

.publication-card:hover .publication-image img {
    transform: translateY(-3px);
}

.publication-card > span {
    color: var(--pink-deep);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.publication-card h3 {
    margin: 7px 0 6px;
    font-size: 18px;
    line-height: 1.35;
}

.publication-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}


/* SUBMISSION */

.submit-section {
    padding: 104px 0;
    background: var(--pink);
    color: #fff;
}

.submit-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 70px;
    align-items: start;
}

.submit-copy .section-label {
    color: rgba(255,255,255,.74);
}

.submit-copy h2 {
    margin: 0;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.submit-copy > p:not(.section-label) {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.86);
    font-size: 16px;
    line-height: 1.85;
}

.submit-points {
    border-top: 1px solid rgba(255,255,255,.28);
}

.submit-points > div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
}

.submit-points strong {
    color: rgba(255,255,255,.72);
    font-size: 20px;
    font-weight: 500;
}

.submit-points span {
    font-size: 17px;
    font-weight: 650;
    line-height: 1.5;
}

.submit-actions {
    grid-column: 2;
    display: flex;
    gap: 10px;
    margin-top: -30px;
}

.button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border: 1px solid #fff;
    font-size: 15px;
    font-weight: 700;
}

.button.primary {
    color: var(--pink-deep);
    background: #fff;
}

.button.secondary {
    color: #fff;
    background: transparent;
}

.button.secondary:hover {
    background: rgba(255,255,255,.1);
}


/* FOOTER */

.site-footer {
    padding: 66px 0 30px;
    background: #161315;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .8fr 1fr;
    gap: 58px;
}

.footer-brand img {
    width: auto;
    max-width: 180px;
    max-height: 48px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    margin: 16px 0 2px;
    color: #e2dade;
    font-size: 14px;
}

.footer-brand span {
    color: #81787c;
    font-size: 12px;
}

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

.footer-column > strong {
    margin-bottom: 8px;
    color: #968a90;
    font-size: 11px;
    letter-spacing: .1em;
}

.footer-column a {
    color: #eee8eb;
    font-size: 14px;
}

.footer-column a:hover {
    color: #f4a7b6;
}

.contact-column > a {
    font-size: 15px;
    font-weight: 650;
}

.footer-sns {
    display: flex;
    gap: 12px;
    margin-top: 11px;
}

.footer-sns a {
    padding: 6px 10px;
    border: 1px solid #3a3337;
    font-size: 12px;
}

.company-row {
    margin-top: 54px;
    padding-top: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid #30292d;
}

.company-row p {
    max-width: 800px;
    margin: 0;
    color: #877d82;
    font-size: 11px;
    line-height: 1.7;
}

.company-row > div {
    flex: 0 0 auto;
    display: flex;
    gap: 16px;
}

.company-row a {
    color: #a59aa0;
    font-size: 11px;
}

.copyright {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #675f63;
    font-size: 11px;
}

.copyright a {
    color: #a59aa0;
}


/* TABLET */

@media (max-width: 1040px) {

    .nav-main {
        gap: 18px;
    }

    .global-nav {
        gap: 20px;
    }

    .nav-main > a {
        font-size: 14px;
    }
}

@media (max-width: 900px) {

    html {
        scroll-padding-top: 70px;
    }

    .global-nav {
        position: fixed;
        inset: 70px 0 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 24px 38px;
        background: #fff;
        overflow-y: auto;
        border-top: 1px solid var(--line);
    }

    .global-nav.open {
        display: flex;
    }

    .nav-main,
    .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-main > a {
        min-height: 64px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }

    .nav-actions {
        margin-top: 20px;
        gap: 9px;
    }

    .nav-history,
    .nav-partnership,
    .nav-submit {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        font-size: 14px;
    }

    .menu-button {
        display: block;
    }

    .menu-button.active span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-button.active span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .news-row {
        grid-template-columns: 158px minmax(0, 1fr) 22px;
        gap: 20px;
    }

    .publications-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .submit-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .submit-actions {
        grid-column: 1;
        margin-top: 0;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .contact-column {
        grid-column: 2 / 4;
    }
}


/* MOBILE */

@media (max-width: 640px) {

    body { font-size: 16px; }

    .shell {
        width: min(100% - 28px, var(--max));
    }

    .headline-inner {
        min-height: 40px;
    }

    .headline a {
        gap: 12px;
        font-size: 12px;
    }

    .headline a > span {
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .headline a strong {
        font-size: 11px;
    }

    .masthead {
        min-height: 64px;
    }

    .brand img {
        max-width: 148px;
        max-height: 38px;
    }

    .global-nav {
        inset: 64px 0 0;
    }

    /* 모바일도 PC와 같은 좌측 텍스트 / 우측 이미지 구성 유지 */
    .slider-viewport {
        height: auto;
        aspect-ratio: 16 / 10.2;
    }

    .slide-layout {
        width: min(var(--max), calc(100% - 28px));
        grid-template-columns: minmax(0, 61%) minmax(0, 39%);
    }

    .slide-copy {
        padding-right: 14px;
    }

    .slide-copy h1 {
        font-size: clamp(21px, 6vw, 30px);
    }

    .slide-copy h2 {
        margin-top: 6px;
        font-size: clamp(12px, 3.4vw, 16px);
        line-height: 1.28;
    }

    .slide-copy p {
        display: -webkit-box;
        max-width: 100%;
        margin-top: 7px;
        overflow: hidden;
        font-size: 10px;
        line-height: 1.45;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .slide-button {
        min-width: 96px;
        min-height: 31px;
        margin-top: 9px;
        padding: 0 10px;
        font-size: 9px;
    }

    .slide-image {
        padding: 14px 0;
    }

    .slider-arrow {
        display: none;
    }

    .slider-ui {
        bottom: 6px;
        gap: 7px;
    }

    .slider-dots {
        gap: 4px;
    }

    .slider-dots button {
        width: 13px;
        height: 2px;
    }

    .slider-dots button.active {
        width: 23px;
    }

    .slider-count {
        font-size: 8px;
    }

    .slider-count strong {
        font-size: 10px;
    }

    .section {
        padding: 76px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading p,
    .section-label {
        font-size: 12px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading > a {
        font-size: 12px;
    }

    .section-intro {
        margin-top: -12px;
        margin-bottom: 28px;
        font-size: 13px;
    }

    .pickup-item {
        grid-template-columns: 38% minmax(0, 1fr);
        gap: 21px;
        align-items: start;
    }

    .pickup-content .meta {
        margin-bottom: 7px;
        font-size: 11px;
    }

    .pickup-content h3 {
        margin-bottom: 10px;
        font-size: 29px;
    }

    .pickup-content > strong {
        margin-bottom: 7px;
        font-size: 15px;
    }

    .pickup-content > p:not(.meta) {
        font-size: 12px;
        line-height: 1.6;
    }

    .text-actions {
        gap: 13px;
        margin-top: 14px;
    }

    .text-actions a {
        font-size: 11px;
    }

    /* 모바일: 썸네일 + 게시판형 정보 밀도 유지 */
    .news-heading {
        margin-bottom: 18px;
    }

    .news-row {
        min-height: 106px;
        grid-template-columns: 102px minmax(0, 1fr);
        gap: 13px;
        padding: 14px 0;
    }

    .news-thumb {
        align-self: start;
    }

    .news-thumb img {
        aspect-ratio: 4 / 3;
    }

    .news-meta {
        gap: 7px;
        margin-bottom: 4px;
    }

    .news-meta span,
    .news-meta time {
        font-size: 9px;
    }

    .news-body h3 {
        display: -webkit-box;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.38;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .news-body p {
        margin-top: 5px;
        font-size: 10px;
        line-height: 1.45;
        -webkit-line-clamp: 2;
    }

    .news-arrow {
        display: none;
    }

    .publications-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 15px;
    }

    .publication-card h3 {
        font-size: 16px;
    }

    .publication-card p {
        font-size: 12px;
    }

    .submit-section {
        padding: 78px 0;
    }

    .submit-copy h2 {
        font-size: 40px;
    }

    .submit-copy > p:not(.section-label) {
        margin-top: 18px;
        font-size: 14px;
    }

    .submit-points > div {
        grid-template-columns: 42px 1fr;
        padding: 16px 0;
    }

    .submit-points strong {
        font-size: 16px;
    }

    .submit-points span {
        font-size: 15px;
    }

    .submit-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .button {
        min-height: 52px;
        padding: 0 14px;
        font-size: 14px;
    }

    .site-footer {
        padding-top: 52px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .contact-column {
        grid-column: 1 / -1;
    }

    .company-row {
        flex-direction: column;
    }

    .copyright {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 420px) {

    .section-heading > a {
        display: none;
    }

    .submit-actions {
        grid-template-columns: 1fr;
    }

    .news-row {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 11px;
    }
}


/* v0.11 final GNB refinement */
.nav-main > a:nth-child(4) {
    color: var(--muted);
}

.nav-main > a:nth-child(4):hover {
    color: var(--pink-deep);
}

.news-board {
    position: relative;
}

.news-board::before {
    content: "공지부터 인터뷰와 기획 이야기까지, 코미포스트의 새로운 소식을 전합니다.";
    display: block;
    padding: 13px 0 14px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.news-row:first-of-type {
    border-top: 0;
}

@media (max-width: 1040px) {
    .nav-main {
        gap: 16px;
    }

    .nav-main > a {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .nav-main > a {
        font-size: 16px;
    }

    .news-board::before {
        font-size: 11px;
    }
}


/* v0.12 mobile density / readability */
@media (max-width: 640px) {

    .headline-inner {
        min-height: 36px;
    }

    .headline a {
        font-size: 11px;
    }

    .headline a strong {
        font-size: 10px;
    }

    .site-header {
        box-shadow: 0 1px 8px rgba(23, 21, 23, .035);
    }

    .menu-button {
        width: 40px;
        height: 40px;
    }

    .menu-button span {
        width: 22px;
    }

    .section {
        padding: 64px 0;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .pickup-item {
        grid-template-columns: 36% minmax(0, 1fr);
        gap: 18px;
    }

    .pickup-content h3 {
        font-size: 25px;
    }

    .pickup-content > strong {
        font-size: 14px;
    }

    .news-board::before {
        padding: 10px 0 11px;
    }

    .news-row {
        min-height: 98px;
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
        padding: 12px 0;
    }

    .news-body h3 {
        font-size: 13px;
    }

    .news-body p {
        font-size: 10px;
    }

    .publications-grid {
        gap: 24px 12px;
    }

    .publication-image {
        margin-bottom: 12px;
    }

    .publication-card h3 {
        margin-top: 5px;
        font-size: 15px;
    }

    .submit-section {
        padding: 64px 0;
    }

    .submit-copy h2 {
        font-size: 34px;
    }

    .submit-copy > p:not(.section-label) {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-grid {
        gap: 30px 20px;
    }
}

@media (max-width: 390px) {
    .slide-layout {
        width: min(var(--max), calc(100% - 22px));
    }

    .slide-copy {
        padding-right: 10px;
    }

    .slide-copy h1 {
        font-size: 20px;
    }

    .slide-copy h2 {
        font-size: 11px;
    }

    .slide-copy p {
        font-size: 9px;
        -webkit-line-clamp: 3;
    }

    .slide-button {
        min-width: 88px;
        min-height: 29px;
        font-size: 8px;
    }
}


/* v0.13 - mobile hero image visibility */
@media (max-width: 640px) {
    .slider-viewport {
        aspect-ratio: 16 / 9.8;
    }

    .slide-layout {
        grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    }

    .slide-image {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 0 15px 8px;
        overflow: visible;
    }

    .slide-image img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
    }
}

@media (max-width: 390px) {
    .slider-viewport {
        aspect-ratio: 16 / 10.4;
    }

    .slide-layout {
        grid-template-columns: minmax(0, 61%) minmax(0, 39%);
    }

    .slide-image {
        padding-left: 6px;
    }
}




/* v0.14 header partnership refinement */
@media (max-width: 900px) {
    .nav-partnership {
        padding: 0 16px;
        border: 1px solid var(--line);
        background: #fff;
        justify-content: center;
    }
}
