@import url("tokens.css");
@import url("shadcn-bridge.css");
@import url("shadcn-utilities.css");
@import url("../skin/board/_new_board_common/style.css");
@import url("../skin/board/new_faq/style.css");
@import url("../skin/board/new_product/style.css");
@import url("../skin/board/new_inquiry/style.css");
@import url("../skin/board/new_download/style.css");
@import url("../skin/member/basic/style.css");

* { box-sizing: border-box; }
html { overflow-y: scroll; scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--background, #f6f8fb);
    color: var(--foreground, #101828);
    font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    word-break: keep-all;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; vertical-align: middle; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.sound_only,
.new-skip {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.new-skip:focus {
    z-index: 10000;
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: var(--foreground);
    color: #fff;
    border-radius: var(--radius);
}
body.new-theme-dark .new-skip:focus {
    background: var(--primary);
    color: #fff;
}

.new-site {
    min-height: 100vh;
    overflow: visible;
    padding-top: var(--new-site-offset-top);
    background: var(--background);
    color: var(--foreground);
}

/* GnuBoard popup layer loaded on index pages. */
#hd_pop {
    position: relative;
    z-index: 1000;
    width: var(--new-wrap);
    height: 0;
    margin: 0 auto;
}
#hd_pop.new-popup-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: clamp(16px, 4vw, 42px);
    overflow-y: auto;
    background: rgba(15, 23, 42, 0.52);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
#hd_pop h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.hd_pops {
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
body.new-theme-dark .hd_pops {
    background: var(--card);
    color: var(--foreground);
}
#hd_pop.new-popup-modal .hd_pops {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: flex;
    flex-direction: column;
    width: min(var(--new-popup-width, 640px), calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
    margin: auto;
}
.hd_pops img {
    max-width: 100%;
    height: auto;
}
.hd_pops_con {
    overflow: auto;
    color: var(--foreground);
}
#hd_pop.new-popup-modal .hd_pops_con {
    width: 100% !important;
    height: auto !important;
    max-height: min(var(--new-popup-height, 70vh), calc(100dvh - 130px));
}
.hd_pops_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px;
    background: var(--foreground);
    color: #fff;
}
body.new-theme-dark .hd_pops_footer {
    background: var(--muted);
    color: var(--foreground);
}
.hd_pops_footer button {
    border: 0;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.84rem;
}
body.new-theme-dark .hd_pops_footer button {
    background: rgba(248, 250, 252, 0.1);
    color: var(--foreground);
}
.hd_pops_footer .hd_pops_reject {
    padding: 8px 12px;
    text-align: left;
}
.hd_pops_footer .hd_pops_close {
    flex: 0 0 auto;
    padding: 8px 12px;
}
body.new-popup-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    #hd_pop.new-popup-modal {
        align-items: flex-end;
        padding: 12px;
    }
    #hd_pop.new-popup-modal .hd_pops {
        width: calc(100vw - 24px);
        max-height: calc(100dvh - 24px);
        border-radius: 20px;
    }
    #hd_pop.new-popup-modal .hd_pops_con {
        max-height: calc(100dvh - 122px);
    }
    .hd_pops_footer {
        align-items: stretch;
        flex-direction: column;
    }
    .hd_pops_footer button {
        width: 100%;
        min-height: 42px;
    }
}

.new-header {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 900;
    padding-top: var(--new-safe-top);
    background: rgba(246, 248, 251, 0.88);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}
