:root {
    --jk-paper: #faf8f3;
    --jk-ink: #22211f;
    --jk-muted: #6f6a61;
    --jk-line: #d8d1c5;
    --jk-forest: #22473f;
    --jk-red: #d42626;
    --jk-white: #fffdf8;
    --jk-shadow: 0 18px 45px rgba(34, 33, 31, 0.15);
}

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

.jk-main a,
.jk-topbar a,
.jk-footer a {
    color: inherit;
    text-decoration: none;
}

.jk-topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 52px);
    color: var(--jk-white);
    transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.jk-topbar.is-solid,
.jk-topbar[data-solid="true"] {
    background: rgba(250, 248, 243, 0.96);
    color: var(--jk-ink);
    box-shadow: 0 1px 0 rgba(34, 33, 31, 0.08);
    backdrop-filter: blur(14px);
}

.jk-brand {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}

.jk-brand small {
    font-size: 16px;
    font-weight: 700;
    opacity: 0.72;
}

.jk-nav {
    display: flex;
    gap: clamp(14px, 2.5vw, 30px);
    font-size: 14px;
    font-weight: 800;
}

.jk-nav a {
    position: relative;
    transition: color 180ms ease;
}

.jk-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--jk-red);
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 180ms ease, transform 180ms ease;
}

.jk-nav a:hover {
    color: var(--jk-red);
}

.jk-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.jk-hero {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    background: #111;
    color: var(--jk-white);
}

.jk-hero-slider,
.jk-hero-slide {
    position: absolute;
    inset: 0;
}

.jk-hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 700ms ease;
}

.jk-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.jk-hero-slide::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(90deg, rgba(16, 21, 20, 0.76), rgba(16, 21, 20, 0.22) 48%, rgba(16, 21, 20, 0.04));
}

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

.jk-hero-content {
    position: absolute;
    left: clamp(18px, 6vw, 76px);
    bottom: clamp(46px, 9vh, 92px);
    z-index: 2;
    width: min(760px, calc(100% - 36px));
}

.jk-eyebrow,
.jk-kicker {
    color: var(--jk-red);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.jk-eyebrow {
    color: rgba(255, 253, 248, 0.86);
}

.jk-hero h1,
.jk-section h1,
.jk-section h2 {
    margin: 0 0 18px;
    font-family: "Noto Serif KR", Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0;
}

.jk-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 12vw, 142px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 0.98;
}

.jk-section h1,
.jk-section h2 {
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.35;
}

.jk-hero-copy {
    max-width: 620px;
    margin: 0 0 28px;
    color: rgba(255, 253, 248, 0.9);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 500;
    word-break: keep-all;
}

.jk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 1px solid currentColor;
    border-radius: 4px;
    padding: 10px 16px;
    font-weight: 900;
    line-height: 1.2;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.jk-button i {
    font-size: 0.88em;
}

.jk-button:hover {
    transform: translateY(-1px);
}

.jk-button.primary {
    border-color: var(--jk-red);
    background: var(--jk-red);
    color: #fff;
    box-shadow: 0 12px 26px rgba(217, 32, 32, 0.22);
}

.jk-button.light {
    color: var(--jk-white);
    border-color: rgba(255, 253, 248, 0.72);
}

.jk-button.kakao {
    border-color: #fee500;
    background: #fee500;
    color: #191600;
    box-shadow: 0 12px 26px rgba(254, 229, 0, 0.18);
}

.jk-button.kakao:hover {
    background: #f7d900;
    border-color: #f7d900;
    color: #191600;
}

.jk-hero-dots {
    position: absolute;
    right: clamp(18px, 4vw, 52px);
    bottom: 34px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.jk-hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.jk-hero-dots button.is-active {
    background: #fff;
}

.jk-section {
    padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 64px);
}

.jk-section-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.jk-section-head {
    max-width: 760px;
    margin-bottom: clamp(32px, 5vw, 58px);
    text-align: left;
}

.jk-lead,
.jk-bio > p,
.jk-contact-band p,
.jk-contact-copy p {
    color: var(--jk-muted);
    font-size: clamp(16px, 1.5vw, 19px);
    word-break: keep-all;
}

.jk-section-head .jk-lead {
    max-width: 680px;
    margin-top: 22px;
    line-height: 1.65;
}

.jk-intro {
    background: var(--jk-white);
}

