:root {
    --gi-blue: #1155ff;
    --gi-blue-deep: #073b9a;
    --gi-ink: #111827;
    --gi-text: #344054;
    --gi-muted: #667085;
    --gi-line: #e5eaf3;
    --gi-bg: #ffffff;
    --gi-soft: #f5f8ff;
    --gi-surface: #ffffff;
    --gi-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--gi-text);
    background: var(--gi-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
    line-height: 1.65;
    word-break: keep-all;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sound-only,
.sound_only,
#skip a {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
#skip a:focus {
    z-index: 1000;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 14px;
    clip: auto;
    background: #111827;
    color: #fff;
}

.gi-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(229, 234, 243, .72);
    backdrop-filter: blur(16px);
    transition: box-shadow .2s ease, background .2s ease;
}
.gi-header.is-scrolled { box-shadow: 0 10px 30px rgba(15, 23, 42, .08); }
.gi-header__inner {
    max-width: 1180px;
    height: 74px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.gi-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gi-ink);
    font-weight: 800;
    letter-spacing: 0;
}
.gi-logo__mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--gi-blue);
    color: #fff;
    font-size: 14px;
}
.gi-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #1f2937;
    font-size: 15px;
    font-weight: 700;
}
.gi-nav__item {
    position: relative;
}
.gi-nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 74px;
    padding: 0 12px;
}
.gi-nav__dropdown {
    position: absolute;
    top: 68px;
    left: 50%;
    min-width: 170px;
    padding: 10px;
    border: 1px solid var(--gi-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--gi-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.gi-nav__item:hover .gi-nav__dropdown,
.gi-nav__item:focus-within .gi-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.gi-nav__dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #344054;
    font-size: 14px;
    white-space: nowrap;
}
.gi-nav__dropdown a:hover {
    background: #eef4ff;
    color: var(--gi-blue);
}
.gi-auth {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #475467;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
.gi-auth a:hover { color: var(--gi-blue); }
.gi-header__cta,
.gi-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.gi-header__cta {
    color: #fff;
    background: var(--gi-ink);
}
.gi-button:hover,
.gi-header__cta:hover { transform: translateY(-2px); }
.gi-button--primary {
    color: #fff;
    background: var(--gi-blue);
    box-shadow: 0 12px 28px rgba(17, 85, 255, .24);
}
.gi-button--ghost {
    color: var(--gi-blue-deep);
    background: #eef4ff;
}
.gi-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: #f2f5fb;
}
.gi-menu-button span:not(.sound-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--gi-ink);
}

