@charset "utf-8";

:root {
    --guide-bg: #f5f2eb;
    --guide-surface: rgba(255, 255, 255, 0.72);
    --guide-surface-strong: #ffffff;
    --guide-border: rgba(17, 17, 17, 0.08);
    --guide-text: #151515;
    --guide-muted: #666057;
    --guide-soft: #8d877f;
    --guide-accent: #4ade80;
    --guide-accent-deep: #10b85b;
    --guide-dark: #111111;
    --guide-shadow: 0 24px 60px rgba(17, 17, 17, 0.06);
    --guide-radius-xl: 32px;
    --guide-radius-lg: 24px;
    --guide-radius-md: 18px;
    --guide-radius-sm: 999px;
}

#container_wr {
    width: 100% !important;
}

#container {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    margin: 0 auto !important;
}

.sound_only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.guide-board {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 24px 120px;
    color: var(--guide-text);
}

.guide-board-list {
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guide-board-list > * {
    width: 100%;
}

.guide-board a {
    color: inherit;
    text-decoration: none;
}

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

.guide-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--guide-accent-deep);
}

.guide-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: var(--guide-radius-sm);
    border: 1px solid rgba(74, 222, 128, 0.28);
    background: rgba(74, 222, 128, 0.12);
    color: #168448;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.guide-toolbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--guide-border);
    border-radius: var(--guide-radius-sm);
    background: rgba(255, 255, 255, 0.8);
    color: var(--guide-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.guide-toolbar-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(17, 17, 17, 0.18);
}

.guide-toolbar-btn-primary {
    border-color: var(--guide-accent);
    background: linear-gradient(135deg, #4ade80 0%, #30cf6b 100%);
    color: #0d0d0d;
}

.guide-hero {
    position: relative;
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 0 0 50px;
    text-align: center;
}

.guide-hero-title {
    margin: 0 0 24px;
    font-size: clamp(2.5rem, 5vw, 65px);
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.guide-hero-desc {
    max-width: 760px;
    margin: 0 auto;
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    word-break: keep-all;
}

.guide-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.guide-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.guide-hero-card {
    position: absolute;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 238, 231, 0.98) 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.05);
}

.guide-hero-orb {
    position: absolute;
    top: 6px;
    right: 120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.16) 0%, rgba(74, 222, 128, 0.05) 42%, transparent 72%);
}

.guide-hero-card-main {
    top: 34px;
    right: 170px;
    width: 250px;
    height: 150px;
    transform: rotate(-8deg);
}

.guide-hero-card-main::before {
    content: "BRANROOM";
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(17, 17, 17, 0.72);
}

.guide-hero-card-sub {
    width: 126px;
    height: 82px;
    right: 96px;
    top: 92px;
    transform: rotate(8deg);
    opacity: 0.9;
}

.guide-hero-line {
    position: absolute;
    top: 18px;
    right: 142px;
    width: 10px;
    height: 148px;
    border-radius: 999px;
    background: linear-gradient(180deg, #424242 0%, #111111 100%);
    transform: rotate(36deg);
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.14);
}

.guide-category-nav {
    width: min(100%, 1040px);
    margin: 28px auto 0;
}

.guide-category-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-category-nav li {
    margin: 0;
    padding: 0;
}

.guide-category-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: var(--guide-radius-sm);
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.72);
    color: #5f5a52;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.guide-category-nav a:hover,
.guide-category-nav #bo_cate_on {
    transform: translateY(-2px);
    border-color: rgba(74, 222, 128, 0.32);
    background: rgba(74, 222, 128, 0.12);
    color: #147e44;
}

.guide-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(100%, 1040px);
    margin: 24px auto 18px;
}

.guide-toolbar-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--guide-soft);
    font-size: 14px;
}

.guide-toolbar-meta strong {
    color: var(--guide-text);
}

.guide-toolbar-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.guide-admin-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 20;
    min-width: 140px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid var(--guide-border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 30px rgba(17, 17, 17, 0.08);
}