body.new-theme-dark .new-header {
    background: rgba(7, 17, 31, 0.9);
}
.new-header__inner,
.new-hero__inner {
    width: var(--new-wrap);
    margin: 0 auto;
}
.new-header__inner {
    height: var(--new-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2vw, 30px);
}
.new-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.04em;
}
.new-brand__mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}
.new-brand__text { font-size: 1.2rem; }
.new-brand__logo {
    display: block;
    width: auto;
    max-width: 150px;
    min-width: 1px;
    object-fit: contain;
    transition: filter 0.2s ease;
}
html.new-theme-dark-pending .new-brand__logo--header,
html.new-theme-dark-pending .new-brand__logo--footer,
html.new-theme-dark-pending .gfm-brand a img,
html.new-theme-dark-pending .gfm-logo img,
body.new-theme-dark .new-brand__logo--header,
body.new-theme-dark .new-brand__logo--footer,
body.new-theme-dark .gfm-brand a img,
body.new-theme-dark .gfm-logo img,
.gfm-theme-dark .gfm-brand a img,
.gfm-theme-dark .gfm-logo img {
    filter: brightness(0) invert(1);
}
.gfm-brand a {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 100%;
    color: var(--foreground);
    text-decoration: none;
}
.gfm-brand a img {
    display: block;
    width: auto;
    max-width: min(160px, 100%);
    max-height: 54px;
    height: auto;
    object-fit: contain;
}
.new-brand__logo--header {
    height: 46px;
    max-height: 46px;
}
.new-brand__logo--footer {
    height: 54px;
    max-height: 54px;
    padding: 8px 12px;
    border-radius: var(--radius);
}
.new-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.new-search {
    display: flex;
    align-items: center;
    width: 290px;
    height: 44px;
    padding: 0 6px 0 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
}
body.new-theme-dark .new-search { background: rgba(17, 28, 45, 0.78); }
.new-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--foreground);
}
.new-search button,
.new-icon-btn,
.new-menu-toggle {
    display: inline-grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--foreground);
}
.new-search button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}
.new-search button:hover,
.new-icon-btn:hover { background: var(--muted); }
.new-search--mobile {
    display: none;
    width: var(--new-wrap);
    margin: 10px auto 24px;
}
.new-icon-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
}
.badge-shadcn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 16px;
    color: #fff;
    border-radius: 999px;
    background: var(--foreground);
    font-size: 0.92rem;
    font-weight: 700;
}
body.new-theme-dark .badge-shadcn {
    color: #fff;
    background: var(--primary);
}
.badge-shadcn--ghost {
    color: var(--foreground);
    background: #fff;
    border: 1px solid var(--border);
}
body.new-theme-dark .badge-shadcn--ghost,
body.new-theme-dark .new-latest,
body.new-theme-dark .new-page__body,
body.new-theme-dark .new-member-drawer {
    background: var(--card);
}
.new-theme-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--card);
    color: var(--foreground);
}
.new-theme-toggle__icon {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: currentColor;
}
.new-theme-toggle__icon::after {
    content: "";
    position: absolute;
    right: -2px;
    top: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--card);
    transition: transform 0.2s ease;
}
body.new-theme-dark .new-theme-toggle__icon::after {
    transform: translate(7px, -3px) scale(0.2);
}
.new-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
}
.new-menu-toggle__icon {
    width: 20px;
    height: 20px;
    overflow: visible;
}
.new-menu-toggle__line {
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
}
.new-menu-toggle__menu,
.new-menu-toggle__close {
    display: inline;
}
.new-menu-toggle__close {
    display: none;
}
.new-menu-toggle[aria-expanded="true"] .new-menu-toggle__menu {
    display: none;
}
.new-menu-toggle[aria-expanded="true"] .new-menu-toggle__close {
    display: inline;
}
.new-mobile-account {
    display: none;
    width: var(--new-wrap);
    margin: 10px auto 24px;
    gap: 8px;
}
.new-mobile-account a {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 800;
}

.new-nav {
    flex: 1 1 auto;
    min-width: 0;
}
.new-nav__inner {
    width: 100%;
    margin: 0;
}
.new-nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 0;
    overflow: visible;
}
.new-nav__item { position: relative; }
.new-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 15px 18px;
    border-radius: 999px;
    color: #344054;
    font-weight: 700;
}
.new-nav__link:hover,
.new-nav__item:hover > .new-nav__link {
    color: var(--primary);
    background: transparent;
}
body.new-theme-dark .new-nav__link { color: var(--muted-foreground); }
body.new-theme-dark .new-nav__link:hover,
body.new-theme-dark .new-nav__item:hover > .new-nav__link,
body.new-theme-dark .new-nav__sub a:hover {
    background: transparent;
}
.new-nav__sub {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 190px;
    padding: 10px;
    padding-top: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card, #fff);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease 0.18s, visibility 0.2s ease 0.18s, transform 0.2s ease 0.18s;
}
.new-nav__sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
}
.new-nav__item:hover .new-nav__sub,
.new-nav__item:focus-within .new-nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}
.new-nav__sub a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--muted-foreground);
    font-weight: 650;
}
.new-nav__sub a:hover { color: var(--primary); background: transparent; }
.new-nav__empty {
    padding: 14px 0;
    color: var(--muted-foreground);
}
.new-nav__empty a { color: var(--primary); font-weight: 700; }
body.new-theme-dark .new-info-grid article,
body.new-theme-dark .new-latest,
body.new-theme-dark .new-page__body {
    border-color: var(--border);
}

