/* 두리맛 블로그 스킨 */
#durimat-gn-shell .durimat-blog-wrap {
    padding: 40px 0;
    max-width: 100%;
}

#durimat-gn-shell .durimat-blog-cate {
    margin-bottom: 1.5rem;
}
#durimat-gn-shell .durimat-blog-cate ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
#durimat-gn-shell .durimat-blog-cate a {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    transition: all .2s ease;
}
#durimat-gn-shell .durimat-blog-cate a:hover,
#durimat-gn-shell .durimat-blog-cate #bo_cate_on {
    background: #8e44ad;
    border-color: #8e44ad;
    color: #fff;
}

#durimat-gn-shell .durimat-blog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 12px;
}
#durimat-gn-shell .durimat-blog-count {
    margin: 0;
    color: #666;
    font-size: 14px;
}
#durimat-gn-shell .durimat-blog-count strong {
    color: #8e44ad;
}

#durimat-gn-shell .durimat-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-left: 0;
    margin-right: 0;
}
#durimat-gn-shell .durimat-blog-item {
    float: none;
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    min-width: 0;
}

#durimat-gn-shell .durimat-blog-card {
    height: 100%;
}
#durimat-gn-shell .durimat-blog-card-inner {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s ease, transform .25s ease;
    position: relative;
}
#durimat-gn-shell .durimat-blog-card-inner:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    transform: translateY(-3px);
}

#durimat-gn-shell .durimat-blog-card .block-infos {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}
#durimat-gn-shell .durimat-blog-card .block-data {
    background: rgba(142, 68, 173, .92);
    color: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    line-height: 1.2;
    min-width: 52px;
}
#durimat-gn-shell .durimat-blog-card .bd-day {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
#durimat-gn-shell .durimat-blog-card .bd-month {
    font-size: 10px;
    margin: 0;
    opacity: .9;
}
#durimat-gn-shell .durimat-blog-card .block-comment {
    background: rgba(255,255,255,.9);
    color: #555;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
}

#durimat-gn-shell .durimat-blog-thumb {
    display: block;
    height: 200px;
    overflow: hidden;
    background: #eee;
}
#durimat-gn-shell .durimat-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
#durimat-gn-shell .durimat-blog-card-inner:hover .durimat-blog-thumb img {
    transform: scale(1.04);
}

#durimat-gn-shell .durimat-blog-body {
    padding: 1.25rem 1.35rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
#durimat-gn-shell .durimat-blog-cate {
    display: inline-block;
    font-size: 12px;
    color: #8e44ad;
    font-weight: 600;
    margin-bottom: 6px;
    text-decoration: none;
}
#durimat-gn-shell .durimat-blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
}
#durimat-gn-shell .durimat-blog-title a {
    color: #222;
    text-decoration: none;
}
#durimat-gn-shell .durimat-blog-title a:hover {
    color: #8e44ad;
}
#durimat-gn-shell .durimat-blog-notice {
    display: inline-block;
    background: #8e44ad;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
    vertical-align: middle;
}
#durimat-gn-shell .durimat-blog-new {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 4px;
    vertical-align: middle;
}
#durimat-gn-shell .durimat-blog-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
#durimat-gn-shell .durimat-blog-meta span {
    margin-right: 12px;
}
#durimat-gn-shell .durimat-blog-meta i {
    margin-right: 3px;
}
#durimat-gn-shell .durimat-blog-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 12px;
    flex: 1;
}
#durimat-gn-shell .durimat-blog-more {
    font-size: 13px;
    color: #8e44ad;
    font-weight: 600;
    text-decoration: none;
}
#durimat-gn-shell .durimat-blog-more:hover {
    text-decoration: underline;
}

#durimat-gn-shell .durimat-blog-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: #999;
}
#durimat-gn-shell .durimat-blog-empty i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #ccc;
}
#durimat-gn-shell .durimat-blog-paging {
    margin-top: 2rem;
    text-align: center;
}

