:root {
    --bg: #f5f6f8;
    --paper: #ffffff;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft-line: #f0f1f3;
    --brand: #ef3e2d;
    --brand-dark: #b91c1c;
    --navy: #101827;
    --card-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
    color: var(--ink);
    background: var(--bg);
}

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

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

.top-strip {
    height: 34px;
    background: #05070c;
    color: #d1d5db;
    font-size: 12px;
}

.top-strip-inner {
    max-width: 1180px;
    height: 34px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.masthead {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.masthead-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 20px 20px;
    text-align: center;
}

.site-title {
    margin: 0;
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.site-description {
    margin: 12px auto 0;
    max-width: 720px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.navbar {
    border-top: 1px solid var(--soft-line);
    background: var(--paper);
}

.navbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 48px;
    overflow-x: auto;
}

.navbar a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: #222;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.navbar a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 20px 70px;
}

.issue-bar {
    margin-bottom: 22px;
    padding: 14px 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--card-shadow);
}

.issue-label {
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.issue-text {
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.9fr);
    gap: 22px;
    padding-bottom: 28px;
    border-bottom: 2px solid #111827;
}

.hero-card {
    background: var(--paper);
}

.hero-image,
.card-image,
.thumb-image {
    background: linear-gradient(135deg, #eef2ff, #fef2f2);
    border-radius: 12px;
    overflow: hidden;
}

.hero-image {
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
}

.hero-image img,
.card-image img,
.thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 9px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
}

.hero-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.22;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.hero-title a:hover,
.article-title a:hover,
.mini-title a:hover,
.sidebar-title a:hover {
    color: var(--brand);
}

.hero-summary {
    margin: 14px 0 0;
    color: #374151;
    line-height: 1.7;
    font-size: 15px;
}

.meta {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
}

.mini-list {
    display: grid;
    gap: 14px;
}

.mini-card {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 108px;
    gap: 14px;
}

.mini-card:last-child {
    border-bottom: 0;
}

.mini-title {
    margin: 0;
    font-size: 17px;
    line-height: 1.38;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.thumb-image {
    aspect-ratio: 16 / 10;
}

.section {
    margin-top: 34px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #111827;
}

.section-title {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.section-title::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 18px;
    margin-right: 8px;
    background: var(--brand);
    vertical-align: -3px;
}

.more-link {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.news-card {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
}

.card-image {
    aspect-ratio: 16 / 10;
    margin-bottom: 12px;
}

.article-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.38;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.article-summary {
    margin: 9px 0 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.65;
}

.text-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.text-list-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.sidebar {
    display: grid;
    gap: 22px;
}

.sidebar-box {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--card-shadow);
}

.sidebar-head {
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #111827;
    font-size: 17px;
    font-weight: 900;
}

.sidebar-list {
    display: grid;
    gap: 13px;
    counter-reset: rank;
}

.sidebar-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--line);
    counter-increment: rank;
}

.sidebar-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.sidebar-item::before {
    content: counter(rank);
    color: var(--brand);
    font-size: 18px;
    font-weight: 900;
}

.sidebar-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

.ad-banner {
    margin: 34px 0;
    padding: 30px;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    text-align: center;
    color: #64748b;
    background: #ffffff;
    font-size: 12px;
    letter-spacing: 0.18em;
}

.empty {
    padding: 34px;
    text-align: center;
    color: var(--muted);
    background: var(--paper);
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
}

.board-header,
.article-detail {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--card-shadow);
}

.board-title,
.detail-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.board-description {
    margin: 12px 0 0;
    color: #4b5563;
    line-height: 1.7;
}

.article-body {
    margin-top: 26px;
    color: #111827;
    font-size: 17px;
    line-height: 1.9;
    word-break: keep-all;
}

.article-body p {
    margin: 0 0 18px;
}

.main-image {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 14px;
    margin: 22px 0;
}

.footer {
    margin-top: 60px;
    padding: 28px 20px;
    background: #111827;
    color: #d1d5db;
    font-size: 13px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
}

@media (max-width: 980px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 720px) {
    .site-title {
        font-size: 30px;
    }

    .container {
        padding: 20px 16px 50px;
    }

    .card-grid,
    .text-list,
    .sidebar {
        grid-template-columns: 1fr;
    }

    .mini-card {
        grid-template-columns: 1fr;
    }

    .thumb-image {
        display: none;
    }

    .hero-title,
    .board-title,
    .detail-title {
        font-size: 26px;
    }

    .navbar-inner {
        gap: 16px;
    }
}

/* CKEditor article body content */
.article-body h1,
.article-body h2,
.article-body h3 {
    margin: 34px 0 16px;
    color: #0f172a;
    line-height: 1.35;
    letter-spacing: -0.055em;
}

.article-body h1 {
    font-size: 30px;
}

.article-body h2 {
    font-size: 26px;
}

.article-body h3 {
    font-size: 22px;
}

.article-body p {
    margin: 0 0 20px;
}

.article-body a {
    color: #dc2626;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 5px solid #ef3e2d;
    background: #f8fafc;
    color: #334155;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 700;
}

.article-body img {
    max-width: 100%;
    height: auto;
    margin: 26px auto 8px;
    border-radius: 14px;
}

.article-body figure {
    margin: 28px 0;
}

.article-body figure img {
    margin: 0 auto;
}

.article-body figcaption {
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.article-body iframe,
.article-body video {
    max-width: 100%;
    border-radius: 14px;
}

.article-body table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    font-size: 15px;
}

.article-body table th,
.article-body table td {
    padding: 10px 12px;
    border: 1px solid #dbe3ef;
}

.article-body table th {
    background: #f8fafc;
    font-weight: 900;
}

.article-body ul,
.article-body ol {
    margin: 18px 0 22px 24px;
    padding: 0;
}

.article-body li {
    margin-bottom: 8px;
}

.article-meta-box {
    margin-top: 18px;
    padding: 14px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 22px;
    color: #475569;
    font-size: 13px;
}

.article-meta-box strong {
    color: #111827;
    margin-right: 6px;
}

.article-lead {
    margin: 24px 0 0;
    padding: 18px 20px;
    background: #f8fafc;
    border-left: 4px solid #ef3e2d;
    color: #334155;
    line-height: 1.75;
    font-size: 16px;
    font-weight: 700;
}

.main-figure {
    margin: 28px 0;
}

.main-figure figcaption {
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 720px) {
    .article-meta-box {
        grid-template-columns: 1fr;
    }
}

.article-tags {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid #e5e7eb;
}