.new-hero {
    position: relative;
    min-height: clamp(560px, 76vh, 820px);
    display: grid;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: #08111f;
}
.new-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 80% 18%, rgba(6, 182, 212, 0.38), transparent 24%),
        radial-gradient(circle at 18% 72%, rgba(37, 99, 235, 0.46), transparent 30%),
        linear-gradient(160deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58% 58.4%, transparent 58.4% 100%),
        linear-gradient(125deg, rgba(8, 17, 31, 0.98) 0%, rgba(15, 23, 42, 0.86) 48%, rgba(37, 99, 235, 0.72) 100%),
        #08111f;
}
.new-hero__bg::after {
    content: "";
    position: absolute;
    inset: 8%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: clamp(var(--radius), 4vw, 42px);
}
.new-hero__inner {
    color: #fff;
    padding: 96px 0;
}
.text-kicker {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.new-hero .text-kicker { color: #9ee7ff; }
.new-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(2.7rem, 7vw, 5rem);
    line-height: 1.2;
    letter-spacing: -0.05em;
}
.new-hero__lead {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.8vw, 1.28rem);
}
.new-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
.btn-shadcn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    height: 50px;
    padding: 0 22px;
    border-radius: var(--radius);
    font-weight: 800;
}
.btn-shadcn-primary { color: #fff; background: var(--primary); }
.btn-shadcn-primary--light { color: #fff; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.26); }
.new-main { width: 100%; }
.new-info-section,
.new-board-section,
.new-page {
    width: var(--new-wrap);
    margin: 50px auto;
}
.new-info-section { padding: 96px 0 58px; }
.new-section-head h2,
.new-page__head h1,
.new-board__head h2,
.new-board-view__head h2 {
    margin: 0;
    font-size: clamp(1.2rem, 4vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: var(--foreground);
}
.new-section-head--inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}
.new-section-head--inline > p {
    max-width: 520px;
    margin: 0;
    color: var(--muted-foreground);
}
.new-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}
.new-info-grid article {
    min-height: 260px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
}
.new-card-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--primary);
    border-radius: var(--radius);
}
.new-info-grid h3 { margin: 28px 0 10px; font-size: 1.34rem; letter-spacing: -0.04em; }
.new-info-grid p { margin: 0; color: var(--muted-foreground); }

.new-board-section { padding: 50px 0 110px; }
.new-board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}
.new-board-cell {
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
}
body.new-theme-dark .new-board-cell { background: rgba(17, 28, 45, 0.76); }
.new-board-cell--gallery { grid-column: 1 / -1; }
.new-board-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.new-board-intro p:last-child {
    max-width: 380px;
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.95rem;
}
.new-latest {
    flex: 1 1 auto;
    min-height: 190px;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}
.new-board-cell--gallery .new-latest { min-height: 240px; }
.new-latest__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.new-latest__head h3 { margin: 0; font-size: 1.35rem; letter-spacing: -0.04em; }
.new-latest__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 800;
}
.new-latest__list li + li { border-top: 1px solid var(--border); }
.new-latest__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 0;
}
.new-latest__subject {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 750;
}
.new-latest__subject em {
    display: inline-flex;
    margin-right: 8px;
    padding: 2px 7px;
    color: #fff;
    border-radius: var(--radius);
    background: var(--primary);
    font-size: 0.74rem;
    font-style: normal;
}
.new-latest__meta {
    flex: 0 0 auto;
    color: var(--muted-foreground);
    font-size: 0.88rem;
}
.new-latest__meta b {
    margin-right: 8px;
    color: var(--primary);
}
.new-latest__empty,
.new-empty {
    padding: 28px 0;
    color: var(--muted-foreground);
}
.new-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.new-gallery a {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
}
body.new-theme-dark .new-gallery a { background: var(--card); }
.new-gallery__thumb {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--muted, #eef3f8);
}
.new-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.new-gallery a:hover img { transform: scale(1.05); }
.new-gallery__empty {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--muted-foreground);
}
.new-gallery__body {
    display: block;
    padding: 16px;
}
.new-gallery__body strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.new-gallery__body small {
    display: block;
    margin-top: 8px;
    color: var(--muted-foreground);
}

.new-main-products,
.new-main-notice-section {
    width: var(--new-wrap);
    margin: 0 auto;
}

.new-main-products {
    padding: 96px 0 54px;
}

.new-main-product-groups {
    display: grid;
    gap: 34px;
    margin-top: 42px;
}