/* 상세보기 */
#durimat-gn-shell .durimat-blog-breadcrumb {
    margin-bottom: 1.5rem;
}
#durimat-gn-shell .durimat-blog-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #999;
}
#durimat-gn-shell .durimat-blog-breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    color: #ccc;
}
#durimat-gn-shell .durimat-blog-breadcrumb a {
    color: #8e44ad;
    text-decoration: none;
}

#durimat-gn-shell .durimat-blog-view-header {
    margin-bottom: 1.5rem;
}
#durimat-gn-shell .durimat-blog-view-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.35;
    color: #222;
    margin: 8px 0 14px;
    word-break: keep-all;
}
#durimat-gn-shell .durimat-blog-view-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 13px;
    color: #888;
}
#durimat-gn-shell .durimat-blog-view-meta i {
    margin-right: 4px;
}
#durimat-gn-shell .durimat-blog-view-date .bd-day,
#durimat-gn-shell .durimat-blog-view-date .bd-month {
    display: none;
}
#durimat-gn-shell .durimat-blog-view-actions {
    margin-bottom: 1.5rem;
    overflow: visible !important;
    display: flex;
    justify-content: flex-end;
    clear: both;
}
#durimat-gn-shell .durimat-blog-view-actions #bo_v_top,
#durimat-gn-shell #durimat_blog_view #bo_v_top {
    width: 100%;
    overflow: visible !important;
}
#durimat-gn-shell .durimat-blog-view-actions .bo_v_com,
#durimat-gn-shell #durimat_blog_view .bo_v_com {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    float: none;
}
#durimat-gn-shell .durimat-blog-view-actions .bo_v_com > li,
#durimat-gn-shell #durimat_blog_view .bo_v_com > li {
    position: relative;
    float: none;
    margin: 0;
    list-style: none;
}
#durimat-gn-shell .durimat-blog-view-actions .btn_bo_user a.btn,
#durimat-gn-shell .durimat-blog-view-actions .btn_bo_user button.btn,
#durimat-gn-shell #durimat_blog_view .btn_bo_user a.btn,
#durimat-gn-shell #durimat_blog_view .btn_bo_user button.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #444 !important;
}
#durimat-gn-shell .durimat-blog-view-actions .btn_bo_user a.btn:hover,
#durimat-gn-shell .durimat-blog-view-actions .btn_bo_user button.btn:hover,
#durimat-gn-shell #durimat_blog_view .btn_bo_user a.btn:hover,
#durimat-gn-shell #durimat_blog_view .btn_bo_user button.btn:hover {
    color: #000 !important;
    background: rgba(0, 0, 0, 0.04) !important;
}
#durimat-gn-shell .durimat-blog-view-actions .btn_bo_user .fa,
#durimat-gn-shell #durimat_blog_view .btn_bo_user .fa {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 15px !important;
    height: 15px !important;
    font-family: FontAwesome !important;
    font-size: 15px !important;
    line-height: 1 !important;
    color: #444 !important;
}