.jk-intro-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(34px, 5vw, 78px);
    align-items: center;
}

.jk-profile-mark {
    display: grid;
    min-height: 420px;
    place-items: center;
    background: var(--jk-red);
    color: #fff;
    font-family: "Arial Black", Arial, sans-serif;
    font-size: clamp(96px, 18vw, 230px);
    font-weight: 900;
    letter-spacing: -0.08em;
    overflow: hidden;
}

.jk-profile-image {
    display: grid;
    height: clamp(440px, 46vw, 560px);
    place-items: end center;
    overflow: hidden;
    border-radius: 8px;
    background: #9ac36c;
}

.jk-profile-image img {
    display: block;
    width: auto;
    max-width: 88%;
    height: 92%;
    object-fit: contain;
}

.jk-bio {
    display: grid;
    gap: 26px;
}

.jk-intro h2 {
    max-width: 760px;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.35;
}

.jk-bio > p {
    max-width: 790px;
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.65;
}

.jk-fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--jk-line);
    border-radius: 8px;
    background: var(--jk-line);
    max-width: 790px;
}

.jk-fact {
    min-height: 96px;
    padding: 20px 24px;
    background: var(--jk-paper);
}

.jk-fact strong {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: var(--jk-forest);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.jk-fact strong i {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    background: rgba(27, 77, 64, 0.08);
    color: var(--jk-red);
    font-size: 11px;
}

.jk-fact span {
    display: block;
    font-size: 16px;
    color: #a4a8a6;
    font-weight: 700;
    line-height: 1.5;
}

.jk-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 720ms ease, transform 720ms ease;
    will-change: opacity, transform;
}

.jk-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .jk-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.jk-works {
    background: linear-gradient(180deg, var(--jk-paper), #eef3f0 46%, var(--jk-paper));
}

.jk-works .jk-lead {
    color: #6f7773;
}

.jk-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 30px 18px;
}

.jk-work-card {
    position: relative;
    display: block;
    overflow: visible;
    min-height: 0;
    border-radius: 0;
    background: transparent;
    color: var(--jk-ink);
    text-decoration: none;
}

.jk-work-card:nth-child(1),
.jk-work-card:nth-child(4),
.jk-work-card:nth-child(8) {
    grid-column: auto;
}

.jk-work-card:nth-child(1) {
    grid-row: auto;
}

.jk-work-card::before {
    display: none;
}

.jk-work-card img {
    display: block;
    width: 100%;
    height: clamp(230px, 23vw, 320px);
    min-height: 0;
    border-radius: 8px;
    background: #d7ddd3;
    object-fit: cover;
    transition: filter 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.jk-work-card:hover img {
    filter: brightness(0.97);
    box-shadow: 0 18px 42px rgba(32, 45, 39, 0.13);
    transform: translateY(-3px) scale(1.015);
}

.jk-work-card::after {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 253, 248, 0.58);
    border-radius: 999px;
    background: rgba(18, 25, 22, 0.44);
    color: rgba(255, 253, 248, 0.94);
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 220ms ease, transform 220ms ease;
    backdrop-filter: blur(8px);
}

.jk-work-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.jk-work-info {
    position: static;
    z-index: auto;
    min-height: 0;
    padding: 12px 2px 0;
    background: transparent;
}

.jk-work-info strong {
    display: block;
    color: var(--jk-ink);
    font-size: 18px;
    line-height: 1.35;
}

.jk-work-info span {
    display: block;
    margin-top: 3px;
    color: #8b918e;
    font-size: 14px;
    font-weight: 800;
}

.jk-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 4vw, 56px);
    background: rgba(18, 22, 20, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 680ms ease;
}

.jk-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.jk-lightbox-open {
    overflow: hidden;
}

.jk-lightbox-figure {
    position: relative;
    display: grid;
    gap: 14px;
    width: fit-content;
    max-width: min(1180px, calc(100vw - 112px));
    margin: 0 auto;
    opacity: 0;
    transform: translateY(34px) scale(0.96);
    transition: opacity 760ms ease, transform 760ms ease;
}