.article-tags strong {
    display: block;
    margin-bottom: 12px;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list a {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #f8fafc;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.tag-list a:hover {
    border-color: #ef3e2d;
    color: #ef3e2d;
    background: #fff7f5;
}

.article-extra-images {
    margin-top: 34px;
}

.article-extra-figure {
    margin: 28px 0;
}

.article-extra-figure img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.article-extra-figure figcaption {
    margin-top: 9px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.article-lead-images {
    margin-top: 26px;
    margin-bottom: 34px;
}

.article-extra-figure {
    margin: 24px 0;
}

.article-extra-figure img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.article-extra-figure figcaption {
    margin-top: 9px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.article-footer-text {
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    color: #334155;
    font-size: 14px;
    line-height: 1.8;
    word-break: keep-all;
}

.article-footer-text br + br {
    display: block;
    content: "";
    margin-top: 10px;
}

.share-toolbar {
    margin: 20px 0 24px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f8fafc;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}

.share-button {
    appearance: none;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111827;
    border-radius: 999px;
    padding: 8px 12px 8px 8px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.share-button:hover {
    transform: translateY(-1px);
    border-color: #cbd5e1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.share-button img {
    width: 24px;
    height: 24px;
    border-radius: 8px;
}

.share-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(20px);
    padding: 11px 16px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 9999;
}

.share-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 720px) {
    .share-toolbar {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 12px;
        scrollbar-width: none;
    }

    .share-toolbar::-webkit-scrollbar {
        display: none;
    }

    .share-button {
        flex: 0 0 auto;
    }
}

.article-floating-menu {
    position: fixed;
    top: 220px;
    left: max(24px, calc((100vw - 1180px) / 2 - 110px));
    z-index: 80;
}

.floating-menu-body {
    width: 72px;
    padding: 12px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floating-menu-button {
    appearance: none;
    border: 0;
    background: transparent;
    color: #0f172a;
    width: 56px;
    min-height: 58px;
    border-radius: 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: -0.03em;
    transition: background 0.16s ease, transform 0.16s ease, color 0.16s ease;
}

.floating-menu-button:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    color: #ef3b2d;
}

.floating-menu-icon {
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}

.floating-share-panel {
    position: absolute;
    top: 0;
    left: 86px;
    width: 260px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.article-floating-menu.is-share-open .floating-share-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.floating-share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.floating-share-header strong {
    font-size: 16px;
    font-weight: 1000;
    letter-spacing: -0.04em;
}

.floating-share-close {
    appearance: none;
    border: 0;
    background: #f1f5f9;
    color: #0f172a;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
    line-height: 28px;
}

.floating-share-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.floating-share-button {
    appearance: none;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #0f172a;
    font-size: 12px;
    font-weight: 900;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.floating-share-button:hover {
    transform: translateY(-1px);
    border-color: #cbd5e1;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.floating-share-button img {
    width: 30px;
    height: 30px;
    border-radius: 10px;
}

.article-body.article-font-step-0 {
    font-size: inherit;
}

.article-body.article-font-step-1 {
    font-size: 1.08em;
}

.article-body.article-font-step-2 {
    font-size: 1.16em;
}

@media (max-width: 1120px) {
    .article-floating-menu {
        left: 14px;
    }
}

@media (max-width: 760px) {
    .article-floating-menu {
        top: auto;
        left: auto;
        right: 14px;
        bottom: 18px;
    }

    .floating-menu-body {
        width: auto;
        max-width: calc(100vw - 28px);
        padding: 8px;
        border-radius: 999px;
        flex-direction: row;
        gap: 4px;
    }

    .floating-menu-button {
        width: 54px;
        min-height: 52px;
        border-radius: 999px;
        font-size: 10px;
    }

    .floating-menu-icon {
        font-size: 19px;
    }

    .floating-share-panel {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 88px;
        top: auto;
        width: auto;
        border-radius: 24px;
        transform: translateY(12px);
    }

    .article-floating-menu.is-share-open .floating-share-panel {
        transform: translateY(0);
    }

    .floating-share-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media print {
    .article-floating-menu,
    .share-toast,
    .sidebar,
    .ad-banner {
        display: none !important;
    }
}

.article-detail > .share-toolbar {
    display: none;
}

/* ======================================================
   PDF floating panel visibility hard-fix
   ====================================================== */

.article-floating-menu .floating-print-panel {
    display: none;
    position: absolute;
    top: 72px;
    left: 86px;
    width: 280px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
    z-index: 120;
}

.article-floating-menu.is-print-open .floating-print-panel {
    display: block;
}

.article-floating-menu .floating-print-form {
    display: grid;
    gap: 12px;
}

.article-floating-menu .print-check-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 13px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 13px;
    font-weight: 1000;
    cursor: pointer;
}

.article-floating-menu .print-check-row input {
    width: 16px;
    height: 16px;
}

.article-floating-menu .print-field {
    display: grid;
    gap: 6px;
}

.article-floating-menu .print-field span {
    color: #334155;
    font-size: 12px;
    font-weight: 900;
}

.article-floating-menu .print-field select {
    width: 100%;
    height: 40px;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    padding: 0 11px;
    font-size: 13px;
    font-weight: 900;
}

.article-floating-menu .print-help {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
    word-break: keep-all;
}

.article-floating-menu .print-create-button {
    appearance: none;
    border: 0;
    border-radius: 14px;
    background: #111827;
    color: #ffffff;
    height: 42px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 1000;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.article-floating-menu .print-create-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

@media (max-width: 760px) {
    .article-floating-menu .floating-print-panel {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 88px;
        top: auto;
        width: auto;
        border-radius: 24px;
    }
}


/* ======================================================
   K PRISM public logo patch
   ====================================================== */

.site-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.site-title-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin: 0;
}

.site-logo-image {
    display: block;
    width: auto;
    height: 58px;
    max-width: min(420px, 82vw);
    object-fit: contain;
}

.site-title-fallback {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 720px) {
    .site-title-logo {
        min-height: 48px;
    }

    .site-logo-image {
        height: 44px;
        max-width: 78vw;
    }
}


/* ======================================================
   LIVE AD SLOT
   실제 사이트 광고 슬롯 공통 스타일
   ====================================================== */

.news-ad-slot {
    width: 100%;
    margin: 22px 0;
}

.news-ad-slot-inner {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.news-ad-badge {
    position: absolute;
    left: 12px;
    top: 10px;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.news-ad-slot-link {
    display: block;
    min-height: 86px;
    padding: 14px;
    color: inherit;
    text-decoration: none;
}

.news-ad-slot-link img {
    display: block;
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 14px;
    background: #f8fafc;
}

.news-ad-slot-copy {
    min-height: 84px;
    display: grid;
    place-items: center;
    padding: 18px;
    text-align: center;
    background: #f8fafc;
    border-radius: 14px;
}

.news-ad-slot-copy strong {
    color: #111827;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.news-ad-slot-copy span {
    display: block;
    margin-top: 6px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
}

.news-ad-slot-sidebar,
.news-ad-slot-right_sidebar,
.news-ad-slot-sidebar .news-ad-slot-link,
.news-ad-slot-right_sidebar .news-ad-slot-link {
    min-height: 160px;
}

.news-ad-slot-mobile_banner {
    position: fixed;
    left: 50%;
    bottom: 16px;
    z-index: 90;
    width: min(420px, calc(100vw - 24px));
    margin: 0;
    transform: translateX(-50%);
}

@media (min-width: 769px) {
    .news-ad-slot-mobile_banner {
        display: none;
    }
}

/* ======================================================
   CATEGORY PLUS PAGE + DYNAMIC FOOTER
   카테고리 페이지 고급화 / 카드 radius 통일 / 동적 푸터
   ====================================================== */

.category-plus-hero,
.category-plus-card,
.category-plus-side-box,
.category-plus-empty,
.category-plus-ad-row,
.category-plus-bottom-ad,
.site-dynamic-footer,
.sidebar-box,
.news-card,
.board-header,
.ad-banner,
.article-card,
.section,
.detail-card,
.main-figure,
.article-footer-text {
    border-radius: 22px;
}

.category-plus-hero {
    margin-bottom: 28px;
    padding: 34px 36px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.category-plus-kicker {
    margin-bottom: 10px;
    color: #ef4444;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 0.12em;
}

.category-plus-hero-main {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
}

.category-plus-hero h2 {
    margin: 0;
    color: #06142b;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 1000;
    letter-spacing: -0.08em;
}

.category-plus-hero p {
    margin: 14px 0 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 700;
}

.category-plus-stats {
    display: grid;
    place-items: center;
    min-width: 110px;
    min-height: 100px;
    border-radius: 24px;
    background: #111827;
    color: #ffffff;
}

.category-plus-stats span {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 1000;
}

.category-plus-stats strong {
    display: block;
    margin-top: 2px;
    font-size: 34px;
    line-height: 1;
    font-weight: 1000;
}

.category-plus-stats em {
    color: #d1d5db;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.category-plus-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
    margin-top: 30px;
}

.category-plus-main {
    min-width: 0;
}

.category-plus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.category-plus-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.category-plus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.category-plus-card-lead {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.category-plus-image {
    display: block;
    overflow: hidden;
    background: #e5e7eb;
    min-height: 230px;
}

.category-plus-card-lead .category-plus-image {
    min-height: 360px;
}

.category-plus-image img,
.card-image img,
.news-card img,
.main-image,
.nb-headline-image img,
.nb-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.category-plus-image img {
    min-height: 230px;
}

.category-plus-card-lead .category-plus-image img {
    min-height: 360px;
}

.category-plus-image-empty {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 230px;
    background:
        radial-gradient(circle at 30% 20%, rgba(3, 199, 90, 0.18), transparent 32%),
        linear-gradient(135deg, #e5e7eb, #f8fafc);
    color: #334155;
    font-size: 20px;
    font-weight: 1000;
}

.category-plus-card-body {
    padding: 22px;
}

.category-plus-badge {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    margin-bottom: 12px;
    border-radius: 999px;
    padding: 0 10px;
    background: #ef4444;
    color: #ffffff;
    font-size: 12px;
    font-weight: 1000;
    text-decoration: none;
}

.category-plus-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 1000;
    letter-spacing: -0.055em;
}

.category-plus-card:not(.category-plus-card-lead) h3 {
    font-size: 20px;
}

.category-plus-card h3 a {
    color: #06142b;
    text-decoration: none;
}

.category-plus-card h3 a:hover {
    color: #ef4444;
}

.category-plus-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 12px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.category-plus-card p {
    margin: 16px 0 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 700;
}

.category-plus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.category-plus-tags a {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    border-radius: 999px;
    padding: 0 9px;
    background: #f1f5f9;
    color: #0369a1;
    font-size: 12px;
    font-weight: 1000;
    text-decoration: none;
}

.category-plus-ad-row {
    grid-column: 1 / -1;
    overflow: hidden;
    background: #ffffff;
}

.category-plus-bottom-ad {
    overflow: hidden;
    margin-top: 24px;
    background: #ffffff;
}

.category-plus-empty {
    padding: 46px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.category-plus-empty strong {
    display: block;
    color: #111827;
    font-size: 22px;
    font-weight: 1000;
}

.category-plus-empty p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 800;
}

.category-plus-sidebar {
    display: grid;
    gap: 18px;
    align-content: start;
    position: sticky;
    top: 24px;
}

.category-plus-side-box {
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.category-plus-side-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 3px solid #111827;
}

.category-plus-side-head span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #ef4444;
    color: #ffffff;
    font-size: 12px;
    font-weight: 1000;
}

.category-plus-side-head h2 {
    margin: 0;
    color: #111827;
    font-size: 20px;
    font-weight: 1000;
    letter-spacing: -0.05em;
}

.category-plus-rank-list,
.category-plus-news-list {
    display: grid;
    gap: 0;
    margin-top: 12px;
}

.category-plus-rank-list a,
.category-plus-news-list a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
    text-decoration: none;
}

.category-plus-rank-list a:last-child,
.category-plus-news-list a:last-child {
    border-bottom: 0;
}

.category-plus-rank-list strong,
.category-plus-news-list strong {
    color: #ef4444;
    font-size: 20px;
    font-weight: 1000;
}

.category-plus-rank-list span,
.category-plus-news-list span {
    overflow: hidden;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    text-overflow: ellipsis;
}

.category-plus-rank-list a.is-active span {
    color: #ef4444;
}

.category-plus-rank-list a.is-active {
    font-weight: 1000;
}

.card-image,
.news-card,
.sidebar-box,
.sidebar-item,
.board-header,
.main-figure,
.main-figure img,
.article-body img,
.article-body iframe,
.article-body table {
    border-radius: 18px;
}

.card-image,
.news-card {
    overflow: hidden;
}

.site-dynamic-footer {
    margin-top: 70px;
    background: #111827;
    color: #ffffff;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 42px;
    align-items: start;
}

.site-footer-brand strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 1000;
}

.site-footer-brand p,
.site-footer-info p {
    margin: 10px 0 0;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 700;
}

.site-footer-brand a {
    display: inline-flex;
    margin-top: 10px;
    color: #93c5fd;
    font-size: 13px;
    font-weight: 900;
}

.site-footer-menu h2,
.site-footer-info h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 1000;
}

.site-footer-menu div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer-menu a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    border-radius: 999px;
    padding: 0 11px;
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.site-footer-menu a:hover {
    background: #ef4444;
}

@media (max-width: 1080px) {
    .category-plus-layout {
        grid-template-columns: 1fr;
    }

    .category-plus-sidebar {
        position: static;
    }

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

@media (max-width: 760px) {
    .category-plus-hero {
        padding: 26px 22px;
    }

    .category-plus-hero-main {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-plus-hero h2 {
        font-size: 32px;
    }

    .category-plus-grid {
        grid-template-columns: 1fr;
    }

    .category-plus-card-lead {
        grid-column: auto;
        display: block;
    }

    .category-plus-card-lead .category-plus-image,
    .category-plus-card-lead .category-plus-image img {
        min-height: 240px;
    }
}

/* ======================================================
   K PRISM CATEGORY GREEN BRAND OVERRIDE
   카테고리 페이지 메인뉴스 오버레이 / 그린 브랜드 컬러
   ====================================================== */

:root {
    --kprism-green: #03c75a;
    --kprism-green-dark: #00a84f;
    --kprism-cyan: #00d4ff;
    --kprism-blue: #1d4ed8;
    --kprism-purple: #7c3aed;
    --kprism-ink: #06142b;
}

.category-plus-kicker,
.category-plus-card h3 a:hover,
.category-plus-rank-list a.is-active span,
.category-plus-rank-list strong,
.category-plus-news-list strong {
    color: var(--kprism-green) !important;
}

.category-plus-badge,
.category-plus-side-head span,
.site-footer-menu a:hover {
    background: var(--kprism-green) !important;
}

.category-plus-side-head {
    border-bottom-color: var(--kprism-ink) !important;
}

.kprism-category-hero {
    position: relative;
    overflow: hidden;
}

.kprism-category-hero::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 35%, rgba(0, 212, 255, 0.28), transparent 38%),
        radial-gradient(circle at 70% 70%, rgba(3, 199, 90, 0.26), transparent 44%);
    pointer-events: none;
}

.kprism-category-stats {
    background: linear-gradient(135deg, #07111f 0%, #0f172a 62%, #02351d 100%) !important;
    box-shadow: 0 18px 38px rgba(3, 199, 90, 0.16);
}

.kprism-category-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
}

.kprism-category-lead-card {
    overflow: hidden;
    margin-bottom: 22px;
    border-radius: 24px;
    background: #0f172a;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.kprism-category-lead-link {
    position: relative;
    display: block;
    min-height: 380px;
    color: #ffffff;
    text-decoration: none;
}

.kprism-category-lead-link img,
.kprism-category-lead-empty {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.kprism-category-lead-empty {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.22), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(3, 199, 90, 0.25), transparent 34%),
        linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    font-size: 28px;
    font-weight: 1000;
}

.kprism-category-lead-shade {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(3, 7, 18, 0.06) 0%, rgba(3, 7, 18, 0.42) 45%, rgba(3, 7, 18, 0.86) 100%),
        linear-gradient(180deg, rgba(3, 7, 18, 0.1) 0%, rgba(3, 7, 18, 0.66) 100%);
}

.kprism-category-lead-content {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 58%;
    padding: 40px;
    color: #ffffff;
    text-align: right;
}

.kprism-category-badge {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    margin-bottom: 14px;
    border-radius: 999px;
    padding: 0 12px;
    background: var(--kprism-green);
    color: #ffffff;
    font-size: 12px;
    font-weight: 1000;
}

.kprism-category-lead-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.18;
    font-weight: 1000;
    letter-spacing: -0.07em;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.42);
}