.guide-admin-menu button {
    width: 100%;
    min-height: 40px;
    border: 0;
    background: transparent;
    color: var(--guide-text);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.guide-checkall {
    width: min(100%, 1040px);
    margin: 0 auto 18px;
    color: var(--guide-soft);
    font-size: 13px;
}

.guide-checkall label {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}

.guide-checkall label::before,
.guide-card-check label span {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(17, 17, 17, 0.15);
    background: #ffffff;
    transform: translateY(-50%);
}

.selec_chk:checked + label::before,
.selec_chk:checked + label span {
    background: var(--guide-accent);
    border-color: var(--guide-accent);
    box-shadow: inset 0 0 0 3px #ffffff;
}

.guide-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    width: min(100%, 1040px);
    margin: 18px auto 0;
    padding: 24px;
    border-radius: var(--guide-radius-xl);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--guide-shadow);
}

.guide-feature-media,
.guide-card-media,
.guide-related-media {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, #ede9e1 0%, #f9f8f5 100%);
}

.guide-feature-media {
    min-height: 340px;
}

.guide-feature-media a,
.guide-card-link,
.guide-related-card a {
    display: block;
}

.guide-feature-media img,
.guide-card-media img,
.guide-related-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-card-check {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.guide-card-check label {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
}

.guide-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guide-feature-copy h2 {
    margin: 16px 0 14px;
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.16;
    letter-spacing: -0.045em;
}

.guide-feature-copy p {
    margin: 0;
    color: var(--guide-muted);
    font-size: 16px;
    line-height: 1.8;
}

.guide-feature-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
    color: var(--guide-soft);
    font-size: 14px;
}

.guide-inline-link {
    color: var(--guide-text);
    font-weight: 800;
}

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

.guide-card-grid {
    width: min(100%, 1040px);
    margin: 24px auto 0;
}

.guide-card-grid-single {
    display: flex;
    justify-content: center;
}

.guide-card-grid-single .guide-card {
    width: min(100%, 420px);
}

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

.guide-card,
.guide-related-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.guide-card:hover,
.guide-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(17, 17, 17, 0.09);
    border-color: rgba(74, 222, 128, 0.22);
}

.guide-card-media {
    aspect-ratio: 16 / 10;
}

.guide-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 220px;
    color: rgba(17, 17, 17, 0.36);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.guide-card-body,
.guide-related-body {
    padding: 18px 18px 20px;
}

.guide-card-title,
.guide-related-body strong {
    display: block;
    margin-top: 12px;
    font-size: 22px;
    line-height: 1.34;
    letter-spacing: -0.04em;
}

.guide-card-summary,
.guide-related-body p {
    margin: 10px 0 0;
    color: var(--guide-muted);
    font-size: 14px;
    line-height: 1.75;
}

.guide-card-date,
.guide-related-body span {
    display: inline-block;
    margin-top: 16px;
    color: var(--guide-soft);
    font-size: 13px;
}

.guide-empty {
    padding: 90px 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--guide-soft);
    text-align: center;
}

.guide-pagination {
    width: min(100%, 1040px);
    margin: 34px auto 0;
    text-align: center;
}

.guide-pagination .pg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.guide-pagination .pg_page,
.guide-pagination .pg_current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--guide-border);
    color: var(--guide-text);
    font-size: 14px;
    font-weight: 700;
}

.guide-pagination .pg_current {
    background: var(--guide-dark);
    color: #ffffff;
    border-color: var(--guide-dark);
}

.guide-cta,
.guide-inline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(100%, 1040px);
    margin: 40px auto 0;
    padding: 26px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at left center, rgba(74, 222, 128, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(252, 251, 249, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
}

.guide-cta-copy strong,
.guide-inline-cta-copy strong {
    display: block;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.guide-cta-copy p,
.guide-inline-cta-copy p {
    margin: 8px 0 0;
    color: var(--guide-muted);
    line-height: 1.75;
}

.guide-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: var(--guide-radius-sm);
    background: var(--guide-dark);
    color: #ffffff !important;
    font-size: 17px;
    line-height: 1;
    font-weight: 800;
}

.guide-search-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
}

.bo_sch_bg {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.3);
    z-index: 0;
}

.guide-search-dialog {
    position: relative;
    z-index: 2;
    width: min(560px, calc(100vw - 32px));
    margin: 12vh auto 0;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.16);
}

.guide-search-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.guide-search-head strong {
    font-size: 24px;
    letter-spacing: -0.04em;
}

.bo_sch_cls {
    border: 0;
    background: transparent;
    color: var(--guide-soft);
    font-size: 28px;
    cursor: pointer;
}

.guide-search-fields {
    margin-top: 18px;
}