.gi-main { padding-top: 74px; }
.gi-container,
.gi-hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.gi-hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(245, 248, 255, .96), rgba(255, 255, 255, .85)),
        radial-gradient(circle at 76% 36%, rgba(17, 85, 255, .20), transparent 32%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 60%, #edf4ff 100%);
}
.gi-page-hero {
    padding: 112px 0 72px;
    background:
        linear-gradient(120deg, rgba(245, 248, 255, .98), rgba(255, 255, 255, .92)),
        radial-gradient(circle at 82% 28%, rgba(17, 85, 255, .16), transparent 30%),
        #f7fbff;
    border-bottom: 1px solid var(--gi-line);
}
.gi-page-hero h1,
.gi-contact h1 {
    margin: 0;
    color: var(--gi-ink);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.18;
    letter-spacing: 0;
}
.gi-page-hero p:last-child {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--gi-muted);
    font-size: 18px;
}
.gi-hero__inner {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .7fr);
    gap: 56px;
    align-items: center;
}
.gi-eyebrow,
.gi-section__label {
    margin: 0 0 14px;
    color: var(--gi-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
}
.gi-hero h1,
.gi-section h2,
.gi-contact h2 {
    margin: 0;
    color: var(--gi-ink);
    line-height: 1.2;
    letter-spacing: 0;
}
.gi-hero h1 { font-size: clamp(38px, 5vw, 64px); }
.gi-hero__lead {
    max-width: 680px;
    margin: 26px 0 0;
    color: #475467;
    font-size: 20px;
}
.gi-hero__actions {
    margin-top: 36px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.gi-hero__panel {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(17, 85, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--gi-shadow);
}
.gi-hero__panel div {
    padding: 24px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--gi-line);
}
.gi-hero__panel span {
    display: block;
    color: var(--gi-blue);
    font-size: 13px;
    font-weight: 900;
}
.gi-hero__panel strong {
    display: block;
    margin-top: 8px;
    color: var(--gi-ink);
    font-size: 18px;
}

.gi-section { padding: 108px 0; }
.gi-section--intro { border-top: 1px solid var(--gi-line); }
.gi-section--soft { background: var(--gi-soft); }
.gi-section__head {
    max-width: 760px;
    margin-bottom: 42px;
}
.gi-section h2,
.gi-contact h2 { font-size: clamp(30px, 4vw, 44px); }
.gi-section__head p:last-child,
.gi-muted,
.gi-copy p,
.gi-contact p {
    color: var(--gi-muted);
    font-size: 17px;
}
.gi-split {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 72px;
    align-items: center;
}
.gi-split--top { align-items: start; }
.gi-stat-list {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.gi-stat-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid var(--gi-line);
    border-radius: 8px;
    background: #fff;
}
.gi-stat-list strong { color: var(--gi-blue); }

.gi-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.gi-service-card,
.gi-tech-card,
.gi-project-card {
    border: 1px solid var(--gi-line);
    border-radius: 8px;
    background: var(--gi-surface);
}
.gi-service-card {
    min-height: 310px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}
.gi-service-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eef4ff;
    color: var(--gi-blue);
    font-weight: 900;
}
.gi-service-card h3,
.gi-tech-card h3,
.gi-project-card h3 {
    margin: 20px 0 10px;
    color: var(--gi-ink);
    font-size: 21px;
    line-height: 1.35;
}
.gi-service-card p { margin: 0 0 22px; color: #536179; }
.gi-service-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}
.gi-service-detail__main,
.gi-service-detail__side {
    border: 1px solid var(--gi-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}
.gi-service-detail__main { padding: 34px; }
.gi-service-detail__side {
    padding: 28px;
    display: grid;
    gap: 22px;
}
.gi-service-detail h2,
.gi-service-detail h3 {
    margin: 0 0 18px;
    color: var(--gi-ink);
}
.gi-service-detail ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.gi-service-detail li {
    padding: 16px 18px;
    border-radius: 8px;
    background: #f7f9fc;
    color: #344054;
    font-weight: 800;
}
.gi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.gi-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 8px;
    background: #f4f7fb;
    color: #475467;
    font-size: 13px;
    font-weight: 700;
}
.gi-tags--dark span {
    background: #edf3ff;
    color: var(--gi-blue-deep);
}

.gi-project-list { display: grid; gap: 16px; }
.gi-board-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.gi-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.gi-mini-grid a {
    min-height: 150px;
    padding: 24px;
    border: 1px solid var(--gi-line);
    border-radius: 8px;
    background: #fff;
    color: var(--gi-ink);
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}
.gi-mini-grid span {
    display: block;
    margin-top: 12px;
    color: var(--gi-muted);
    font-size: 14px;
    font-weight: 600;
}
.gi-project-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 26px;
    padding: 28px;
}
.gi-project-card > span {
    color: var(--gi-blue);
    font-size: 32px;
    font-weight: 900;
}
.gi-project-card p {
    margin: 0;
    color: var(--gi-blue-deep);
    font-size: 13px;
    font-weight: 900;
}
.gi-project-card h3 { margin-top: 6px; }
.gi-project-card strong {
    color: #536179;
    font-weight: 600;
}