.kprism-category-lead-content p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 1.62;
    font-weight: 800;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.38);
}

.kprism-category-lead-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 12px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 1000;
}

.kprism-category-lead-meta strong,
.kprism-category-lead-meta span {
    color: rgba(255, 255, 255, 0.92);
}

.kprism-category-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.kprism-category-sub-card {
    overflow: hidden;
    border-radius: 22px;
    background: #0f172a;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.13);
}

.kprism-category-sub-image {
    position: relative;
    display: block;
    min-height: 230px;
    color: #ffffff;
    text-decoration: none;
}

.kprism-category-sub-image img,
.kprism-category-sub-empty {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.kprism-category-sub-empty {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.22), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(3, 199, 90, 0.25), transparent 34%),
        linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    font-size: 18px;
    font-weight: 1000;
}

.kprism-category-sub-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(3, 7, 18, 0.08) 0%, rgba(3, 7, 18, 0.84) 100%);
}

.kprism-category-sub-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 18px;
}

.kprism-category-sub-content span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 999px;
    padding: 0 9px;
    background: var(--kprism-green);
    color: #ffffff;
    font-size: 11px;
    font-weight: 1000;
}

.kprism-category-sub-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 1000;
    letter-spacing: -0.045em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.kprism-category-sub-content em {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-style: normal;
    font-weight: 1000;
}