.new-main-category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    max-width: 560px;
}

.new-main-category-nav a,
.new-main-product-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: var(--radius);
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 900;
    white-space: nowrap;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.new-main-category-nav a:hover,
.new-main-product-more:hover {
    border-color: rgba(37, 99, 235, 0.34);
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.new-main-product-more {
    flex: 0 0 auto;
    background: #fff;
/*    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06); */
}

.new-main-product-group {
    overflow: hidden;
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
}

body.new-theme-dark .new-main-product-group {
    background: rgba(17, 28, 45, 0.76);
}

body.new-theme-dark .new-main-category-nav a,
body.new-theme-dark .new-main-product-more {
    background: rgba(96, 165, 250, 0.12);
    border-color: rgba(147, 197, 253, 0.18);
    color: #93c5fd;
}

body.new-theme-dark .new-main-category-nav a:hover,
body.new-theme-dark .new-main-product-more:hover {
    background: var(--primary);
    color: #fff;
}

.new-main-product-group__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 22px;
}

.new-main-product-group__head h3 {
    margin: 0;
    color: var(--foreground);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.new-main-product-group__head p:last-child {
    max-width: 460px;
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.96rem;
}

.new-main-product-slider {
    position: relative;
    padding: 0 0 34px;
    --new-main-product-per-view: 3;
    --new-main-product-gap: clamp(16px, 2vw, 24px);
}

.new-main-product-slider__viewport {
    overflow: hidden;
}

.new-main-product-slider__track {
    display: flex;
    gap: var(--new-main-product-gap);
    transition: transform 0.28s ease;
}

.new-main-product-slider__slide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    flex: 0 0 100%;
    min-width: 100%;
}

.new-main-product-card {
    flex: 0 0 calc((100% - (var(--new-main-product-gap) * (var(--new-main-product-per-view) - 1))) / var(--new-main-product-per-view));
    min-width: 0;
}

.new-main-product-card a {
    display: grid;
    gap: 14px;
    height: 100%;
    padding: clamp(14px, 1.6vw, 18px);
    border: 1px solid var(--border);
    border-radius: clamp(22px, 2.8vw, 30px);
/*    background: linear-gradient(180deg, var(--card), var(--muted)); 
    box-shadow: 0 18px 54px rgba(15, 23, 42, 0.08); */
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.new-main-product-card a:hover {
    border-color: rgba(37, 99, 235, 0.28);
/*    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14); */
    transform: translateY(-4px);
}

.new-main-product-card__media {
    display: grid;
    place-items: center;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
/*    background:
        radial-gradient(circle at 10% 0, rgba(37, 99, 235, 0.12), transparent 36%),
        linear-gradient(135deg, #f8fafc, #eef2ff); */
}

.new-main-product-card__media img {
    display: block;
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(12px, 2vw, 24px);
    transition: transform 0.2s ease, opacity 0.32s ease;
}

.new-main-product-card a:hover .new-main-product-card__img {
    transform: scale(1.035);
}

.new-main-product-card__img {
    z-index: 1;
}

.new-main-product-card__img-hover {
    z-index: 2;
    opacity: 0;
    transform: none !important;
    transition: opacity 0.32s ease !important;
}

.new-main-product-card a:hover .new-main-product-card__img-hover {
    opacity: 1;
}

.new-main-product-card a:hover .new-main-product-card__img {
    opacity: 0;
    transform: none;
}

.new-main-product-card__empty {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    font-weight: 900;
}

.new-main-product-card__body {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
}

.new-main-product-card__body em {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: var(--radius);
    background: rgba(37, 99, 235, 0.09);
    color: var(--primary);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
}

.new-main-product-card__body strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--foreground);
    font-size: clamp(1.02rem, 1.5vw, 1.24rem);
    line-height: 1.35;
    letter-spacing: -0.045em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.new-main-product-card__body small {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3em;
    color: var(--muted-foreground);
    font-size: 0.88rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.new-main-slider-btn {
    position: absolute;
    top: calc(50% - 20px);
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--card);
    color: var(--foreground);
    box-shadow: var(--shadow);
}

.new-main-slider-btn:disabled {
    opacity: 0.36;
    cursor: default;
}

.new-main-slider-btn--prev { left: 10px; }
.new-main-slider-btn--next { right: 10px; }

.new-main-product-slider__dots {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.new-main-product-slider__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--border);
}

.new-main-product-slider__dots button.is-active {
    width: 24px;
    background: var(--primary);
}