.gi-developer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.gi-developer-grid article {
    min-height: 360px;
    padding: 26px;
    border: 1px solid var(--gi-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}
.gi-developer-photo {
    position: relative;
    width: 92px;
    height: 92px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    background: #eef4ff;
    border: 1px solid #d9e5ff;
}
.gi-developer-photo img,
.gi-developer-photo b {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.gi-developer-photo img {
    z-index: 2;
    object-fit: cover;
}
.gi-developer-photo b {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gi-blue);
    font-size: 34px;
    font-weight: 900;
}
.gi-developer-role {
    display: grid;
    gap: 4px;
    margin: 0 0 14px;
}
.gi-developer-role dt {
    color: var(--gi-blue);
    font-size: 13px;
    font-weight: 900;
}
.gi-developer-role dd {
    margin: 0;
    color: var(--gi-ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
}
.gi-developer-grid h3 {
    margin: 0 0 10px;
    color: var(--gi-ink);
    font-size: 22px;
}
.gi-developer-grid p {
    margin: 0;
    color: var(--gi-muted);
}
.gi-developer-grid .gi-tags {
    margin-top: 18px;
}
.gi-developer-grid .gi-tags em {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--gi-blue-deep);
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}
.gi-capability-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.gi-capability-list article {
    padding: 24px;
    border: 1px solid var(--gi-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}
.gi-capability-list strong {
    display: block;
    margin-bottom: 10px;
    color: var(--gi-ink);
    font-size: 18px;
}
.gi-capability-list span {
    color: var(--gi-muted);
}

.gi-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.gi-tech-card { padding: 24px; }
.gi-tech-card h3 { margin-top: 0; }

.gi-contact {
    padding: 104px 0;
    color: #fff;
    background: linear-gradient(135deg, #0f172a 0%, #123f9a 100%);
}
.gi-contact--page {
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
}
.gi-contact h1 { color: #fff; }
.gi-contact h2,
.gi-contact .gi-section__label { color: #fff; }
.gi-contact p { color: rgba(255, 255, 255, .74); }
.gi-contact__inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 54px;
    align-items: center;
}
.gi-contact__box {
    padding: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
}
.gi-contact__box dl {
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 10px 14px;
}
.gi-contact__box dt { color: rgba(255, 255, 255, .58); }
.gi-contact__box dd { margin: 0; font-weight: 800; }

.gi-footer {
    color: #d7dce8;
    background: #0b1220;
}
.gi-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 24px 22px;
    display: grid;
    grid-template-columns: 180px 1fr 430px;
    gap: 24px;
    align-items: start;
}
.gi-footer h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 16px;
}
.gi-footer strong { display: block; color: #fff; font-size: 20px; }
.gi-footer p { max-width: 560px; margin: 10px 0 0; color: #98a2b3; }
.gi-footer .ft_info {
    margin-top: 12px;
    color: #c6cfdd;
    line-height: 1.9;
}
.gi-footer address {
    display: grid;
    gap: 8px;
    justify-content: end;
    font-style: normal;
    color: #c6cfdd;
}
.gi-footer__bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 24px 34px;
    color: #7c8798;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.gi-footer__links {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    gap: 10px;
}
.gi-footer__links a {
    color: #d7dce8;
    font-weight: 800;
}
.gi-footer__links a:hover { color: #fff; }
.gi-footer .lat,
.gi-footer #visit {
    color: #c6cfdd;
}
.gi-footer__company {
    justify-self: end;
    max-width: 430px;
}
.gi-footer__side {
    display: grid;
    gap: 16px;
    min-width: 0;
}
.gi-footer .lat h2,
.gi-footer #visit h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 16px;
}
.gi-footer .lat ul,
.gi-footer #visit ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.gi-footer .lat li,
.gi-footer #visit li {
    margin: 6px 0;
}
.gi-footer__bottom {
    padding-top: 14px;
    padding-bottom: 22px;
}
hr { display: none; }
#top_btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: var(--gi-blue);
    color: #fff;
    box-shadow: 0 12px 28px rgba(17, 85, 255, .24);
    cursor: pointer;
}
.gi-member-panel {
    max-width: 760px;
    padding: 34px;
    border: 1px solid var(--gi-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--gi-shadow);
}
.gi-member-panel h2 {
    margin: 0 0 10px;
    color: var(--gi-ink);
    font-size: 28px;
}
.gi-member-panel p {
    margin: 0 0 24px;
    color: var(--gi-muted);
}
.gi-member-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gi-member-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    background: #eef4ff;
    color: var(--gi-blue-deep);
    font-weight: 800;
}
.gi-empty {
    margin-top: 24px;
    padding: 34px;
    border: 1px dashed #b9c7dd;
    border-radius: 8px;
    background: #fff;
    color: var(--gi-muted);
}
.gi-empty h2 {
    margin: 0 0 8px;
    color: var(--gi-ink);
    font-size: 24px;
}
.gi-empty p { margin: 0; }