.kprism-category-ad-row {
    margin-bottom: 22px;
}

.category-plus-side-box {
    border-radius: 22px !important;
}

.category-plus-news-list a:hover span {
    color: var(--kprism-green) !important;
}

.category-plus-tags a {
    background: rgba(3, 199, 90, 0.1) !important;
    color: #047857 !important;
}

.category-plus-card,
.category-plus-image,
.category-plus-image img,
.category-plus-image-empty,
.category-plus-empty,
.category-plus-bottom-ad,
.category-plus-ad-row,
.news-card,
.news-card img,
.card-image,
.card-image img,
.sidebar-box {
    border-radius: 22px !important;
}

.site-dynamic-footer {
    border-radius: 0 !important;
}

@media (max-width: 1080px) {
    .kprism-category-layout {
        grid-template-columns: 1fr;
    }

    .kprism-category-lead-content {
        max-width: 72%;
    }

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

@media (max-width: 760px) {
    .kprism-category-lead-link {
        min-height: 330px;
    }

    .kprism-category-lead-shade {
        background:
            linear-gradient(180deg, rgba(3, 7, 18, 0.08) 0%, rgba(3, 7, 18, 0.88) 100%);
    }

    .kprism-category-lead-content {
        align-items: flex-start;
        max-width: none;
        padding: 24px;
        text-align: left;
    }

    .kprism-category-lead-content h3 {
        font-size: 28px;
    }

    .kprism-category-lead-meta {
        justify-content: flex-start;
    }

    .kprism-category-sub-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   K PRISM CATEGORY LEAD COMPACT + TALL SUB CARDS
   메인뉴스 텍스트 압축 / 하단 3열 세로형 카드
   ====================================================== */

/* 메인뉴스: 사진을 덜 가리도록 텍스트 영역 축소 */
.kprism-category-lead-content {
    max-width: 72% !important;
    padding: 28px 36px !important;
}

.kprism-category-lead-content h3 {
    max-width: 100% !important;
    margin: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 32px !important;
    line-height: 1.18 !important;
}

.kprism-category-lead-content p {
    max-width: 100% !important;
    margin-top: 12px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
}

.kprism-category-lead-meta {
    margin-top: 12px !important;
    white-space: nowrap !important;
}

/* 이미지가 더 보이도록 오버레이를 살짝 가볍게 */
.kprism-category-lead-shade {
    background:
        linear-gradient(90deg, rgba(3, 7, 18, 0.04) 0%, rgba(3, 7, 18, 0.32) 45%, rgba(3, 7, 18, 0.76) 100%),
        linear-gradient(180deg, rgba(3, 7, 18, 0.06) 0%, rgba(3, 7, 18, 0.56) 100%) !important;
}

/* 하단 3열 카드: 정사각형 느낌 제거, 세로가 더 긴 뉴스 카드형 */
.kprism-category-sub-image {
    min-height: 320px !important;
    aspect-ratio: 4 / 5 !important;
}

.kprism-category-sub-image img,
.kprism-category-sub-empty {
    min-height: 320px !important;
}

.kprism-category-sub-content h3 {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
}

/* 모바일에서는 제목이 너무 잘리지 않게 2줄 허용 */
@media (max-width: 760px) {
    .kprism-category-lead-content h3 {
        white-space: normal !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .kprism-category-lead-content p {
        white-space: normal !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 1 !important;
        line-clamp: 1 !important;
        -webkit-box-orient: vertical !important;
    }

    .kprism-category-sub-image,
    .kprism-category-sub-image img,
    .kprism-category-sub-empty {
        min-height: 300px !important;
    }
}

/* ======================================================
   K PRISM CATEGORY LEAD READABLE TITLE
   메인뉴스 제목 1줄 강제 제거 / 2~3줄 자연 표시
   ====================================================== */

.kprism-category-lead-content {
    box-sizing: border-box !important;
    width: min(88%, 900px) !important;
    max-width: min(88%, 900px) !important;
    min-width: 0 !important;
    padding: 30px 40px 34px !important;
}

.kprism-category-lead-content h3 {
    box-sizing: border-box !important;
    display: -webkit-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    color: #ffffff !important;
    white-space: normal !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    font-size: clamp(24px, 2.65vw, 34px) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.065em !important;
}

.kprism-category-lead-content p {
    box-sizing: border-box !important;
    display: -webkit-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 12px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    white-space: normal !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    font-size: clamp(13px, 1.16vw, 16px) !important;
    line-height: 1.45 !important;
    letter-spacing: -0.025em !important;
}

.kprism-category-lead-meta {
    margin-top: 12px !important;
}

.kprism-category-lead-shade {
    background:
        linear-gradient(90deg, rgba(3, 7, 18, 0.02) 0%, rgba(3, 7, 18, 0.28) 38%, rgba(3, 7, 18, 0.78) 100%),
        linear-gradient(180deg, rgba(3, 7, 18, 0.04) 0%, rgba(3, 7, 18, 0.56) 100%) !important;
}

@media (max-width: 760px) {
    .kprism-category-lead-content {
        width: calc(100% - 48px) !important;
        max-width: calc(100% - 48px) !important;
        padding: 24px !important;
    }

    .kprism-category-lead-content h3 {
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        font-size: clamp(20px, 5.4vw, 28px) !important;
        line-height: 1.22 !important;
    }

    .kprism-category-lead-content p {
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        font-size: clamp(12px, 3.2vw, 14px) !important;
        line-height: 1.42 !important;
    }
}

/* ======================================================
   K PRISM CATEGORY 1+6+LIST PAGINATION
   메인뉴스 1개 / 카드 6개 / 최신기사 리스트 / 개수 선택 / 페이지네이션
   ====================================================== */

.kprism-category-list-section {
    margin-top: 34px;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.kprism-category-list-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--kprism-green, #03c75a);
}

.kprism-category-list-head span {
    display: block;
    margin-bottom: 5px;
    color: var(--kprism-green, #03c75a);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 0.12em;
}

.kprism-category-list-head h2 {
    margin: 0;
    color: #06142b;
    font-size: 26px;
    font-weight: 1000;
    letter-spacing: -0.06em;
}

.kprism-page-size-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kprism-page-size-form label {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.kprism-page-size-form select {
    min-width: 130px;
    height: 38px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 0 14px;
    background: #ffffff;
    color: #06142b;
    font-size: 13px;
    font-weight: 900;
}

.kprism-category-list {
    display: grid;
    gap: 0;
}

.kprism-category-list-item {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.kprism-category-list-item:last-child {
    border-bottom: 0;
}

.kprism-category-list-thumb {
    display: block;
    overflow: hidden;
    width: 220px;
    height: 124px;
    border-radius: 18px;
    background: #e5e7eb;
    text-decoration: none;
}

.kprism-category-list-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kprism-category-list-thumb span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.18), transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(3, 199, 90, 0.22), transparent 34%),
        linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    font-size: 17px;
    font-weight: 1000;
}

.kprism-category-list-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kprism-category-list-title {
    display: block;
    color: #06142b;
    font-size: 22px;
    line-height: 1.34;
    font-weight: 1000;
    letter-spacing: -0.045em;
    text-decoration: none;
}

.kprism-category-list-title:hover {
    color: var(--kprism-green, #03c75a);
}

.kprism-category-list-body p {
    margin: 10px 0 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 700;
}

.kprism-category-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
}

.kprism-category-list-meta span::after {
    content: "";
}

.kprism-category-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.kprism-category-pagination a,
.kprism-category-pagination span,
.kprism-category-pagination strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border-radius: 999px;
    color: #06142b;
    font-size: 14px;
    font-weight: 1000;
    text-decoration: none;
}

.kprism-category-pagination a {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.kprism-category-pagination a:hover {
    border-color: var(--kprism-green, #03c75a);
    color: var(--kprism-green, #03c75a);
}

.kprism-category-pagination strong {
    background: #06142b;
    color: #ffffff;
}

.kprism-category-pagination .kprism-page-arrow {
    font-size: 22px;
    line-height: 1;
}

.kprism-category-pagination .is-disabled {
    color: #cbd5e1;
    background: transparent;
    border-color: transparent;
    pointer-events: none;
}

@media (max-width: 900px) {
    .kprism-category-list-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .kprism-category-list-item {
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 16px;
    }

    .kprism-category-list-thumb {
        width: 160px;
        height: 104px;
    }

    .kprism-category-list-title {
        font-size: 18px;
    }
}

@media (max-width: 620px) {
    .kprism-category-list-section {
        padding: 20px;
    }

    .kprism-category-list-item {
        grid-template-columns: 1fr;
    }

    .kprism-category-list-thumb {
        width: 100%;
        height: 190px;
    }

    .kprism-category-pagination {
        flex-wrap: wrap;
    }
}

/* ======================================================
   ARTICLE BODY RICH EDITOR CONTENT STYLE
   기사 상세 본문 편집요소 출력 스타일
   ====================================================== */

.article-body img,
.article-content img,
.article-preview-content img {
    max-width: 100%;
    border-radius: 18px;
}

.article-body iframe,
.article-content iframe,
.article-preview-content iframe {
    max-width: 100%;
    border: 0;
    border-radius: 18px;
}

.article-body table,
.article-content table,
.article-preview-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.article-body th,
.article-body td,
.article-content th,
.article-content td,
.article-preview-content th,
.article-preview-content td {
    border: 1px solid #dbe5ef;
    padding: 12px;
}

.article-body th,
.article-content th,
.article-preview-content th {
    background: #f1f5f9;
    font-weight: 1000;
}

.article-inline-ad-marker {
    margin: 30px 0;
    padding: 22px;
    border: 2px dashed #03c75a;
    border-radius: 18px;
    background: rgba(3, 199, 90, 0.08);
    color: #047857;
    text-align: center;
    font-size: 14px;
    font-weight: 1000;
}

.article-subtitle {
    margin: 36px 0 14px;
    padding-left: 12px;
    border-left: 5px solid #03c75a;
    color: #06142b;
    font-size: 25px;
    font-weight: 1000;
    line-height: 1.35;
}

.article-quote {
    margin: 28px 0;
    padding: 22px 24px;
    border-left: 6px solid #03c75a;
    border-radius: 18px;
    background: #f8fafc;
    color: #334155;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.75;
}

.article-video-wrap {
    margin: 28px 0;
}

.article-video-wrap iframe {
    display: block;
    width: 100%;
    min-height: 360px;
    background: #111827;
}

.article-video-wrap figcaption,
.article-table-wrap figcaption {
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

/* ======================================================
   ARTICLE INLINE AD LIVE RENDER
   본문 중간 광고 마커를 실제 광고 슬롯으로 출력
   ====================================================== */

.article-middle-ad-fallback {
    margin: 30px 0;
}

.article-inline-ad-live {
    margin: 34px 0;
    padding: 14px;
    border: 2px solid rgba(3, 199, 90, 0.35);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(3, 199, 90, 0.08), rgba(0, 212, 255, 0.06)),
        #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.article-inline-ad-live-label {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-bottom: 10px;
    border-radius: 999px;
    padding: 0 10px;
    background: #06142b;
    color: #ffffff;
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: 0.08em;
}

.article-inline-ad-live-body {
    overflow: hidden;
    border-radius: 16px;
}

.article-inline-ad-live-body img {
    max-width: 100%;
    border-radius: 16px;
}

.article-inline-ad-marker.is-waiting {
    display: grid;
    gap: 6px;
    margin: 34px 0;
    padding: 22px;
    border: 2px dashed #03c75a;
    border-radius: 20px;
    background: rgba(3, 199, 90, 0.08);
    color: #047857;
    text-align: center;
}

.article-inline-ad-marker.is-waiting strong {
    color: #06142b;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 0.08em;
}

.article-inline-ad-marker.is-waiting span {
    color: #047857;
    font-size: 14px;
    font-weight: 900;
}

/* ======================================================
   ARTICLE MIDDLE ONLY POSITION + YELLOW AD STYLE
   기사 본문 중간 광고는 중간에만, 디자인은 하단 광고형으로 통일
   ====================================================== */

.article-middle-ad-fallback {
    display: none !important;
}

.article-inline-ad-yellow,
.article-inline-ad-live.article-inline-ad-yellow,
.article-inline-ad-marker.article-inline-ad-yellow,
.article-inline-ad-marker.is-waiting {
    position: relative;
    margin: 34px 0;
    padding: 10px;
    border: 3px solid #ffe66d !important;
    border-radius: 22px !important;
    background: rgba(255, 246, 170, 0.48) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10) !important;
    color: #06142b !important;
    text-align: center;
}

.article-inline-ad-yellow::before,
.article-inline-ad-live.article-inline-ad-yellow::before,
.article-inline-ad-marker.article-inline-ad-yellow::before,
.article-inline-ad-marker.is-waiting::before {
    content: "ADVERTISEMENT";
    position: absolute;
    left: 20px;
    top: -16px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 12px;
    background: #06142b;
    color: #ffffff;
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: 0.06em;
}

.article-inline-ad-yellow .article-inline-ad-live-label,
.article-inline-ad-live.article-inline-ad-yellow .article-inline-ad-live-label {
    display: none !important;
}

.article-inline-ad-yellow .article-inline-ad-live-body,
.article-inline-ad-live.article-inline-ad-yellow .article-inline-ad-live-body {
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
}

.article-inline-ad-yellow img,
.article-inline-ad-live.article-inline-ad-yellow img {
    max-width: 100%;
    border-radius: 14px;
}

.article-inline-ad-marker.is-waiting strong {
    display: block;
    padding-top: 18px;
    color: #06142b !important;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: 0.08em;
}

.article-inline-ad-marker.is-waiting span {
    display: block;
    margin-top: 8px;
    padding-bottom: 12px;
    color: #047857 !important;
    font-size: 15px;
    font-weight: 1000;
}

.article-inline-ad-live.is-preview-moved {
    width: 100%;
    max-width: 100%;
}

.article-inline-ad-live.is-preview-moved [class*="preview"],
.article-inline-ad-live.is-preview-moved [class*="ad"] {
    max-width: 100%;
}

/* ======================================================
   ARTICLE MIDDLE STRICT V2
   article_middle는 본문 중간 전용, 빈 하단 광고 슬롯 숨김
   ====================================================== */

.article-middle-ad-fallback {
    display: none !important;
}

.article-inline-ad-yellow,
.article-inline-ad-live.article-inline-ad-yellow,
.article-inline-ad-marker.article-inline-ad-yellow,
.article-inline-ad-marker.is-waiting {
    position: relative;
    margin: 34px 0;
    padding: 10px;
    border: 3px solid #ffe66d !important;
    border-radius: 22px !important;
    background: rgba(255, 246, 170, 0.48) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10) !important;
    color: #06142b !important;
    text-align: center;
}

.article-inline-ad-yellow::before,
.article-inline-ad-live.article-inline-ad-yellow::before,
.article-inline-ad-marker.article-inline-ad-yellow::before,
.article-inline-ad-marker.is-waiting::before {
    content: "ADVERTISEMENT";
    position: absolute;
    left: 20px;
    top: -16px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 12px;
    background: #06142b;
    color: #ffffff;
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: 0.06em;
}

.article-inline-ad-yellow .article-inline-ad-live-label,
.article-inline-ad-live.article-inline-ad-yellow .article-inline-ad-live-label {
    display: none !important;
}

.article-inline-ad-yellow .article-inline-ad-live-body,
.article-inline-ad-live.article-inline-ad-yellow .article-inline-ad-live-body {
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
}

.article-inline-ad-marker.is-waiting strong {
    display: block;
    padding-top: 18px;
    color: #06142b !important;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: 0.08em;
}

.article-inline-ad-marker.is-waiting span {
    display: block;
    margin-top: 8px;
    padding-bottom: 12px;
    color: #047857 !important;
    font-size: 15px;
    font-weight: 1000;
}

/* ======================================================
   ARTICLE MIDDLE NO LOOP SAFETY
   본문 중간 광고 중복 삽입 방지 / 하단 article_middle 제거
   ====================================================== */

.article-middle-ad-fallback {
    display: none !important;
}

.article-inline-ad-live[data-ad-slot="article_middle"] {
    position: relative;
    margin: 34px 0;
    padding: 10px;
    border: 3px solid #ffe66d !important;
    border-radius: 22px !important;
    background: rgba(255, 246, 170, 0.48) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10) !important;
}

.article-inline-ad-live[data-ad-slot="article_middle"]::before {
    content: "ADVERTISEMENT";
    position: absolute;
    left: 20px;
    top: -16px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 12px;
    background: #06142b;
    color: #ffffff;
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: 0.06em;
    z-index: 2;
}

.article-inline-ad-live[data-ad-slot="article_middle"] .article-inline-ad-live-body {
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
}

.article-inline-ad-live[data-ad-slot="article_middle"] .article-inline-ad-live-label {
    display: none !important;
}

.article-inline-ad-marker[data-ad-slot="article_middle"].is-waiting {
    position: relative;
    margin: 34px 0;
    padding: 28px 16px 20px;
    border: 3px solid #ffe66d !important;
    border-radius: 22px !important;
    background: rgba(255, 246, 170, 0.48) !important;
    color: #06142b !important;
    text-align: center;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10) !important;
}

.article-inline-ad-marker[data-ad-slot="article_middle"].is-waiting::before {
    content: "ADVERTISEMENT";
    position: absolute;
    left: 20px;
    top: -16px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 12px;
    background: #06142b;
    color: #ffffff;
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: 0.06em;
}

.article-inline-ad-marker[data-ad-slot="article_middle"].is-waiting strong {
    display: none;
}

.article-inline-ad-marker[data-ad-slot="article_middle"].is-waiting span {
    display: block;
    color: #047857 !important;
    font-size: 15px;
    font-weight: 1000;
}

/* ======================================================
   AD SLOT FULL RENDER
   실제 기사 광고: 이미지 + 제목 + 문구 출력
   ====================================================== */

.ad-slot-live {
    overflow: hidden;
    width: 100%;
    border-radius: 18px;
}

.ad-slot-live .ad-slot-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.ad-slot-live .ad-slot-inner {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 12px;
    border-radius: 18px;
    background: #ffffff;
}

.ad-slot-live .ad-slot-label {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    padding: 0 9px;
    background: #06142b;
    color: #ffffff;
    font-size: 10px;
    font-weight: 1000;
    letter-spacing: 0.06em;
}

.ad-slot-live .ad-slot-figure {
    overflow: hidden;
    margin: 0;
    border-radius: 16px;
    background: #f8fafc;
    text-align: center;
}

.ad-slot-live .ad-slot-figure img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
}