.guide-search-fields select,
.guide-search-input input {
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #ffffff;
    color: var(--guide-text);
    padding: 0 16px;
    font-size: 15px;
}

.guide-search-input {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 12px;
}

.guide-search-input button {
    min-width: 90px;
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    background: var(--guide-dark);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.guide-board-view {
    max-width: 980px;
}

.guide-view-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    text-align: center;
}

.guide-view-heading {
    max-width: 760px;
    margin: 0 auto;
}

.guide-view-title {
    margin: 14px 0 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.guide-view-intro {
    margin: 18px 0 0;
    color: var(--guide-muted);
    font-size: 17px;
    line-height: 1.85;
}

.guide-view-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
    color: var(--guide-soft);
    font-size: 14px;
}

.guide-view-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.guide-view-hero {
    margin-top: 32px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.94);
    box-shadow: var(--guide-shadow);
}

.guide-view-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.guide-article-shell {
    margin-top: 28px;
    padding: 36px 40px;
    border-radius: var(--guide-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--guide-shadow);
}

.guide-article-body {
    max-width: 900px;
    margin: 0 auto;
    color: var(--guide-text);
    overflow-wrap: anywhere;
}

.guide-article-body::after {
    content: "";
    display: block;
    clear: both;
}

.guide-article-body > *:first-child {
    margin-top: 0 !important;
}

.guide-article-body > *:last-child {
    margin-bottom: 0 !important;
}

.guide-article-body img,
.guide-article-body video,
.guide-article-body iframe,
.guide-article-body embed,
.guide-article-body object,
.guide-article-body canvas,
.guide-article-body svg {
    max-width: 100% !important;
    height: auto !important;
}

.guide-article-body table {
    width: 100% !important;
    max-width: 100% !important;
}

.guide-article-body th,
.guide-article-body td {
    word-break: keep-all;
}

.guide-article-body div,
.guide-article-body section,
.guide-article-body article,
.guide-article-body aside,
.guide-article-body header,
.guide-article-body footer,
.guide-article-body main {
    max-width: 100% !important;
    box-sizing: border-box;
}

.guide-article-body pre,
.guide-article-body code {
    max-width: 100%;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.guide-resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.guide-resource-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.05);
}

.guide-resource-card h2,
.guide-section-head h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.guide-resource-card ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.guide-resource-card li + li {
    margin-top: 10px;
}

.guide-resource-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #faf9f6;
    border: 1px solid rgba(17, 17, 17, 0.06);
}

.guide-resource-card strong {
    font-size: 14px;
}

.guide-resource-card span,
.guide-section-head span {
    color: var(--guide-soft);
    font-size: 13px;
}

.guide-inline-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.guide-related {
    margin-top: 28px;
}

.guide-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.guide-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-related-media {
    aspect-ratio: 16 / 10;
}

.guide-prev-next {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.guide-prev-next-link {
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.04);
}

.guide-prev-next-link small {
    display: block;
    color: var(--guide-soft);
    font-size: 13px;
}

.guide-prev-next-link strong {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: -0.03em;
}

@media (max-width: 1180px) {
    .guide-card-grid,
    .guide-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-feature-card,
    .guide-hero {
        grid-template-columns: 1fr;
    }

    .guide-hero-visual {
        min-height: 200px;
    }
}

@media (max-width: 900px) {
    .guide-board {
        padding: 38px 16px 90px;
    }

    .guide-toolbar,
    .guide-view-header,
    .guide-cta,
    .guide-inline-cta,
    .guide-section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .guide-resource-grid,
    .guide-prev-next {
        grid-template-columns: 1fr;
    }

    .guide-article-shell {
        padding: 24px 18px;
    }

    .guide-hero {
        padding: 72px 0 40px;
    }

    .guide-feature-card {
        padding: 18px;
    }

    .guide-feature-media {
        min-height: 240px;
    }
}