.new-main-notice-section {
    padding: 28px 0 110px;
}

.new-main-notice {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    margin-top: 34px;
}

.new-main-notice__preview {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 360px;
    overflow: hidden;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 20% 0, rgba(37, 99, 235, 0.18), transparent 34%),
        linear-gradient(135deg, #0f172a, #2563eb);
    color: #fff;
    box-shadow: var(--shadow);
}

.new-main-notice__preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.72));
}

.new-main-notice__preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.18s ease, transform 0.24s ease;
}

.new-main-notice__preview strong,
.new-main-notice__preview span {
    position: relative;
    z-index: 1;
}

.new-main-notice__preview strong {
    color: #fff;
    font-size: clamp(1.35rem, 2.8vw, 2.2rem);
    line-height: 1.25;
    letter-spacing: -0.055em;
}

.new-main-notice__preview span {
    justify-self: start;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.84);
    font-weight: 900;
}

.new-latest--notice-preview {
    min-height: 360px;
}

body.new-theme-dark .new-main-product-card__media {
    background: var(--muted);
}

.new-page__head {
    margin-bottom: 34px;
}
/* 페이지 커버 헤더: 메뉴 바로 아래, 가로 100% */
.new-page.new-page--head-cover {
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 50px;
}
.new-page.new-page--head-cover > .new-page__head.new-head-cover {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
/*    margin-bottom: 24px; */
    border-radius: 0;
    box-shadow: none;
}
.new-page--board-cover.new-page--head-cover > .new-page__head.new-head-cover {
    margin-bottom: 0;
}
.new-page.new-page--head-cover:not(.new-page--card) > .new-page__body {
    width: var(--new-wrap);
    margin-right: auto;
    margin-left: auto;
}
.new-page--board-cover .new-page__head {
    margin-bottom: 0;
}
.new-page--board-cover .new-page__body {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.new-page--board-cover .new-page__body > .new-board-view {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
/* 공통 Cover 헤더 (내용·게시판) */
.new-head-cover {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(260px, 36vw, 460px);
    overflow: hidden;
    padding: clamp(42px, 8vw, 92px);
    border: 0;
    border-radius: var(--radius);
    background-image: var(--new-page-head-bg);
    background-position: center;
    background-size: cover;
    color: var(--new-page-head-color, #fff);
    box-shadow: var(--shadow);
}
.new-head-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--new-page-head-overlay, #0f172a);
    opacity: var(--new-page-head-overlay-opacity, 0.45);
}
.new-head-cover > * {
    position: relative;
    z-index: 1;
}
.new-head-cover .text-kicker,
.new-head-cover h1,
.new-head-cover h2,
.new-head-cover .new-board__meta,
.new-head-cover .new-board__tag,
.new-head-cover .new-board-view__meta,
.new-head-cover .new-board-view__meta a {
    color: inherit;
}
.new-head-cover--board {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    min-height: clamp(220px, 32vw, 380px);
    margin-bottom: 24px;
    padding: clamp(28px, 6vw, 56px);
}
.new-head-cover--view {
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    min-height: clamp(220px, 32vw, 380px);
    margin-bottom: 28px;
    padding: clamp(28px, 6vw, 56px);
}
.new-product-head.new-head-cover,
.new-download-head.new-head-cover,
.new-inquiry-head.new-head-cover {
    border-bottom: 0;
}
.new-head-cover--board .new-board__actions,
.new-head-cover--view .new-board-view__actions {
    align-self: flex-end;
}
.new-head-cover.new-page__head--align-center .new-board__actions,
.new-head-cover.new-page__head--align-center .new-board-view__actions {
    align-self: center;
}
.new-head-cover.new-page__head--align-left .new-board__actions,
.new-head-cover.new-page__head--align-left .new-board-view__actions {
    align-self: flex-start;
}
.new-page__head--align-left {
    align-items: flex-start;
    text-align: left;
}
.new-page__head--align-center {
    align-items: center;
    text-align: center;
}
.new-page__head--align-right {
    align-items: flex-end;
    text-align: right;
}
.new-head-cover.new-page__head--align-left {
    align-items: flex-start;
    text-align: left;
}
.new-head-cover.new-page__head--align-center {
    align-items: center;
    text-align: center;
}
.new-head-cover.new-page__head--align-right {
    align-items: flex-end;
    text-align: right;
}
.new-page__body {
    padding: 34px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
.new-page--card {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.new-page--card:has(.new-head-cover) {
    margin-top: 0;
}
.new-page__head--card.new-head-cover {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}
.new-page__body--card {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
body.new-theme-dark .new-page__body--card {
    background: transparent;
    box-shadow: none;
}
.new-page--card .new-content-skin {
    padding-top: 0;
    padding-bottom: 0;
}
.new-page__body--card .ggc-content > body {
    display: contents;
}
    width: 100%;
    padding: 50px 0 0 0;
}
.new-content-skin__body {
    min-height: 240px;
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1.8;
    word-break: break-word;
}
.new-content-skin__body::after {
    content: "";
    display: block;
    clear: both;
}
.new-content-skin__body > *:first-child { margin-top: 0; }
.new-content-skin__body > *:last-child { margin-bottom: 0; }
.new-content-skin__body p { margin: 0 0 1em; }
.new-content-skin__body h1,
.new-content-skin__body h2,
.new-content-skin__body h3,
.new-content-skin__body h4,
.new-content-skin__body h5,
.new-content-skin__body h6 {
    margin: 1.4em 0 0.55em;
    color: var(--foreground);
    line-height: 1.25;
    letter-spacing: -0.035em;
}
.new-content-skin__body h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.new-content-skin__body h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.new-content-skin__body h3 { font-size: clamp(1.35rem, 2vw, 1.9rem); }
.new-content-skin__body ul,
.new-content-skin__body ol {
    margin: 0 0 1.2em;
    padding-left: 1.4em;
}
.new-content-skin__body ul { list-style: disc; }
.new-content-skin__body ol { list-style: decimal; }
.new-content-skin__body li + li { margin-top: 0.35em; }
.new-content-skin__body a {
    color: var(--primary);
    font-weight: 700;
}
.new-content-skin__body a:hover { text-decoration: underline; }
.new-content-skin__body img {
    max-width: 100%;
    height: auto;
}
.new-content-skin__body table {
    width: 100%;
/*    margin: 1.2em 0; */
    overflow: hidden;
    border-collapse: collapse;
    border-radius: 16px;
}
.new-content-skin__body th,
.new-content-skin__body td {
    padding: 12px 14px;
    border: 1px solid var(--border);
    text-align: left;
}
.new-content-skin__body th {
    background: var(--muted);
    font-weight: 800;
}
.new-content-skin__body blockquote {
    margin: 1.4em 0;
    padding: 18px 22px;
    border-left: 4px solid var(--primary);
    border-radius: 18px;
    background: #f3f7ff;
    color: var(--muted-foreground);
}
body.new-theme-dark .new-content-skin__body blockquote {
    background: var(--muted);
}
.new-content-skin__body code {
    padding: 0.15em 0.4em;
    border-radius: 8px;
    background: var(--muted);
    font-family: Consolas, Monaco, monospace;
    font-size: 0.92em;
}
.new-content-skin__body pre {
    margin: 1.2em 0;
    padding: 18px;
    overflow-x: auto;
    border-radius: 18px;
    background: #0f172a;
    color: #dbeafe;
}
.new-content-skin__body pre code {
    padding: 0;
    background: transparent;
}
.new-content-skin__body .ggc-content {
    width: 100%;
    max-width: none;
    line-height: inherit;
}
.new-content-skin__body .ggc-content h1,
.new-content-skin__body .ggc-content h2,
.new-content-skin__body .ggc-content h3,
.new-content-skin__body .ggc-content h4,
.new-content-skin__body .ggc-content h5,
.new-content-skin__body .ggc-content h6 {
    color: inherit;
}
.new-content-skin__body .ggc-content .ggc-company-vision .card-shadcn h3 {
    color: #fff;
}

.new-top-btn {
    position: fixed;
    right: calc(22px + var(--new-safe-right));
    bottom: calc(22px + var(--new-safe-bottom));
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.32);
}

.new-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(15, 23, 42, 0.44);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}
.new-member-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 960;
    width: min(420px, calc(92vw - var(--new-safe-right)));
    height: 100vh;
    height: 100dvh;
    padding: calc(28px + var(--new-safe-top)) calc(28px + var(--new-safe-right)) calc(28px + var(--new-safe-bottom)) 28px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -20px 0 70px rgba(15, 23, 42, 0.24);
    transform: translateX(105%);
    transition: transform 0.25s ease;
}
body.new-drawer-open .new-drawer-backdrop {
    opacity: 1;
    visibility: visible;
}
body.new-drawer-open .new-member-drawer { transform: translateX(0); }
.new-member-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.new-member-drawer__head h2 { margin: 0; font-size: 1.8rem; letter-spacing: -0.05em; }
.new-member-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
}
.new-member-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f8fafc;
}
body.new-theme-dark .new-member-metric { background: var(--muted); }
.new-member-metric span { color: var(--muted-foreground); }
.new-member-metric strong {
    color: var(--foreground);
    white-space: nowrap;
}
.new-member-panel-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.new-member-panel-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: currentColor;
}
.new-member-links {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}
.new-member-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: var(--foreground);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.new-member-links a .new-member-panel-icon {
    width: 20px;
    height: 20px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.09);
    color: var(--primary);
    box-sizing: content-box;
}
.new-member-links a:hover,
.new-member-links a:focus-visible {
    border-color: rgba(37, 99, 235, 0.38);
    background: rgba(37, 99, 235, 0.06);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.14);
    transform: translateY(-1px);
}
body.new-theme-dark .new-member-links a {
    color: var(--foreground);
    background: var(--muted);
    box-shadow: none;
}
body.new-theme-dark .new-member-links a .new-member-panel-icon {
    background: rgba(96, 165, 250, 0.16);
    color: #93c5fd;
}
body.new-theme-dark .new-member-links a:hover,
body.new-theme-dark .new-member-metric:hover {
    border-color: rgba(37, 99, 235, 0.42);
}
body.new-theme-dark .new-member-links a:hover,
body.new-theme-dark .new-member-links a:focus-visible {
    background: rgba(96, 165, 250, 0.12);
}