@media (max-width: 980px) {
    .gi-header__inner { height: 66px; }
    .gi-main { padding-top: 66px; }
    .gi-header__cta,
    .gi-auth { display: none; }
    .gi-menu-button { display: block; margin-left: auto; }
    .gi-nav {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        display: none;
        padding: 10px 24px 24px;
        background: #fff;
        border-bottom: 1px solid var(--gi-line);
        box-shadow: 0 16px 30px rgba(15, 23, 42, .08);
    }
    .gi-nav.is-open { display: grid; gap: 0; }
    .gi-nav__item { border-bottom: 1px solid #eef2f7; }
    .gi-nav__link {
        min-height: 0;
        width: 100%;
        padding: 14px 0;
    }
    .gi-nav__dropdown {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        min-width: 0;
        padding: 0 0 12px 12px;
        border: 0;
        box-shadow: none;
        background: transparent;
    }
    .gi-nav__dropdown a {
        padding: 8px 0;
        font-size: 14px;
    }
    .gi-hero { min-height: auto; padding: 92px 0 72px; }
    .gi-hero__inner,
    .gi-split,
    .gi-service-detail,
    .gi-contact__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .gi-service-grid,
    .gi-tech-grid,
    .gi-developer-grid,
    .gi-capability-list,
    .gi-mini-grid,
    .gi-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gi-footer__company { justify-self: start; }
}

@media (max-width: 640px) {
    .gi-header__inner,
    .gi-container,
    .gi-hero__inner,
    .gi-footer__inner,
    .gi-footer__bottom { padding-left: 18px; padding-right: 18px; }
    .gi-logo__text { font-size: 15px; }
    .gi-hero h1 { font-size: 34px; }
    .gi-hero__lead { font-size: 17px; }
    .gi-section { padding: 76px 0; }
    .gi-service-grid,
    .gi-mini-grid,
    .gi-developer-grid,
    .gi-capability-list,
    .gi-tech-grid,
    .gi-footer__inner { grid-template-columns: 1fr; }
    .gi-service-card { min-height: auto; padding: 24px; }
    .gi-project-card { grid-template-columns: 1fr; gap: 8px; }
    .gi-contact__box dl { grid-template-columns: 1fr; }
    .gi-footer address { justify-content: start; }
}

/* Gnuboard default skin correction */
#bo_list,
#bo_v,
#bo_w,
.register,
.mbskin,
#find_info,
#register_form,
#reg_result,
#mb_confirm,
#pw_confirm,
#point,
#scrap,
#memo_list,
#memo_view {
    max-width: 1180px;
    width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
    letter-spacing: 0;
}
.mbskin { max-width: 420px; }
#bo_list,
#bo_v,
#bo_w {
    padding-top: 52px;
    padding-bottom: 56px;
}
#bo_btn_top,
.bo_fx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
#bo_list_total {
    float: none !important;
    color: var(--gi-muted);
    font-weight: 800;
}
.btn_bo_user {
    float: none !important;
    display: flex !important;
    justify-content: flex-end;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}