.jk-lightbox.is-open .jk-lightbox-figure {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.jk-lightbox img {
    display: block;
    width: auto;
    max-width: min(100%, calc(100vw - 112px));
    max-height: 82vh;
    margin: 0 auto;
    border-radius: 8px;
    background: #f6f4ee;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    opacity: 1;
    transform: scale(1);
    transition: opacity 420ms ease, transform 420ms ease;
}

.jk-lightbox.is-switching img {
    opacity: 0;
    transform: translateY(10px) scale(0.965);
}

.jk-lightbox figcaption {
    color: rgba(255, 253, 248, 0.82);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    opacity: 1;
    transition: opacity 420ms ease;
}

.jk-lightbox.is-switching figcaption {
    opacity: 0;
}

.jk-lightbox button {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 253, 248, 0.38);
    border-radius: 999px;
    background: rgba(20, 24, 22, 0.46);
    color: rgba(255, 253, 248, 0.92);
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.jk-lightbox-close {
    top: 0;
    right: -56px;
    width: 42px;
    height: 42px;
    font-size: 18px;
}

.jk-lightbox-prev,
.jk-lightbox-next {
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    font-size: 24px;
}

.jk-lightbox-prev {
    left: -62px;
}

.jk-lightbox-next {
    right: -62px;
}

.jk-lightbox button:hover {
    border-color: rgba(255, 253, 248, 0.72);
    background: rgba(255, 253, 248, 0.14);
    color: #fff;
}

.jk-lightbox-close:hover {
    transform: translateY(-1px);
}

.jk-lightbox-prev:hover,
.jk-lightbox-next:hover {
    transform: translateY(-50%) scale(1.04);
}

@media (max-width: 700px) {
    .jk-lightbox {
        padding: 18px;
    }

    .jk-lightbox-figure {
        max-width: calc(100vw - 36px);
    }

    .jk-lightbox img {
        max-width: calc(100vw - 36px);
        max-height: 78vh;
    }

    .jk-lightbox-close {
        top: -52px;
        right: 0;
    }

    .jk-lightbox-prev {
        left: 10px;
    }

    .jk-lightbox-next {
        right: 10px;
    }
}

.jk-profile {
    background: var(--jk-forest);
    color: var(--jk-white);
}

.jk-profile .jk-kicker,
.jk-profile .jk-lead {
    color: rgba(255, 253, 248, 0.76);
}

.jk-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 253, 248, 0.2);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.2);
}

.jk-timeline-item {
    min-height: 170px;
    padding: 24px;
    background: rgba(255, 253, 248, 0.08);
}

.jk-timeline-item strong {
    display: block;
    margin-bottom: 10px;
    color: #ffd96d;
    font-size: 13px;
    text-transform: uppercase;
}

.jk-timeline-item p {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.45;
    word-break: keep-all;
}

.jk-timeline-item span {
    display: block;
    color: rgba(255, 253, 248, 0.78);
    font-size: 16px;
    line-height: 1.65;
    word-break: keep-all;
}

.jk-contact-band {
    background: var(--jk-white);
}

.jk-contact-panel {
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(420px, 560px);
    align-items: center;
    gap: clamp(34px, 6vw, 86px);
}

.jk-contact-side {
    display: flex;
    align-items: center;
    gap: 24px;
}

.jk-contact-info {
    display: grid;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    border-top: 1px solid var(--jk-line);
}

.jk-contact-side .jk-button {
    flex: 0 0 auto;
    white-space: nowrap;
}

.jk-contact-info a {
    display: grid;
    grid-template-columns: 28px 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 46px;
    border-bottom: 1px solid var(--jk-line);
    color: #686d6a;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: color 180ms ease, padding-left 180ms ease;
}

.jk-contact-info a > i {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 999px;
    background: rgba(27, 77, 64, 0.06);
    color: #9a9f9c;
    font-size: 12px;
    transition: background 180ms ease, color 180ms ease;
}

.jk-contact-info span {
    color: #9a9f9c;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.jk-contact-info a:hover {
    color: #4c5250;
    padding-left: 4px;
}

.jk-contact-info a:hover > i {
    background: rgba(217, 32, 32, 0.1);
    color: var(--jk-red);
}

.jk-contact-form-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
}

.jk-contact-form {
    display: grid;
    gap: 18px;
}