.ad-slot-live .ad-slot-copy {
    display: grid;
    gap: 5px;
    padding: 0 16px 16px;
    text-align: center;
}

.ad-slot-live .ad-slot-copy strong {
    color: #06142b;
    font-size: 20px;
    font-weight: 1000;
    letter-spacing: -0.04em;
}

.ad-slot-live .ad-slot-copy span {
    color: #334155;
    font-size: 14px;
    font-weight: 900;
}

.ad-slot-empty {
    display: none !important;
}


/* ======================================================
   PUBLIC ARTICLE IMAGE WATERMARK - 2026.06.01 v1
   기사 대표이미지 / 카테고리 카드 이미지 제호 워터마크
   ====================================================== */

.main-figure {
    display: grid;
    overflow: hidden;
    position: relative;
}

.main-figure .main-image {
    grid-area: 1 / 1;
    margin: 0 !important;
}

.main-figure figcaption {
    grid-area: 2 / 1;
}

.main-figure::after {
    content: var(--press-watermark-text, "위클리창원경남");
    grid-area: 1 / 1;
    align-self: end;
    justify-self: end;
    z-index: 6;
    margin: 0 22px 22px 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -0.075em;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.52),
        0 0 1px rgba(0, 0, 0, 0.42);
    pointer-events: none;
    white-space: nowrap;
}