.gi-board-search {
    margin: 0 0 18px;
}
.gi-board-search form {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.gi-board-search select,
.gi-board-search input {
    min-height: 42px;
    border: 1px solid #d8e3f4;
    border-radius: 8px;
    background: #fff;
    color: var(--gi-ink);
}
.gi-board-search select { padding: 0 36px 0 12px; }
.gi-board-search input {
    width: 240px;
    padding: 0 12px;
}
.gi-board-search .sch_btn {
    min-width: 42px;
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--gi-blue);
    color: #fff;
}
.bo_sch_wrap { display: none !important; }
.btn_bo_user li {
    float: none !important;
    margin: 0 !important;
}
.btn_bo_user a,
.btn_bo_user button,
#bo_v_top a,
#bo_v_bot a,
#bo_w .btn_submit,
#bo_w .btn_cancel,
#bo_sch .btn_submit,
.mbskin .btn_submit,
#fregister .btn_submit,
#fregister .btn_close,
#find_info .btn_submit {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px !important;
    padding: 0 14px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: var(--gi-blue) !important;
    color: #fff !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    cursor: pointer;
}
#bo_w .btn_cancel,
#bo_v_top a,
#bo_v_bot a,
#fregister .btn_close {
    background: #eef4ff !important;
    color: var(--gi-blue-deep) !important;
}
#bo_list .tbl_head01,
#bo_w .tbl_frm01,
#bo_v header,
#bo_v_atc,
.mbskin .mbskin_box,
#fregister section,
#fregister_chkall,
#find_info .new_win_con,
#find_info fieldset,
#register_form,
#reg_result,
#mb_confirm fieldset,
#pw_confirm fieldset {
    overflow: hidden;
    border: 1px solid var(--gi-line) !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}
#login_fs {
    border: 0 !important;
}
.selec_chk {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}
.chk_box input[type="checkbox"] + label span,
.fregister_agree input[type="checkbox"] + label span {
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    border: 1px solid #cfd8e8 !important;
    border-radius: 4px !important;
    background: #fff !important;
}
.fregister_agree input[type="checkbox"]:checked + label span,
.chk_box input[type="checkbox"]:checked + label span {
    background: var(--gi-blue) !important;
    border-color: var(--gi-blue) !important;
}
#bo_list .tbl_head01 table,
#bo_w .tbl_frm01 table,
.fregister_terms table {
    width: 100%;
    border-collapse: collapse;
}
#bo_list .tbl_head01 th,
#bo_w .tbl_frm01 th,
.fregister_terms table th {
    padding: 14px !important;
    border-color: var(--gi-line) !important;
    background: #f7f9fc !important;
    color: var(--gi-ink) !important;
    font-weight: 900;
}
#bo_list .tbl_head01 td,
#bo_w .tbl_frm01 td,
.fregister_terms table td {
    padding: 14px !important;
    border-color: #edf1f7 !important;
    background: #fff !important;
}
#bo_list .bo_tit a,
#bo_v_title .bo_v_tit {
    color: var(--gi-ink) !important;
    font-weight: 900 !important;
}
#bo_v header,
#bo_v_atc {
    padding: 34px !important;
    margin-bottom: 18px !important;
}
#bo_v_title .bo_v_tit {
    font-size: 32px !important;
    line-height: 1.35 !important;
}
#bo_v_con {
    color: var(--gi-text);
    font-size: 17px;
    line-height: 1.85;
}
#bo_w input[type=text],
#bo_w input[type=password],
#bo_w input[type=file],
#bo_w select,
#bo_w textarea,
.mbskin .frm_input,
#find_info .frm_input,
#register_form .frm_input {
    min-height: 44px;
    padding: 0 14px !important;
    border: 1px solid #d8e3f4 !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: var(--gi-ink) !important;
    box-shadow: none !important;
}
#bo_w textarea { padding: 14px !important; }
#fregister p {
    height: auto !important;
    margin: 0 0 18px !important;
    padding: 18px 22px !important;
    border-radius: 8px !important;
    background: var(--gi-blue) !important;
    color: #fff !important;
    line-height: 1.6 !important;
}
#fregister p:before { display: none !important; }
#fregister h2,
#register_form h2,
#find_info h3,
.mbskin h1 {
    color: var(--gi-ink) !important;
    letter-spacing: 0;
}
#fregister h2 {
    padding: 22px 24px !important;
    border-bottom: 1px solid #eef2f7 !important;
}
.fregister_agree {
    display: flex;
    align-items: center;
}
.fregister_agree label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
#fregister section .fregister_agree label b {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
}
#fregister textarea {
    padding: 24px !important;
    border: 0 !important;
    line-height: 1.75 !important;
}
.register .btn_confirm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.register .btn_confirm .btn_submit,
.register .btn_confirm .btn_close {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

@media (max-width: 720px) {
    #bo_list,
    #bo_v,
    #bo_w,
    .register,
    .mbskin,
    #find_info,
    #register_form,
    #reg_result,
    #mb_confirm,
    #pw_confirm,
    #point,
    #scrap,
    #memo_list,
    #memo_view {
        width: calc(100% - 24px) !important;
    }
    #bo_btn_top,
    .bo_fx,
    .btn_bo_user,
    .gi-board-search form {
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .gi-board-search input { width: min(100%, 240px); }
    .register .btn_confirm {
        grid-template-columns: 1fr;
    }
}

.gi-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 0;
    color: #333;
    font-size: 15px;
    line-height: 1.8;
}
.gi-legal h1 {
    margin: 0 0 8px;
    color: #111;
    font-size: 28px;
}
.gi-legal .date {
    margin-bottom: 40px;
    color: #888;
    font-size: 13px;
}
.gi-legal h2 {
    margin: 36px 0 12px;
    padding-left: 10px;
    border-left: 3px solid var(--gi-blue);
    color: #111;
    font-size: 18px;
}
.gi-legal h3 {
    margin: 20px 0 8px;
    color: #333;
    font-size: 15px;
}
.gi-legal p,
.gi-legal li { margin-bottom: 6px; }
.gi-legal ul,
.gi-legal ol {
    padding-left: 20px;
    margin-bottom: 10px;
}
.gi-legal table {
    width: 100%;
    margin: 12px 0;
    border-collapse: collapse;
    font-size: 14px;
}
.gi-legal th,
.gi-legal td {
    padding: 10px 12px;
    border: 1px solid #ddd;
    text-align: left;
}
.gi-legal th {
    background: #f4f6f9;
    font-weight: 700;
}
.gi-legal .highlight-box {
    margin: 16px 0;
    padding: 16px 20px;
    border: 1px solid #c7d7ff;
    border-radius: 6px;
    background: #f0f4ff;
}
.gi-legal .footer-info {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    color: #555;
    font-size: 13px;
}