/* 글보기 ⋮ 메뉴 — 기본 숨김, 클릭 시 드롭다운 */
#durimat-gn-shell #durimat_blog_view .more_opt,
#durimat-gn-shell .durimat-blog-view-actions .more_opt {
    display: none;
    position: absolute;
    top: 42px;
    right: 0;
    min-width: 96px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #b8bfc4;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 100;
}
#durimat-gn-shell #durimat_blog_view .more_opt:before,
#durimat-gn-shell .durimat-blog-view-actions .more_opt:before {
    content: "";
    position: absolute;
    top: -8px;
    right: 13px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #b8bfc4 transparent;
}
#durimat-gn-shell #durimat_blog_view .more_opt:after,
#durimat-gn-shell .durimat-blog-view-actions .more_opt:after {
    content: "";
    position: absolute;
    top: -6px;
    right: 13px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #fff transparent;
}
#durimat-gn-shell #durimat_blog_view .more_opt li,
#durimat-gn-shell .durimat-blog-view-actions .more_opt li {
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f1f1f1;
    text-align: left;
    white-space: nowrap;
}
#durimat-gn-shell #durimat_blog_view .more_opt li:last-child,
#durimat-gn-shell .durimat-blog-view-actions .more_opt li:last-child {
    border-bottom: 0;
}
#durimat-gn-shell #durimat_blog_view .more_opt li a,
#durimat-gn-shell #durimat_blog_view .more_opt li button,
#durimat-gn-shell .durimat-blog-view-actions .more_opt li a,
#durimat-gn-shell .durimat-blog-view-actions .more_opt li button {
    display: block;
    width: 100%;
    min-width: 90px;
    padding: 10px 14px;
    border: 0;
    background: #fff;
    color: #6b757c;
    font-size: 13px;
    text-align: left;
    text-decoration: none;
    box-sizing: border-box;
}
#durimat-gn-shell #durimat_blog_view .more_opt li:hover a,
#durimat-gn-shell #durimat_blog_view .more_opt li:hover button,
#durimat-gn-shell .durimat-blog-view-actions .more_opt li:hover a,
#durimat-gn-shell .durimat-blog-view-actions .more_opt li:hover button {
    color: #000;
    background: #f8f9fb;
}

#durimat-gn-shell .durimat-blog-hero {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    max-height: 420px;
}
#durimat-gn-shell .durimat-blog-hero img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

#durimat-gn-shell .durimat-blog-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    word-break: keep-all;
}
#durimat-gn-shell .durimat-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
#durimat-gn-shell .durimat-blog-share {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8ecf1;
}

#durimat-gn-shell .durimat-blog-files {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: #f8f9fb;
    border-radius: 8px;
}
#durimat-gn-shell .durimat-blog-files h2 {
    font-size: 14px;
    margin: 0 0 10px;
}
#durimat-gn-shell .durimat-blog-files ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#durimat-gn-shell .durimat-blog-files a {
    color: #555;
    font-size: 13px;
}

#durimat-gn-shell .durimat-blog-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8ecf1;
}
#durimat-gn-shell .durimat-blog-nav a {
    display: block;
    padding: 14px 16px;
    background: #f8f9fb;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: background .2s;
}
#durimat-gn-shell .durimat-blog-nav a:hover {
    background: #f0f2f6;
}
#durimat-gn-shell .durimat-blog-nav .nb_tit {
    display: block;
    font-size: 12px;
    color: #8e44ad;
    margin-bottom: 4px;
}
#durimat-gn-shell .durimat-blog-nav .nb_subj {
    font-size: 14px;
    font-weight: 600;
}

/* 상단 도구 버튼 — 다른 게시판(#bo_btn_top)과 동일 영역 */
#durimat-gn-shell .durimat-blog-toolbar {
    overflow: visible !important;
}
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user > li {
    list-style: none;
    background: transparent !important;
    vertical-align: top !important;
}
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user a.btn,
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user button.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #444 !important;
}
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user a.btn:hover,
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user button.btn:hover {
    color: #000 !important;
    background: rgba(0, 0, 0, 0.04) !important;
}
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user a.btn_admin .fa,
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user a.btn_admin .fa:before,
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user a.btn_admin .fa-cog:before {
    color: #d13f4a !important;
}
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user a.btn_admin:hover .fa,
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user a.btn_admin:hover .fa:before {
    color: #c0392b !important;
}
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user .fa {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 15px !important;
    height: 15px !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: FontAwesome !important;
    font-size: 15px !important;
    line-height: 1 !important;
    color: #444 !important;
    vertical-align: middle !important;
}
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user a.btn_admin .fa {
    position: relative;
    top: 4px;
    color: #d13f4a !important;
}
#durimat-gn-shell .durimat-blog-toolbar .fa-search:before {
    font-family: FontAwesome !important;
    content: "\f002" !important;
}
#durimat-gn-shell .durimat-blog-toolbar .fa-pencil:before {
    font-family: FontAwesome !important;
    content: "\f040" !important;
}
#durimat-gn-shell .durimat-blog-toolbar .fa-rss:before {
    font-family: FontAwesome !important;
    content: "\f09e" !important;
}
#durimat-gn-shell .durimat-blog-toolbar .fa-cog:before {
    font-family: FontAwesome !important;
    content: "\f013" !important;
}
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user > li > a.btn_admin.btn,
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user > li > a.btn_admin.btn .fa,
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user > li > a.btn_admin.btn .fa:before {
    color: #d13f4a !important;
}
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user > li > a.btn_admin.btn:hover,
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user > li > a.btn_admin.btn:hover .fa,
#durimat-gn-shell .durimat-blog-toolbar .btn_bo_user > li > a.btn_admin.btn:hover .fa:before {
    color: #c0392b !important;
}