.kprism-category-lead-link,
.kprism-category-sub-image,
.kprism-category-list-thumb,
.card-image,
.hero-image,
.thumb-image,
.nb-headline-image,
.nb-card-image,
.nb-article-image,
.nb-card-link,
.nb-headline-link {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.kprism-category-lead-link::after,
.kprism-category-sub-image::after,
.kprism-category-list-thumb::after,
.card-image::after,
.hero-image::after,
.thumb-image::after,
.nb-headline-image::after,
.nb-card-image::after,
.nb-article-image::after,
.nb-card-link::after,
.nb-headline-link::after {
    content: var(--press-watermark-text, "위클리창원경남");
    position: absolute;
    right: 14px;
    bottom: 13px;
    z-index: 6;
    color: rgba(255, 255, 255, 0.48);
    font-size: clamp(13px, 1.35vw, 22px);
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -0.075em;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.54),
        0 0 1px rgba(0, 0, 0, 0.45);
    pointer-events: none;
    white-space: nowrap;
}

.kprism-category-lead-link::after,
.nb-headline-link::after,
.nb-headline-image::after {
    right: 24px;
    bottom: 22px;
    font-size: clamp(22px, 2.2vw, 34px);
}

.kprism-category-list-thumb::after,
.thumb-image::after {
    right: 10px;
    bottom: 10px;
    font-size: 13px;
}

@media (max-width: 760px) {
    .main-figure::after {
        margin: 0 14px 14px 0;
        font-size: clamp(18px, 5.4vw, 28px);
    }

    .kprism-category-lead-link::after,
    .kprism-category-sub-image::after,
    .kprism-category-list-thumb::after,
    .card-image::after,
    .hero-image::after,
    .thumb-image::after,
    .nb-headline-image::after,
    .nb-card-image::after,
    .nb-article-image::after,
    .nb-card-link::after,
    .nb-headline-link::after {
        right: 11px;
        bottom: 11px;
        font-size: clamp(12px, 3.4vw, 18px);
    }
}

/* ======================================================
   KPRISM PLATFORM LANDING
   /kprism/ SaaS 플랫폼 랜딩 전용 스타일
   기존 뉴스 사이트와 충돌 방지를 위해 kprism-platform prefix만 사용
   ====================================================== */

.kprism-platform-shell {
    display: grid;
    gap: 34px;
}

.kprism-platform-notice {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid rgba(3, 199, 90, 0.26);
    border-radius: 22px;
    background: rgba(3, 199, 90, 0.08);
    color: #064e3b;
}

.kprism-platform-notice strong {
    font-size: 16px;
    font-weight: 1000;
}

.kprism-platform-notice span {
    color: #047857;
    font-size: 14px;
    font-weight: 800;
}

.kprism-platform-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
    gap: 34px;
    align-items: center;
    min-height: 560px;
    padding: 58px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 12% 18%, rgba(125, 211, 252, 0.22), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(167, 139, 250, 0.24), transparent 30%),
        linear-gradient(135deg, #05072f 0%, #10194f 56%, #02041f 100%);
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.24);
}

.kprism-platform-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(3, 199, 90, 0.18);
    filter: blur(4px);
}

.kprism-platform-hero-copy {
    position: relative;
    z-index: 2;
}