.new-member-modal {
    position: fixed;
    inset: 0;
    z-index: 980;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
body.new-member-modal-open .new-member-modal {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.new-member-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.new-member-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(920px, 100%);
    height: min(760px, calc(100vh - 48px));
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--card);
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.34);
}
.new-member-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}
.new-member-modal__head h2 {
    margin: 0;
    color: var(--foreground);
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}
.new-member-modal__close {
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.new-member-modal__close:hover {
    background: var(--background);
    color: var(--foreground);
}
.new-member-modal__frame {
    flex: 1;
    width: 100%;
    border: 0;
    background: #fff;
}
body.new-theme-dark .new-member-modal__frame {
    background: var(--card);
}

@media (max-width: 1180px) {
    :root { --new-wrap: min(100% - 36px, 1040px); }
    .new-search--desktop { display: none; }
    .new-search--mobile { display: flex; }
    .new-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .new-nav {
        flex: 0 0 0;
        min-width: 0;
    }
    .new-menu-toggle {
        display: inline-grid;
        width: 40px;
        height: 40px;
    }
    .new-menu-toggle__icon {
        width: 18px;
        height: 18px;
    }
    .badge-shadcn--ghost { display: none; }
    .new-nav__list {
        position: fixed;
        top: var(--new-header-height);
        right: 14px;
        left: 14px;
        z-index: 920;
        display: none;
        max-height: calc(100dvh - 86px);
        min-height: 0;
        overflow-y: auto;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
    }
    body.new-theme-dark .new-nav__list {
        background: rgba(17, 28, 45, 0.96);
    }
    body.new-menu-open .new-nav__list { display: block; }
    .new-nav__link {
        justify-content: space-between;
        width: 100%;
        padding: 14px;
        border-radius: 14px;
    }
    .new-nav__sub {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 4px 0 10px 14px;
        padding: 10px;
        box-shadow: none;
        border-radius: 14px;
        background: rgba(15, 23, 42, 0.04);
        transition: none;
    }
    .new-nav__sub::before {
        display: none;
    }
    body.new-theme-dark .new-nav__sub {
        background: rgba(248, 250, 252, 0.06);
    }
}

@media (max-width: 900px) {
    :root {
        --new-wrap-gutter: var(--new-wrap-gutter-md);
        --new-header-height: 66px;
    }
    .new-hero { min-height: 620px; }
    .new-hero__bg::after { inset: 18px; border-radius: 28px; }
    .new-info-grid,
    .new-board-grid {
        grid-template-columns: 1fr;
    }
    .new-section-head--inline {
        display: block;
    }
    .new-section-head--inline > p {
        margin-top: 14px;
    }
    .new-main-category-nav {
        justify-content: flex-start;
        max-width: none;
        margin-top: 18px;
    }
    .new-main-product-slider {
        --new-main-product-per-view: 2;
    }
    .new-main-notice {
        grid-template-columns: 1fr;
    }
    .new-main-notice__preview {
        min-height: 300px;
        padding: 28px;
    }
    .new-latest--notice-preview {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    :root { --new-wrap-gutter: var(--new-wrap-gutter-sm); }
    body { font-size: 15px; word-break: normal; }
    .new-brand__mark { width: 38px; height: 38px; border-radius: 14px; }
    .new-brand__text { font-size: 1rem; }
    .badge-shadcn { display: none; }
    .new-search--mobile { margin-bottom: 18px; }
    .new-mobile-account {
        display: flex;
        margin-bottom: 18px;
    }
    .new-member-modal {
        align-items: stretch;
        padding: 12px;
    }
    .new-member-modal__dialog {
        width: 100%;
        height: calc(100dvh - 24px);
        border-radius: 22px;
    }
    .new-member-modal__head {
        padding: 14px 16px;
    }
    .hd_pops_footer {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hd_pops_footer button {
        min-height: 42px;
        padding: 0 12px;
    }
    .new-hero__inner { padding: 72px 0; }
    .new-hero h1 { font-size: clamp(2.4rem, 13vw, 4.5rem); }
    .new-hero__actions { display: grid; }
    .new-page > .new-page__head.new-head-cover {
        min-height: 220px;
        padding: 34px 22px;
        border-radius: 0;
    }
    .new-head-cover:not(.new-page__head) {
        min-height: 240px;
        padding: 34px 22px;
        border-radius: 22px;
    }
    .new-head-cover--board {
        flex-direction: column;
        align-items: flex-start;
    }
    .new-head-cover--board .new-board__actions,
    .new-head-cover--view .new-board-view__actions {
        width: 100%;
        justify-content: flex-start;
    }
    .new-main-products {
        padding: 68px 0 36px;
    }
    .new-main-product-group {
        padding: 16px;
        border-radius: 24px;
    }
    .new-main-product-group__head {
        display: block;
    }
    .new-main-product-group__head .new-main-product-more {
        margin-top: 8px;
    }
    .new-main-product-slider__slide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .new-main-product-card__body {
        justify-items: start;
        text-align: left;
    }
    .new-main-notice-section {
        padding-bottom: 70px;
    }
    .new-main-notice__preview {
        min-height: 240px;
        border-radius: 24px;
    }
    .new-info-section { padding: 68px 0 36px; }
    .new-info-grid article,
    .new-latest,
    .new-page__body:not(.new-page__body--card) {
        padding: 22px;
        border-radius: 22px;
    }
    .new-board-cell {
        padding: 12px;
        border-radius: 24px;
    }
    .new-board-intro {
        display: block;
    }
    .new-board-intro p:last-child {
        margin-top: 8px;
    }
    .new-latest__list a {
        display: block;
    }
    .new-latest__meta {
        display: none;
    }
    .new-content-skin__body {
        font-size: 0.96rem;
        line-height: 1.75;
    }
    .new-content-skin__body table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .new-gallery { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    .new-gallery a:hover img,
    .new-board-card:hover,
    .new-board-card:hover .new-board-card__thumb img,
    .new-member-links a:hover,
    .new-top-btn:hover {
        transform: none !important;
    }
}

.new-widget {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    color: var(--foreground);
}

.new-widget__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.new-widget__head h2 {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: -0.04em;
}
.new-widget a {
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}
.new-widget__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* legacy alias */
.new-widget_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-widget__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--foreground);
}

.new-widget__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.new-widget__item a {
    color: inherit;
    text-decoration: none;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-widget__item a:hover {
    color: var(--accent);
}

.new-widget__item time {
    flex-shrink: 0;
    color: var(--muted-foreground);
    font-size: 0.8125rem;
}
.new-widget__empty {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ---------------------------------------------------------------
   Issue #11 — GrapesJS admin UI 숨김 + 편집 버튼 드로어 이동
   --------------------------------------------------------------- */
.ggc_ctt_admin { display: none !important; }
.new-member-links .new-page-edit-link { color: var(--accent, #2563eb); }

/* ---------------------------------------------------------------
   Issue #12 — 제품 상세 / 게시글 본문 이미지 100% 제한
   --------------------------------------------------------------- */
.new-product-detail__content img,
#bo_v_con img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
}


/* Board head/tail admin HTML wrapper */
.new-board__content-html:empty {
    display: none;
}
.new-board__content-html--head {
    margin-bottom: 18px;
}
.new-board__content-html--tail {
    margin-top: 18px;
}
.new-board__content-html img {
    max-width: 100%;
    height: auto;
}