/* 검색 레이어 (기본 숨김 → 검색 아이콘 클릭 시 모달) */
#durimat-gn-shell .durimat-blog-wrap .bo_sch_wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10050;
}
#durimat-gn-shell .durimat-blog-wrap .bo_sch_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .35);
}
#durimat-gn-shell .durimat-blog-wrap .bo_sch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
    border: 1px solid #e8ecf1;
    margin: 0;
    padding: 0;
    z-index: 1;
}
#durimat-gn-shell .durimat-blog-wrap .bo_sch h3 {
    margin: 0;
    padding: 16px 48px 16px 20px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #e8ecf1;
    color: #222;
}
#durimat-gn-shell .durimat-blog-wrap .bo_sch form {
    display: block;
    padding: 20px;
    margin: 0;
}
#durimat-gn-shell .durimat-blog-wrap .bo_sch select {
    display: block;
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #d0d3db;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    margin: 0 0 12px;
    box-sizing: border-box;
}
#durimat-gn-shell .durimat-blog-wrap .bo_sch .sch_bar {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 1px solid #d0d3db;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    margin: 0;
    clear: none;
}
#durimat-gn-shell .durimat-blog-wrap .bo_sch .sch_input {
    flex: 1;
    min-width: 0;
    width: auto !important;
    height: 42px;
    border: 0;
    padding: 0 14px;
    font-size: 14px;
    background: transparent;
    float: none !important;
    box-shadow: none;
}
#durimat-gn-shell .durimat-blog-wrap .bo_sch .sch_btn {
    flex-shrink: 0;
    width: 44px;
    height: 42px;
    border: 0;
    border-left: 1px solid #e8ecf1;
    background: #f8f9fb;
    color: #8e44ad;
    font-size: 16px;
    cursor: pointer;
    float: none !important;
    padding: 0;
}
#durimat-gn-shell .durimat-blog-wrap .bo_sch .bo_sch_cls {
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 53px;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 53px;
}