.kprism-platform-kicker {
    margin: 0 0 12px;
    color: #8ff0d2;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: 0.14em;
}

.kprism-platform-hero h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.05;
    font-weight: 1000;
    letter-spacing: -0.085em;
}

.kprism-platform-hero-copy > p:not(.kprism-platform-kicker) {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 700;
    word-break: keep-all;
}

.kprism-platform-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.kprism-platform-primary-button,
.kprism-platform-secondary-button,
.kprism-platform-bottom-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 1000;
    text-decoration: none;
}

.kprism-platform-primary-button {
    background: #8ff0d2;
    color: #02041f;
    box-shadow: 0 16px 36px rgba(143, 240, 210, 0.2);
}

.kprism-platform-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.kprism-platform-preview {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.kprism-platform-preview-top {
    display: flex;
    gap: 7px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.kprism-platform-preview-top span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
}

.kprism-platform-preview-grid {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 340px;
}

.kprism-platform-preview-sidebar {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 18px;
    background: rgba(2, 4, 31, 0.48);
}

.kprism-platform-preview-sidebar strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 1000;
}

.kprism-platform-preview-sidebar span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border-radius: 999px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 900;
}

.kprism-platform-preview-main {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 20px;
}

.kprism-platform-preview-card {
    min-height: 128px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 24% 24%, rgba(125, 211, 252, 0.55), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
}

.kprism-platform-preview-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.kprism-platform-preview-row div {
    min-height: 84px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.kprism-platform-preview-lines {
    display: grid;
    gap: 10px;
}

.kprism-platform-preview-lines span {
    display: block;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
}

.kprism-platform-preview-lines span:nth-child(2) {
    width: 78%;
}

.kprism-platform-preview-lines span:nth-child(3) {
    width: 52%;
}

.kprism-platform-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.kprism-platform-feature-card {
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.kprism-platform-feature-card span {
    color: #03c75a;
    font-size: 13px;
    font-weight: 1000;
}

.kprism-platform-feature-card p {
    margin: 12px 0 0;
    color: #06142b;
    font-size: 16px;
    line-height: 1.58;
    font-weight: 900;
    word-break: keep-all;
}

.kprism-platform-section-head {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    text-align: center;
}

.kprism-platform-section-head p {
    margin: 0;
    color: #03c75a;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: 0.14em;
}

.kprism-platform-section-head h2 {
    margin: 0;
    color: #06142b;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 1000;
    letter-spacing: -0.075em;
}

.kprism-platform-section-head span {
    color: #64748b;
    font-size: 15px;
    font-weight: 800;
}

.kprism-platform-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.kprism-platform-plan-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.kprism-platform-plan-card.is-featured {
    border-color: rgba(3, 199, 90, 0.5);
    box-shadow: 0 22px 52px rgba(3, 199, 90, 0.16);
    transform: translateY(-8px);
}

.kprism-platform-plan-badge {
    position: absolute;
    right: 22px;
    top: 22px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 11px;
    background: #03c75a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 1000;
}

.kprism-platform-plan-card h3 {
    margin: 0;
    color: #06142b;
    font-size: 25px;
    font-weight: 1000;
    letter-spacing: -0.055em;
}

.kprism-platform-plan-card strong {
    color: #06142b;
    font-size: 34px;
    font-weight: 1000;
    letter-spacing: -0.075em;
}

.kprism-platform-plan-card em {
    color: #64748b;
    font-style: normal;
    font-size: 14px;
    font-weight: 900;
}

.kprism-platform-plan-card p {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 800;
    word-break: keep-all;
}

.kprism-platform-plan-card ul {
    display: grid;
    gap: 9px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.kprism-platform-plan-card li {
    position: relative;
    padding-left: 22px;
    color: #111827;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 900;
}

.kprism-platform-plan-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #03c75a;
    font-weight: 1000;
}

.kprism-platform-plan-notice {
    margin-top: 6px;
    padding: 13px 14px;
    border-radius: 18px;
    background: #f8fafc;
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 900;
}

.kprism-platform-flow {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 30px;
    align-items: start;
    padding: 36px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.kprism-platform-flow h2 {
    margin: 0;
    color: #06142b;
    font-size: 34px;
    font-weight: 1000;
    letter-spacing: -0.075em;
}

.kprism-platform-flow p:not(.kprism-platform-kicker) {
    margin: 14px 0 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 800;
    word-break: keep-all;
}

.kprism-platform-flow ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kprism-platform-flow li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 15px;
    border-radius: 20px;
    background: #f8fafc;
}

.kprism-platform-flow li strong {
    display: grid;
    place-items: center;
    width: 54px;
    height: 44px;
    border-radius: 16px;
    background: #06142b;
    color: #8ff0d2;
    font-size: 13px;
    font-weight: 1000;
}

.kprism-platform-flow li span {
    color: #06142b;
    font-size: 16px;
    font-weight: 1000;
}

.kprism-platform-bottom-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 30px 34px;
    border-radius: 30px;
    background: #06142b;
    color: #ffffff;
}

.kprism-platform-bottom-cta p {
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
    font-weight: 1000;
    letter-spacing: -0.035em;
}

.kprism-platform-bottom-cta a {
    flex: 0 0 auto;
    background: #8ff0d2;
    color: #02041f;
}

@media (max-width: 1020px) {
    .kprism-platform-hero,
    .kprism-platform-flow {
        grid-template-columns: 1fr;
    }

    .kprism-platform-feature-grid,
    .kprism-platform-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kprism-platform-plan-card.is-featured {
        transform: none;
    }
}

@media (max-width: 680px) {
    .kprism-platform-hero {
        min-height: auto;
        padding: 34px 24px;
        border-radius: 26px;
    }

    .kprism-platform-preview-grid {
        grid-template-columns: 1fr;
    }

    .kprism-platform-preview-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kprism-platform-feature-grid,
    .kprism-platform-plan-grid {
        grid-template-columns: 1fr;
    }

    .kprism-platform-flow {
        padding: 24px;
    }

    .kprism-platform-bottom-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px;
    }

    .kprism-platform-bottom-cta a {
        width: 100%;
    }
}

/* ======================================================
   KPRISM PLATFORM PRESS SIGNUP FORM
   /kprism/press-signup/ 회원사 가입신청 전용 스타일
   기존 뉴스 사이트와 충돌 방지를 위해 kprism-platform prefix만 사용
   ====================================================== */

.kprism-platform-form-hero {
    padding: 42px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 16%, rgba(143, 240, 210, 0.18), transparent 30%),
        linear-gradient(135deg, #06142b 0%, #10194f 62%, #02041f 100%);
    color: #ffffff;
    box-shadow: 0 22px 52px rgba(2, 6, 23, 0.18);
}

.kprism-platform-form-hero h2 {
    margin: 0;
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.08;
    font-weight: 1000;
    letter-spacing: -0.08em;
}

.kprism-platform-form-hero p:not(.kprism-platform-kicker) {
    max-width: 760px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 800;
    word-break: keep-all;
}

.kprism-platform-form-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.kprism-platform-form-guide {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 14px;
    padding: 26px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.kprism-platform-form-guide strong {
    color: #06142b;
    font-size: 21px;
    font-weight: 1000;
    letter-spacing: -0.05em;
}

.kprism-platform-form-guide p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 800;
    word-break: keep-all;
}

.kprism-platform-form-guide ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kprism-platform-form-guide li {
    position: relative;
    padding-left: 20px;
    color: #06142b;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.45;
}

.kprism-platform-form-guide li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #03c75a;
    font-weight: 1000;
}