.jk-contact-form label {
    display: grid;
    gap: 10px;
    color: var(--jk-ink);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.jk-contact-form input,
.jk-contact-form textarea {
    width: 100%;
    border: 1px solid var(--jk-line);
    border-radius: 6px;
    background: #fff;
    padding: 16px 17px;
    color: #3f4442;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
}

.jk-contact-form textarea {
    min-height: 190px;
    resize: vertical;
}

.jk-contact-form input:focus,
.jk-contact-form textarea:focus {
    outline: 0;
    border-color: rgba(27, 77, 64, 0.38);
    box-shadow: 0 0 0 4px rgba(27, 77, 64, 0.08);
}

.jk-empty {
    grid-column: 1 / -1;
    border: 1px dashed var(--jk-line);
    border-radius: 8px;
    padding: 40px;
    color: var(--jk-muted);
    text-align: center;
}

.jk-footer {
    padding: 26px clamp(18px, 5vw, 64px);
    background: var(--jk-ink);
    color: rgba(255, 253, 248, 0.72);
    font-size: 13px;
}

.jk-footer-inner {
    display: flex;
    align-items: center;
    width: min(1180px, 100%);
    margin: 0 auto;
    justify-content: space-between;
    gap: 18px;
}

.jk-footer-admin {
    display: inline-grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    margin-left: auto;
    border: 1px solid rgba(255, 253, 248, 0.16);
    border-radius: 999px;
    color: rgba(255, 253, 248, 0.42);
    font-size: 14px;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.jk-footer-admin:hover {
    background: rgba(255, 253, 248, 0.08);
    border-color: rgba(255, 253, 248, 0.32);
    color: rgba(255, 253, 248, 0.82);
    transform: rotate(24deg);
}

.jk-board-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 140px 0 56px;
    text-align: center;
}

.jk-board-hero h1 {
    margin: 0 0 14px;
    color: var(--jk-ink);
    font-family: "Noto Serif KR", "Apple SD Gothic Neo", "Malgun Gothic", serif;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
}

.jk-board-hero p:last-child {
    margin: 0;
    color: var(--jk-muted);
    font-size: 17px;
    word-break: keep-all;
}

.jk-main > #bo_list,
.jk-main > #bo_v,
.jk-main > #bo_w,
.jk-main > #bo_gall,
.jk-main > .bo_fx,
.jk-main > #bo_sch,
.jk-main > .board_search {
    width: min(1180px, calc(100% - 36px));
    margin-left: auto;
    margin-right: auto;
}

#bo_list,
#bo_v,
#bo_w,
#bo_gall {
    color: var(--jk-ink);
    font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
    padding-bottom: 72px;
}

#bo_list_total {
    margin: 0 0 18px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

#bo_list .tbl_head01,
#bo_list .tbl_wrap,
#bo_list table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

#bo_list table {
    border-top: 1px solid var(--jk-ink);
}

#bo_list caption {
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
}

#bo_list thead th {
    height: 66px;
    border: 0;
    border-bottom: 1px solid var(--jk-line);
    background: transparent;
    color: var(--jk-ink);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

#bo_list tbody td {
    height: 60px;
    border: 0;
    border-bottom: 1px solid #ece7df;
    background: transparent;
    color: #4d5562;
    font-size: 15px;
    vertical-align: middle;
}

#bo_list tbody tr:hover td {
    background: rgba(212, 38, 38, 0.035);
}

#bo_list .td_num,
#bo_list .td_num2,
#bo_list .td_chk,
#bo_list .td_name,
#bo_list .td_datetime,
#bo_list .td_hit,
#bo_list .td_date {
    text-align: center;
    white-space: nowrap;
}

#bo_list .td_subject {
    text-align: left;
}

#bo_list .td_subject a,
#bo_list tbody td a {
    color: var(--jk-ink);
    font-weight: 800;
    text-decoration: none;
}

#bo_list .bo_notice .td_subject a,
#bo_list .bo_notice td:first-child,
#bo_list .notice td:first-child {
    color: var(--jk-red);
    font-weight: 900;
}

#bo_list .cnt_cmt,
#bo_list .new_icon,
#bo_list .hot_icon,
#bo_list .file_icon,
#bo_list .link_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    border-radius: 3px;
    font-size: 11px;
    line-height: 1;
    vertical-align: middle;
}

#bo_list .new_icon {
    background: #2865d8;
    color: #fff;
}

#bo_sch {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    margin: 18px auto 0;
}

#bo_sch select,
#bo_sch input[type="text"] {
    min-height: 40px;
    border: 1px solid var(--jk-line);
    border-radius: 4px;
    background: #fff;
    padding: 8px 10px;
    color: var(--jk-ink);
}