/* 글쓰기 폼 — basic 스킨과 동일 (링크·파일첨부 아이콘 박스 포함) */
#durimat-gn-shell #bo_w .bo_v_option li {display:inline-block;float:left;text-align:left;margin:0 5px 0 0}
#durimat-gn-shell #bo_w .bo_v_option li label {vertical-align:baseline}
#durimat-gn-shell #bo_w .bo_v_option .chk_box input[type="checkbox"] + label span {margin-left:0;margin-right:5px}
#durimat-gn-shell #bo_w .write_div {margin:10px 0;position:relative}
#durimat-gn-shell #bo_w .write_div:after {display:block;visibility:hidden;clear:both;content:""}
#durimat-gn-shell #bo_w .bo_w_info:after {display:block;visibility:hidden;clear:both;content:""}
#durimat-gn-shell #bo_w .bo_w_info .frm_input {float:left;margin-bottom:1%}
#durimat-gn-shell #bo_w #wr_password,
#durimat-gn-shell #bo_w #wr_homepage {margin-left:1%}
#durimat-gn-shell #bo_w .wr_content.smarteditor2 iframe {background:#fff}
#durimat-gn-shell #bo_w .bo_w_tit {position:relative}
#durimat-gn-shell #bo_w .bo_w_tit .frm_input {padding-right:120px}
#durimat-gn-shell #bo_w .bo_w_tit #btn_autosave {position:absolute;top:5px;right:5px;line-height:30px;height:30px}
#durimat-gn-shell #bo_w .bo_w_link label {position:absolute;top:1px;left:1px;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;font-size:1.2em;text-align:center;color:#b2b2b2}
#durimat-gn-shell #bo_w .bo_w_link .frm_input {padding-left:50px;width:100%;box-sizing:border-box}
#durimat-gn-shell #bo_w .bo_w_flie .lb_icon {position:absolute;top:0;left:0;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;font-size:1.2em;text-align:center;color:#b2b2b2}
#durimat-gn-shell #bo_w .bo_w_flie .frm_file {padding-left:50px;margin-top:3px;width:100%;box-sizing:border-box}
#durimat-gn-shell #bo_w .bo_w_flie .file_wr {position:relative;border:1px solid #ccc;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;height:40px;margin:0}
#durimat-gn-shell #bo_w .bo_w_flie .frm_input {margin:10px 0 0}
#durimat-gn-shell #bo_w .bo_w_flie .file_del {position:absolute;top:10px;right:10px;font-size:0.92em;color:#7d7d7d}
#durimat-gn-shell #bo_w .bo_w_select select {border:1px solid #d0d3db;width:100%;height:40px;border-radius:3px}
#durimat-gn-shell #bo_w .frm_input {border:1px solid #d0d3db;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;height:40px;box-sizing:border-box}
#durimat-gn-shell #bo_w .full_input {width:100%}
#durimat-gn-shell #bo_w .half_input {width:49.5%}
#durimat-gn-shell #bo_w .write_div .chk_box input[type="checkbox"] + label {padding-left:20px}
#durimat-gn-shell #bo_w .write_div .chk_box input[type="checkbox"] + label span {position:absolute;top:2px;left:0;width:15px;height:15px;display:block;margin:0;background:#fff;border:1px solid #d0d4df;border-radius:3px}

/* 글쓰기 — 하단 여백 (no-padding-bottom·푸터 겹침 보정) */
#durimat-gn-shell #bo_w.durimat-blog-write {
    padding: 40px 0 80px !important;
    margin-bottom: 40px !important;
    overflow: visible !important;
}
#durimat-gn-shell .section-empty.no-padding-bottom > .container.content:has(#bo_w.durimat-blog-write) {
    padding-bottom: 80px !important;
    overflow: visible !important;
}
#durimat-gn-shell #bo_w .btn_confirm.write_div {
    margin-top: 2rem;
    margin-bottom: 15px;
    padding-bottom: 0;
    overflow: visible !important;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}
#durimat-gn-shell #bo_w .btn_submit,
#durimat-gn-shell #bo_w .btn_cancel {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 1.25rem !important;
    border-radius: 8px;
    font-size: 14px !important;
    line-height: 1.2 !important;
}
#durimat-gn-shell #bo_w .btn_submit {
    background: #8e44ad !important;
    color: #fff !important;
    border: none !important;
}
#durimat-gn-shell #bo_w .btn_cancel {
    background: #969696 !important;
    color: #fff !important;
}

@media (max-width: 991px) {
    #durimat-gn-shell .durimat-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    #durimat-gn-shell .durimat-blog-grid {
        grid-template-columns: 1fr;
    }
    #durimat-gn-shell .durimat-blog-wrap {
        padding: 24px 0 40px;
    }
    #durimat-gn-shell #bo_w.durimat-blog-write {
        padding: 24px 0 60px !important;
        margin-bottom: 32px !important;
    }
    #durimat-gn-shell .section-empty.no-padding-bottom > .container.content:has(#bo_w.durimat-blog-write) {
        padding-bottom: 60px !important;
    }
    #durimat-gn-shell .durimat-blog-view-title {
        font-size: 1.35rem;
    }
    #durimat-gn-shell .durimat-blog-hero {
        max-height: 240px;
        border-radius: 8px;
    }
}