/* Board action hard reset */
#bo_list #bo_btn_top {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px !important;
}
#bo_list #bo_btn_top .btn_bo_user,
#bo_list .bo_fx .btn_bo_user {
    float: none !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
#bo_list #bo_btn_top .btn_bo_user > li,
#bo_list .bo_fx .btn_bo_user > li {
    position: relative;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}
#bo_list #bo_btn_top .btn_bo_user > li > a,
#bo_list #bo_btn_top .btn_bo_user > li > button,
#bo_list .bo_fx .btn_bo_user > li > a,
#bo_list .bo_fx .btn_bo_user > li > button {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: var(--gi-blue) !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 42px !important;
}
#bo_list .more_opt {
    display: none;
    position: absolute !important;
    top: 50px !important;
    right: 0 !important;
    z-index: 1000 !important;
    width: 150px !important;
    min-width: 150px !important;
    padding: 6px !important;
    border: 1px solid #d8e3f4 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .12) !important;
}
#bo_list .more_opt:before,
#bo_list .more_opt:after {
    display: none !important;
}
#bo_list .more_opt li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}
#bo_list .more_opt li + li {
    margin-top: 4px !important;
}
#bo_list .more_opt li button,
#bo_list .more_opt li a {
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    width: 100% !important;
    min-width: 0 !important;
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 10px !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: var(--gi-text) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 36px !important;
    text-align: left !important;
    white-space: nowrap !important;
}
#bo_list .more_opt li button:hover,
#bo_list .more_opt li a:hover {
    background: #eef4ff !important;
    color: var(--gi-blue) !important;
}
#bo_list .more_opt li i {
    float: none !important;
    width: 16px;
    margin: 0 !important;
    line-height: 1 !important;
}

/* Member pages final polish */
#mb_login.mbskin {
    width: calc(100% - 40px) !important;
    max-width: 520px !important;
    margin: 88px auto !important;
}
#mb_login .mbskin_box {
    overflow: hidden !important;
    border: 1px solid #dfe7f3 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .08) !important;
}
#mb_login h1 {
    position: static !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 32px 44px 14px !important;
    color: #111827 !important;
    font-size: 32px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
}
#mb_login .mb_log_cate {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    border-bottom: 1px solid #eef2f7 !important;
}
#mb_login .mb_log_cate:after { display: none !important; }
#mb_login .mb_log_cate h2,
#mb_login .mb_log_cate .join {
    float: none !important;
    width: auto !important;
    height: 78px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    color: #111827 !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}