#bo_sch button,
#bo_sch input[type="submit"],
.bo_fx a,
.bo_fx button,
.btn_bo_user a,
.btn_bo_user button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    min-width: 38px;
    border: 1px solid var(--jk-ink);
    border-radius: 4px;
    background: var(--jk-ink);
    color: #fff;
    padding: 8px 12px;
    font-weight: 800;
    text-decoration: none;
}

#bo_btn_top {
    position: relative;
    width: calc(100% - 160px) !important;
    max-width: none;
    min-height: 42px;
    margin: 0 auto 26px !important;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: flex-end !important;
    gap: 16px;
    clear: both;
    text-align: right;
}

#bo_btn_top #bo_list_total {
    margin: 0 auto 0 0;
    text-align: left;
}

.btn_bo_user {
    display: flex !important;
    float: none !important;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    width: auto !important;
    margin: 0 !important;
    padding: 0;
    list-style: none;
    text-align: right;
}

.btn_bo_user li {
    float: none !important;
    margin: 0;
    padding: 0;
}

.bo_fx {
    position: relative;
    z-index: 2;
    display: flex !important;
    width: calc(100% - 160px) !important;
    max-width: none;
    margin: 34px auto 96px !important;
    padding: 0;
    clear: both;
    justify-content: flex-end !important;
    text-align: right;
}

.bo_fx .btn_bo_user {
    margin-left: auto !important;
}

.pg_wrap {
    margin: 34px 0 0;
    text-align: center;
}

.pg_page,
.pg_current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    margin: 0 2px;
    border: 1px solid var(--jk-line);
    border-radius: 4px;
    color: var(--jk-ink);
    text-decoration: none;
}

.pg_current {
    border-color: var(--jk-red);
    background: var(--jk-red);
    color: #fff;
    font-weight: 900;
}

#bo_v {
    border-top: 1px solid var(--jk-ink);
}

#bo_v_title,
#bo_v_info,
#bo_v_atc,
#bo_w {
    width: min(1180px, calc(100% - 36px));
    margin-left: auto;
    margin-right: auto;
}

#bo_v_title {
    padding-top: 28px;
}

#bo_v_title .bo_v_tit,
#bo_v_title h1,
#bo_v_title h2 {
    margin: 0 0 16px;
    color: var(--jk-ink);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    line-height: 1.25;
}

#bo_v_info {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--jk-line);
    color: var(--jk-muted);
}

#bo_v_atc {
    padding: 34px 0 60px;
    color: #333;
    font-size: 17px;
    line-height: 1.8;
}

#bo_w {
    padding-bottom: 70px;
}

#bo_gall #gall_ul {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px 22px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

#bo_gall #gall_ul::after {
    display: none;
    content: none;
}

#bo_gall .gall_li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

#bo_gall .gall_box {
    overflow: hidden;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #f4f4f2;
}

#bo_gall .gall_chk {
    position: absolute;
    z-index: 2;
    margin: 8px;
}

#bo_gall .gall_img,
#bo_gall .gall_img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f8f7f4;
}

#bo_gall .gall_img img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

#bo_gall .gall_con {
    margin: 0;
    padding: 0;
    background: #f4f4f2;
}

#bo_gall .gall_text_href {
    display: block;
    min-height: 58px;
    margin: 0;
    padding: 13px 12px 6px;
    background: #f4f4f2;
    color: var(--jk-ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    word-break: keep-all;
}

#bo_gall .gall_text_href a {
    color: var(--jk-ink);
    font-weight: 900;
    text-decoration: none;
}

#bo_gall .gall_name,
#bo_gall .gall_info {
    margin: 0;
    padding: 0 12px 14px;
    background: #f4f4f2;
    color: #5f6672;
    font-size: 14px;
}

#bo_gall .gall_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

#bo_gall .gall_info span,
#bo_gall .gall_date,
#bo_gall .gall_view {
    color: #5f6672;
    white-space: nowrap;
}

#bo_gall .empty_table,
#bo_gall .empty_list {
    grid-column: 1 / -1;
    padding: 60px 20px;
    border-top: 1px solid var(--jk-ink);
    border-bottom: 1px solid var(--jk-line);
    color: var(--jk-muted);
    text-align: center;
}