.kprism-platform-form-card {
    display: grid;
    gap: 28px;
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.kprism-platform-form-section {
    display: grid;
    gap: 18px;
}

.kprism-platform-form-section h3 {
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #06142b;
    color: #06142b;
    font-size: 22px;
    font-weight: 1000;
    letter-spacing: -0.055em;
}

.kprism-platform-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.kprism-platform-field {
    display: grid;
    gap: 8px;
}

.kprism-platform-field label {
    color: #06142b;
    font-size: 14px;
    font-weight: 1000;
}

.kprism-platform-input,
.kprism-platform-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    background: #ffffff;
    color: #06142b;
    font-size: 15px;
    font-weight: 800;
    outline: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.kprism-platform-input {
    min-height: 48px;
    padding: 0 15px;
}

.kprism-platform-textarea {
    min-height: 130px;
    padding: 14px 15px;
    resize: vertical;
}

.kprism-platform-input:focus,
.kprism-platform-textarea:focus {
    border-color: #03c75a;
    box-shadow: 0 0 0 4px rgba(3, 199, 90, 0.12);
}

.kprism-platform-field p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 800;
}

.kprism-platform-field-error,
.kprism-platform-form-errors {
    padding: 11px 13px;
    border-radius: 14px;
    background: #fff1f2;
    color: #be123c;
    font-size: 13px;
    font-weight: 900;
}

.kprism-platform-field-error ul,
.kprism-platform-form-errors ul {
    margin: 0;
    padding-left: 16px;
}

.kprism-platform-manager-notice {
    padding: 16px 18px;
    border: 1px solid rgba(3, 199, 90, 0.26);
    border-radius: 20px;
    background: rgba(3, 199, 90, 0.08);
    color: #047857;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 900;
    word-break: keep-all;
}

.kprism-platform-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.kprism-platform-form-actions a,
.kprism-platform-form-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 1000;
    text-decoration: none;
}

.kprism-platform-form-actions a {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #06142b;
}

.kprism-platform-form-actions button {
    appearance: none;
    border: 0;
    background: #03c75a;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(3, 199, 90, 0.18);
}

@media (max-width: 960px) {
    .kprism-platform-form-layout {
        grid-template-columns: 1fr;
    }

    .kprism-platform-form-guide {
        position: static;
    }
}

@media (max-width: 680px) {
    .kprism-platform-form-hero,
    .kprism-platform-form-card {
        padding: 24px;
        border-radius: 24px;
    }

    .kprism-platform-form-grid {
        grid-template-columns: 1fr;
    }

    .kprism-platform-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .kprism-platform-form-actions a,
    .kprism-platform-form-actions button {
        width: 100%;
    }
}

/* ======================================================
   KPRISM SLUG CHECK MESSAGE
   회원사 가입신청 사이트 슬러그 중복 확인 메시지
   ====================================================== */

.kprism-platform-slug-check {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 1000;
    line-height: 1.35;
}

.kprism-platform-slug-check.is-idle {
    background: #f1f5f9;
    color: #64748b;
}

.kprism-platform-slug-check.is-checking {
    background: #eff6ff;
    color: #1d4ed8;
}

.kprism-platform-slug-check.is-available {
    background: rgba(3, 199, 90, 0.12);
    color: #047857;
}

.kprism-platform-slug-check.is-unavailable,
.kprism-platform-slug-check.is-error {
    background: #fff1f2;
    color: #be123c;
}

/* ======================================================
   PressSite logo image/text priority
   ====================================================== */

.site-title-text-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    max-width: min(520px, 84vw);
    color: #07111f;
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 1000;
    letter-spacing: -0.08em;
    line-height: 1.05;
    white-space: nowrap;
}

@media (max-width: 720px) {
    .site-title-text-logo {
        min-height: 44px;
        font-size: clamp(24px, 7vw, 38px);
    }
}

/* ======================================================
   Public ad title hidden polish
   계약명/소재명은 공개 광고에서 숨기고 문구만 정렬
   ====================================================== */

.ad-slot-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    text-align: center;
}

.ad-slot-copy span {
    display: block;
    color: #111827;
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 900;
    line-height: 1.45;
}

.ad-slot-figure + .ad-slot-copy {
    margin-top: 12px;
}

.news-ad-popup-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
}

.news-ad-popup-copy span {
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.45;
}

/* Public membership menu patch */
/* 회원사 공개 사이트: 직원 가입신청 진입 메뉴 */

.navbar-inner .membership-menu-link {
    color: #03c75a;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.navbar-inner .membership-menu-link::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 6px;
    border-radius: 999px;
    background: #03c75a;
    vertical-align: middle;
}

.footer-membership-link {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 10px;
    background: #eff6ff;
    color: #1e40af;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.footer-membership-link:hover {
    background: #dbeafe;
}

/* Membership and staff-only split patch */
/* 공개 사이트: MEMBERSHIP은 일반회원, 직원전용은 직원 로그인 */

.navbar-inner .staff-only-menu-link {
    color: #facc15;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.footer-member-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.footer-staff-link {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 10px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.membership-public-body,
.staff-login-public-body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(3, 199, 90, 0.18), transparent 34%),
        linear-gradient(135deg, #05072f 0%, #111827 100%);
}

.membership-public-wrap,
.staff-login-public-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 28px;
}

.membership-public-card,
.staff-login-public-card {
    width: min(620px, 100%);
    border-radius: 24px;
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.membership-public-head p,
.staff-login-public-head p {
    margin: 0;
    color: #03c75a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.membership-public-head h1,
.staff-login-public-head h1 {
    margin: 5px 0 6px;
    color: #0f172a;
    font-size: 26px;
    font-weight: 760;
    letter-spacing: -0.05em;
}

.membership-public-head span,
.membership-public-note span,
.staff-login-public-head span,
.staff-login-register-box span {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.membership-public-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.membership-public-actions a,
.staff-login-register-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 760;
    text-decoration: none;
}

.membership-login-button {
    background: #eff6ff;
    color: #1e40af;
}

.membership-register-button,
.staff-login-register-box a {
    background: #03c75a;
    color: #ffffff;
}

.membership-public-note,
.staff-login-register-box {
    display: grid;
    gap: 5px;
    margin-top: 14px;
    border: 1px solid #dbeafe;
    border-radius: 13px;
    padding: 11px 12px;
    background: #eff6ff;
}

.membership-public-note strong,
.staff-login-register-box strong {
    color: #172554;
    font-size: 14px;
    font-weight: 700;
}

.staff-login-form {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.staff-login-form label {
    display: grid;
    gap: 5px;
}

.staff-login-form label span {
    color: #334155;
    font-size: 12px;
    font-weight: 650;
}

.staff-login-form input {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0 10px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
}

.staff-login-form button {
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #03c75a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 760;
    cursor: pointer;
}

.staff-login-messages {
    display: grid;
    gap: 6px;
    margin-top: 12px;
}

.staff-login-message {
    border-radius: 10px;
    padding: 9px 10px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 13px;
    font-weight: 600;
}

.membership-home-link {
    display: inline-flex;
    margin-top: 14px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 640px) {
    .membership-public-actions {
        grid-template-columns: 1fr;
    }
}



/* NewsBuilder article detail watermark final kill-switch */
.article-detail .main-figure::before,
.article-detail .main-figure::after,
.article-detail .main-figure.has-watermark::before,
.article-detail .main-figure.has-watermark::after,
.article-detail .main-figure.nb-watermark-figure::before,
.article-detail .main-figure.nb-watermark-figure::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.article-detail .main-figure > .article-image-watermark {
    display: none !important;
}

.article-detail .main-image-wrap > .article-image-watermark,
.article-detail .nb-watermark-box > .article-image-watermark {
    display: block !important;
}


/* Sticky press header */
.masthead {
    position: sticky;
    top: 0;
    z-index: 1200;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.navbar {
    position: relative;
    z-index: 1201;
}

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

@media (max-width: 768px) {
    .masthead-inner {
        padding-top: 20px;
        padding-bottom: 14px;
    }

    .site-title {
        font-size: 30px;
    }

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


/* === PUBLIC LOGOUT PATCH 260613 === */
.public-logout-form {
    display: inline-flex;
    margin: 0;
}

.public-logout-button {
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    background: #111827;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.public-logout-button:hover {
    background: #ef4444;
}



/* === LOGOUT GET LINK CSRF FIX 260613 === */
.sidebar-logout-button,
.kpa-logout-button,
.newsroom-admin-logout-button,
.public-logout-button {
    text-decoration: none;
}