#mb_login .mb_log_cate .join {
    background: #f6f8fc !important;
    color: #344054 !important;
    font-size: 18px !important;
}
#mb_login #login_fs {
    margin: 0 !important;
    padding: 36px 44px 42px !important;
    border: 0 !important;
    background: #fff !important;
}
#mb_login #login_fs .frm_input {
    display: block !important;
    width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    margin: 0 0 12px !important;
    padding: 0 18px !important;
    border: 1px solid #cfdcf0 !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #111827 !important;
    font-size: 17px !important;
    line-height: 56px !important;
    box-shadow: none !important;
}
#mb_login #login_fs .btn_submit {
    width: 100% !important;
    height: 58px !important;
    min-height: 58px !important;
    margin: 14px 0 0 !important;
    border-radius: 8px !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}
#mb_login #login_info {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-top: 18px !important;
}
#mb_login #login_info:after { display: none !important; }
#mb_login #login_info .login_if_auto,
#mb_login #login_info .login_if_lpl {
    float: none !important;
    display: flex !important;
    align-items: center !important;
}
#mb_login #login_info label,
#mb_login #login_info a {
    font-size: 16px !important;
    font-weight: 800 !important;
}
#mb_login #login_info a {
    color: var(--gi-blue) !important;
    font-weight: 900 !important;
}

/* Board write page final polish */
#bo_w {
    max-width: 1180px !important;
    width: calc(100% - 48px) !important;
    margin: 0 auto 72px !important;
    padding-top: 56px !important;
}
#bo_w #fwrite { width: 100% !important; }
#bo_w .write_div { margin: 0 0 14px !important; }
#bo_w .bo_w_info {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px !important;
}
#bo_w .bo_w_info .frm_input,
#bo_w #wr_password,
#bo_w #wr_homepage {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}
#bo_w .bo_w_select select,
#bo_w .frm_input,
#bo_w input[type="text"],
#bo_w input[type="password"],
#bo_w textarea {
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 18px !important;
    border: 1px solid #cfdcf0 !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: var(--gi-ink) !important;
    font-size: 16px !important;
    box-shadow: none !important;
}
#bo_w .bo_v_option {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
#bo_w .bo_w_tit .frm_input { padding-right: 160px !important; }
#bo_w #btn_autosave {
    position: absolute !important;
    top: 7px !important;
    right: 7px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 14px !important;
    border: 1px solid #d8e3f4 !important;
    border-radius: 8px !important;
    background: #f7f9fc !important;
    color: var(--gi-text) !important;
    font-weight: 800 !important;
}
#bo_w .wr_content {
    overflow: hidden;
    border: 1px solid #cfdcf0 !important;
    border-radius: 8px !important;
    background: #fff !important;
}
#bo_w .wr_content textarea,
#bo_w textarea#wr_content {
    min-height: 420px !important;
    padding: 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
}
#bo_w .wr_content iframe {
    display: block;
    width: 100% !important;
    border: 0 !important;
}
#bo_w .bo_w_link label,
#bo_w .bo_w_flie .lb_icon {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 8px 0 0 8px !important;
    background: #f7f9fc !important;
    color: #98a2b3 !important;
    text-align: center !important;
    line-height: 54px !important;
}
#bo_w .bo_w_link .frm_input { padding-left: 66px !important; }
#bo_w .bo_w_flie .file_wr {
    position: relative !important;
    min-height: 54px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #cfdcf0 !important;
    border-radius: 8px !important;
    background: #fff !important;
}
#bo_w .bo_w_flie .frm_file {
    width: 100% !important;
    min-height: 54px !important;
    padding: 13px 14px 13px 66px !important;
    border: 0 !important;
    background: transparent !important;
}
#bo_w .btn_confirm {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    margin-top: 22px !important;
}