#bo_gall #bo_btn_top {
    position: static !important;
    float: none !important;
    display: flex !important;
    width: calc(100% - 160px) !important;
    max-width: none !important;
    margin: 0 auto 26px !important;
    clear: both !important;
    justify-content: flex-end !important;
    text-align: right !important;
    inset: auto !important;
    transform: none !important;
}

#bo_gall #bo_btn_top #bo_list_total {
    margin-right: auto !important;
}

#bo_gall .bo_fx {
    position: static !important;
    float: none !important;
    display: flex !important;
    width: calc(100% - 160px) !important;
    max-width: none !important;
    min-height: 42px;
    margin: 34px auto 0 !important;
    padding: 0 !important;
    clear: both !important;
    justify-content: flex-end !important;
    background: transparent !important;
    text-align: right !important;
    inset: auto !important;
    transform: none !important;
}

#bo_gall .bo_fx .btn_bo_user,
#bo_gall #bo_btn_top .btn_bo_user {
    position: static !important;
    float: none !important;
    display: flex !important;
    width: auto !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    justify-content: flex-end !important;
    background: transparent !important;
    inset: auto !important;
    transform: none !important;
}

#bo_gall .bo_fx .btn_bo_user li,
#bo_gall #bo_btn_top .btn_bo_user li {
    float: none !important;
    margin: 0 0 0 5px !important;
}

.jk-footer {
    clear: both;
    position: relative;
    z-index: 1;
}

@media (max-width: 920px) {
    .jk-section-head,
    .jk-intro-grid,
    .jk-contact-panel,
    .jk-contact-form-wrap {
        grid-template-columns: 1fr;
    }

    .jk-contact-side {
        align-items: flex-start;
    }

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

    .jk-timeline {
        grid-template-columns: 1fr;
    }

    .jk-profile-image {
        height: 430px;
    }

    .jk-profile-image img {
        max-width: 78%;
        height: 90%;
    }

    #bo_gall #gall_ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 34px 16px;
    }

    #bo_list thead {
        display: none;
    }

    #bo_list table,
    #bo_list tbody,
    #bo_list tr,
    #bo_list td {
        display: block;
        width: 100%;
    }

    #bo_list tbody tr {
        border-bottom: 1px solid #ece7df;
        padding: 16px 0;
    }

    #bo_list tbody td {
        height: auto;
        border: 0;
        padding: 4px 0;
        text-align: left;
    }

    #bo_list .td_num,
    #bo_list .td_num2,
    #bo_list .td_chk,
    #bo_list .td_name,
    #bo_list .td_datetime,
    #bo_list .td_hit,
    #bo_list .td_date {
        display: inline-block;
        width: auto;
        margin-right: 12px;
        color: var(--jk-muted);
        font-size: 13px;
        text-align: left;
    }
}

@media (max-width: 620px) {
    .jk-topbar {
        position: absolute;
        padding: 16px;
    }

    .jk-nav {
        display: none;
    }

    .jk-hero {
        min-height: 86vh;
    }

    .jk-section h1,
    .jk-section h2 {
        font-size: clamp(30px, 8vw, 40px);
    }

    .jk-profile-image {
        height: 390px;
    }

    .jk-hero-slide::before {
        background: linear-gradient(180deg, rgba(16, 21, 20, 0.32), rgba(16, 21, 20, 0.78));
    }

    .jk-actions,
    .jk-contact-panel,
    .jk-footer-inner {
        display: grid;
    }

    .jk-contact-side {
        display: grid;
        gap: 22px;
    }

    .jk-contact-info a {
        grid-template-columns: 28px 78px minmax(0, 1fr);
        gap: 12px;
        font-size: 15px;
    }

    .jk-button {
        width: 100%;
    }

    .jk-fact-grid,
    .jk-gallery {
        grid-template-columns: 1fr;
    }

    .jk-work-card,
    .jk-work-card:nth-child(1),
    .jk-work-card:nth-child(4),
    .jk-work-card:nth-child(8) {
        grid-column: auto;
        min-height: 0;
    }

    #bo_gall #gall_ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #bo_gall .gall_text_href {
        min-height: 50px;
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    #bo_gall #gall_ul {
        grid-template-columns: 1fr;
    }
}

.jk-katalk-image {
    margin: 48px 0;
    text-align: center;
}

.jk-katalk-image img {
    max-width: 100%;
    height: auto;
}