@media (max-width: 680px) {
    .guide-card-grid,
    .guide-related-grid {
        grid-template-columns: 1fr;
    }

    .guide-card-grid-single,
    .guide-card-grid-double {
        display: grid;
        grid-template-columns: 1fr;
    }

    .guide-hero-title,
    .guide-view-title {
        font-size: 32px;
    }

    .guide-hero-desc,
    .guide-view-intro,
    .guide-feature-copy p,
    .guide-cta-copy p,
    .guide-inline-cta-copy p {
        font-size: 15px;
    }

    .guide-feature-copy h2,
    .guide-cta-copy strong,
    .guide-inline-cta-copy strong {
        font-size: 24px;
    }

    .guide-search-dialog {
        padding: 20px;
    }

    .guide-hero-card-main {
        width: 200px;
        height: 124px;
        right: 76px;
        top: 0px;
    }

    .guide-hero-card-sub {
        width: 110px;
        height: 72px;
        right: 26px;
        top: 102px;
    }

    .guide-hero-line {
        right: 52px;
        height: 122px;
        top: 42px;
    }

    .guide-hero-orb {
        width: 240px;
        height: 240px;
        top: 36px;
        right: 10px;
    }

    .guide-search-input {
        grid-template-columns: 1fr;
    }

    .guide-article-body {
        font-size: 15px;
        line-height: 1.8;
    }

    .guide-article-body [style*="padding:44px 42px"],
    .guide-article-body [style*="padding:44px 42px;"] {
        padding: 28px 20px !important;
    }

    .guide-article-body [style*="padding:30px 32px"],
    .guide-article-body [style*="padding:34px 36px"],
    .guide-article-body [style*="padding:26px 28px"] {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .guide-article-body [style*="font-size:32px"],
    .guide-article-body [style*="font-size:32px;"] {
        font-size: 26px !important;
        line-height: 1.35 !important;
    }

    .guide-article-body [style*="font-size:25px"],
    .guide-article-body [style*="font-size:25px;"],
    .guide-article-body [style*="font-size:24px"],
    .guide-article-body [style*="font-size:24px;"],
    .guide-article-body [style*="font-size:23px"],
    .guide-article-body [style*="font-size:23px;"],
    .guide-article-body [style*="font-size:21px"],
    .guide-article-body [style*="font-size:21px;"] {
        font-size: 20px !important;
        line-height: 1.45 !important;
    }

    .guide-article-body [style*="min-width:680px"] {
        min-width: 640px !important;
    }
}

/* 게시판 쓰기 페이지 폼 스타일 수정 (여백 및 버튼) */
#bo_w {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    box-sizing: border-box;
}

#bo_w .btn_confirm {
    text-align: center;
    margin-top: 30px;
}

#bo_w .btn_submit {
    background: var(--guide-dark, #111111);
    color: #ffffff !important;
    border: 1px solid var(--guide-dark, #111111);
    padding: 0 24px;
    min-height: 48px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--guide-radius-sm, 8px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

#bo_w .btn_submit:hover {
    background: #333333;
}

#bo_w .btn_cancel {
    background: #ffffff;
    color: #555555 !important;
    border: 1px solid #dddddd;
    padding: 0 24px;
    min-height: 48px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--guide-radius-sm, 8px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.2s;
}

#bo_w .btn_cancel:hover {
    background: #f8f8f8;
}

/* Drag and Drop File Upload */
.drag_drop_wrap {
    margin-top: 15px;
    width: 100%;
    display: block;
}
.drag_drop_zone {
    border: 2px dashed #dcdcdc;
    border-radius: 12px;
    background: #fafafa;
    text-align: center;
    padding: 60px 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}
.drag_drop_zone:hover, .drag_drop_zone.is-dragover {
    border-color: #4ade80; /* 브랜드 포인트 컬러 */
    background: #f0fdf4;
}
.drag_drop_zone .dz_inner p {
    font-size: 16px;
    color: #444;
    font-weight: 600;
    margin-bottom: 8px;
}
.drag_drop_zone .dz_limit {
    font-size: 13px;
    color: #888;
}
.file_preview_list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.file_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.file_item:last-child {
    margin-bottom: 0;
}
.file_item .fi_info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    margin-right: 15px;
}
.file_item .fi_thumb {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eaeaea;
}
.file_item .fi_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.file_item .fi_thumb i {
    font-size: 20px;
    color: #999;
    margin-right: 0;
}
.file_item .fi_name_wrap {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.file_item .fi_name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}
.file_item .fi_size {
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
}
.file_item .fi_content {
    flex: 2;
    margin-right: 15px;
}
.file_item .dz_content_input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 13px;
    outline: none;
}
.file_item .dz_content_input:focus {
    border-color: #4ade80;
}
.file_item .btn_del_file {
    background: none;
    border: none;
    color: #ff4d4f;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.file_item .btn_del_file:hover {
    background: #fff1f0;
}
