/*-------------------------------------------------------------------------------------------
일반 게시판 목록 list
-------------------------------------------------------------------------------------------*/
.board-page {
    background-color: #ffffff;
    background-image: radial-gradient(1200px 500px at 50% 0%, #eef4ff 0%, rgba(255, 255, 255, 0) 60%);
    background-repeat: no-repeat;
    background-position: top center;
    /*font-size: 16px;*/
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: #0f172a;
    font-weight: 500;
}

.board-skin {
    max-width: 1160px;
    /*-----------------------------------
    모바일 타이틀 글 줄 지정.
    - 2 → 모바일에서 2줄까지만 보이고
    - 3 → 모바일에서 3줄까지만 보인다.
    -----------------------------------*/
    --board-mobile-title-lines: 2;
    --new1_text_strong: #0f172a;
    --new1_text_muted: #64748b;
    --new1_text_mid: #334155;
    --new1_fs_xs: 0.82rem;
    --new1_fs_sm: 0.88rem;
    --new1_fs_md: 0.95rem;
    --new1_fs_lg: 1.05rem;
}

.board-header {text-align: center;}

.board-title {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--new1_text_strong);
}

.board-subtitle {
    font-size: var(--new1_fs_md);
    color: var(--new1_text_muted);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.board-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.board-card-body {padding: 18px 18px 16px 18px;}

.board-card-footer {
    padding: 14px 18px 18px 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
}

.board-actions {gap: 1rem;}

.board-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.board-table {
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
}

.board-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: var(--new1_fs_sm);
    color: var(--new1_text_strong);
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
}

.board-table tbody td {
    border-top: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
    color: var(--new1_text_strong);
    font-size: var(--new1_fs_md);
    letter-spacing: -0.01em;
}

.board-table tbody tr:hover {background: rgba(37, 99, 235, 0.05);}

.board-table .col-no {width: 90px;}

/*-----------------------------------
pc 타이틀 폭 지정
-----------------------------------*/
.board-table .col-title {width: 52%;}

.board-table .col-writer {width: 140px;}

.board-table .col-date {width: 220px;}

.board-table .col-views {width: 90px;}

.board-link {
    color: var(--new1_text_strong);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.board-link:hover,
.board-link:focus {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.board-link-ellipsis {
    display: block;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.board-date {
    white-space: nowrap;
    color: var(--new1_text_mid);
    font-size: var(--new1_fs_sm);
    letter-spacing: -0.01em;
    font-weight: 600;
}

.is-row-highlight {background: rgba(2, 6, 23, 0.03);}

.board-btn {
    min-width: 132px;
    padding: 0.72rem 1.15rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: var(--new1_fs_md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.board-btn:active {transform: translateY(0);}

.board-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    border: 0;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.board-btn-primary:hover,
.board-btn-primary:focus {
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
    transform: translateY(-1px);
}

.board-btn-primary:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.24), 0 14px 28px rgba(37, 99, 235, 0.28);
}

.board-btn-secondary {
    color: var(--new1_text_strong);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.board-btn-secondary:hover,
.board-btn-secondary:focus {
    color: var(--new1_text_strong);
    background: rgba(248, 250, 252, 0.95);
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.board-btn-secondary:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14), 0 14px 28px rgba(15, 23, 42, 0.08);
}

.board-pagination .page-link {
    min-width: 40px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    color: var(--new1_text_strong);
    font-size: var(--new1_fs_sm);
    font-weight: 700;
    letter-spacing: -0.01em;
    padding: 0.4rem 0.8rem;
    background: #ffffff;
}

.board-pagination .pagination > a,
.board-pagination .pagination > span,
.board-pagination .pagination > strong,
.board-pagination .pagination > b,
.board-pagination .pagination > em {
    min-width: 40px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    color: var(--new1_text_strong);
    font-size: var(--new1_fs_sm);
    font-weight: 700;
    letter-spacing: -0.01em;
    padding: 0.4rem 0.8rem;
    background: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.board-pagination .pagination > a:hover,
.board-pagination .pagination > a:focus {
color: var(--new1_text_strong);
    background: rgba(248, 250, 252, 0.95);
    border-color: rgba(37, 99, 235, 0.22);
}

.board-pagination .pg_page,
.board-pagination .pg_current,
.board-pagination .current,
.board-pagination .on {
    min-width: 40px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    color: var(--new1_text_strong);
    font-size: var(--new1_fs_sm);
    font-weight: 700;
    letter-spacing: -0.01em;
    padding: 0.4rem 0.8rem;
    background: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.board-pagination .page-item.active .page-link,
.board-pagination .page-link.active,
.board-pagination .page-link.fw-bold,
.board-pagination .page-link[aria-current="page"],
.board-pagination [aria-current="page"] .page-link {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.25);
    color: #1d4ed8;
}

.board-pagination .pagination > strong,
.board-pagination .pagination > b,
.board-pagination .pagination > em,
.board-pagination .pg_current,
.board-pagination .current,
.board-pagination .on,
.board-pagination [aria-current="page"],
.board-pagination [aria-current="page"].page-link {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.25);
    color: #1d4ed8;
}

.board-pagination .page-item.disabled .page-link {opacity: 0.55;}

.board-pagination .pagination {gap: 0.4rem;}

.new1_category_row {margin-bottom: 1.25rem !important;}

.new1_category_caption {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--new1_text_mid);
    margin-bottom: 0.6rem;
}

.new1_category_row_type2 {margin-top: 0.35rem;}

.new1_category_btnGroup {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    --new1_cat_btn_min_width: 92px;
}

.new1_cat_btn {
    min-width: var(--new1_cat_btn_min_width);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--new1_text_strong);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    white-space: nowrap;
    width: auto;
    transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.new1_cat_btn:hover,
.new1_cat_btn:focus {
    transform: translateY(-1px);
    background: rgba(248, 250, 252, 0.95);
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
    color: var(--new1_text_strong);
}

.new1_cat_btnCheck:checked + .new1_cat_btn {
    color: #1d4ed8;
    border-color: rgba(37, 99, 235, 0.35);
    background: rgba(37, 99, 235, 0.08);
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.14);
}

.new1_category_hint {
    margin-top: 0.55rem;
    font-size: var(--new1_fs_xs);
    color: var(--new1_text_muted);
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: right;
}

.new1_category_row .form-select {
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.new1_category_row .form-select:focus {
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.new1_search_form .form-check-label {
    color: var(--new1_text_mid);
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: var(--new1_fs_sm);
}

.new1_search_form {
    margin-top: 1.25rem !important;
    padding-top: 1.15rem;
}

.new1_search_row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
}

.new1_srch_val {
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.new1_srch_val:focus {
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.new1_btn_srch {
    min-width: 92px;
    border-radius: 999px;
    padding: 0.72rem 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--new1_text_strong);
    font-size: var(--new1_fs_md);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.new1_btn_srch:hover,
.new1_btn_srch:focus {
    transform: translateY(-1px);
    background: rgba(248, 250, 252, 0.95);
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
    color: var(--new1_text_strong);
}

.new1_btn_srch:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14), 0 14px 26px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
    .board-skin {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .board-card {
        border-radius: 14px;
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
    }

    .board-card-body {
        padding: 10px 10px 10px 10px;
    }

    .board-card-footer {
        padding: 10px;
    }

    .board-actions {
        gap: 0.6rem;
        flex-wrap: wrap;
    }

    .board-actions .board-pagination {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .board-table {
        min-width: 820px;
    }

    .board-pagination .page-link {
        min-width: 34px;
        padding: 0.35rem 0.65rem;
    }

    .new1_category_caption {
        display: none;
    }

    .new1_category_hint {
        display: none;
    }

    .new1_search_form {
        margin-top: 0.85rem !important;
        padding-top: 0.85rem;
    }

    .new1_search_row {
        --bs-gutter-x: 0.6rem;
        --bs-gutter-y: 0.6rem;
    }

    .board-link-ellipsis {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: var(--board-mobile-title-lines);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }
}

@media (max-width: 575.98px) {
    .board-skin {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }

    .board-card {
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
    }

    .board-card-body {
        padding: 0;
    }

    .board-card-footer {
        padding: 0.85rem 0 0 0;
        border-top: 0;
        background: transparent;
    }

    .board-actions {
        justify-content: center !important;
    }
    }

    @media (min-width: 769px) {
    .board-link-ellipsis {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.new1_viewModal .modal-content {
    /*-----------------------------------
    new1_ 모달 전용 스타일(충돌 방지용)
    - 기존 클래스/아이디는 유지하고
    - 디자인만 new1_ 범위에서 덮어쓴다.
    -----------------------------------*/
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.24);
    overflow: hidden;
}

.new1_viewModal .modal-header {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

.new1_viewModal .modal-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.new1_viewModal .modal-body {
    padding: 16px 18px;
    color: #0f172a;
}

.new1_viewModal .new1_viewModal_hr {
    margin: 0;
    border-top-color: rgba(15, 23, 42, 0.06);
}

.new1_viewModal .modal-footer {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding: 14px 18px;
    background: rgba(248, 250, 252, 0.75);
}

.new1_viewModal .btn_back {
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 700;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.new1_viewModal .btn_back:hover,
.new1_viewModal .btn_back:focus {
    transform: translateY(-1px);
    background: rgba(248, 250, 252, 0.95);
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

.new1_viewModal .btn_back:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14), 0 14px 26px rgba(15, 23, 42, 0.08);
}


/*-------------------------------------------------------------------------------------------
일반 게시판 view
-------------------------------------------------------------------------------------------*/
.board-page {
    background-color: #ffffff;
    background-image: radial-gradient(1200px 500px at 50% 0%, #eef4ff 0%, rgba(255, 255, 255, 0) 60%);
    background-repeat: no-repeat;
    background-position: top center;
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: #0f172a;
    font-weight: 500;
  }
  
  .new1_view_skin {
    max-width: 1160px;
    --new1_text_strong: #0f172a;
    --new1_text_muted: #64748b;
    --new1_text_mid: #334155;
    --new1_fs_xs: 0.82rem;
    --new1_fs_sm: 0.88rem;
    --new1_fs_md: 0.95rem;
    --new1_fs_lg: 1.05rem;
  }
  
  .new1_view_header {
    text-align: center;
  }
  
  .new1_view_title {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--new1_text_strong);
  }
  
  .new1_view_subtitle {
    font-size: var(--new1_fs_md);
    color: var(--new1_text_muted);
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  
  .new1_view_card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
  }
  
  .new1_view_card_body {
    padding: 18px 18px 16px 18px;
  }
  
  .new1_view_card_footer {
    padding: 14px 18px 18px 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
  }
  
  .new1_view_postTitle {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--new1_text_strong);
  }
  
  .new1_view_metaRow {
    font-size: var(--new1_fs_sm);
    font-weight: 700;
    color: var(--new1_text_mid);
  }
  
  .new1_view_metaItem {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
  
  .new1_view_filesLabel {
    font-weight: 800;
    color: var(--new1_text_mid);
  }
  
  .new1_view_files {
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    row-gap: 0.4rem;
    background: transparent !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-radius: 0 !important;
  }
  
  .new1_view_fileLink {
    color: var(--new1_text_mid) !important;
    font-weight: 700;
  }
  
  .new1_view_fileLink:hover,
  .new1_view_fileLink:focus {
    color: var(--new1_text_strong) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
  }
  
  .new1_view_card_body hr {
    margin: 1.1rem 0;
    border-top-color: rgba(15, 23, 42, 0.08);
    opacity: 1;
  }
  
  .new1_view_top {
    margin-bottom: 1.25rem;
  }
  
  .new1_view_metaRow {
    row-gap: 0.5rem;
    margin-top: 0.85rem;
    margin-bottom: 0.85rem;
  }
  
  .new1_view_files {
    margin-top: 0.75rem;
  }
  
  .new1_view_main {
    margin-top: 1.25rem !important;
  }
  
  .new1_view_contents {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 80px 10px;
  }
  
  .new1_view_contentsInner {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
  }
  
  .new1_view_ripple {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: #ffffff;
    padding: 16px;
  }
  
  .new1_view_rippleInner {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
  }
  
  .new1_view_rippleInner .r_list {
    --bs-gutter-x: 0.9rem;
    --bs-gutter-y: 0.6rem;
  }
  
  .new1_view_rippleInner .r_list .row.mb-3 {
    margin-bottom: 0.95rem !important;
    align-items: flex-start;
  }
  
  .new1_view_rippleInner .r_list .row.mb-3 > [class*="col"]:first-child {
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--new1_text_mid);
    font-size: var(--new1_fs_sm);
  }
  
  .new1_view_rippleInner .r_list .row.mb-3 > [class*="col"]:nth-child(2) {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    padding: 0.75rem 0.95rem;
    color: var(--new1_text_strong);
    font-size: var(--new1_fs_md);
    letter-spacing: -0.01em;
    line-height: 1.6;
  }
  
  .new1_view_rippleInner .r_list .row.mb-3:hover > [class*="col"]:nth-child(2) {
    background: rgba(37, 99, 235, 0.06);
    border-color: rgba(37, 99, 235, 0.14);
  }
  
  .new1_view_rippleInner .r_list .r_del {
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    border-color: rgba(15, 23, 42, 0.16);
  }
  
  .new1_view_rippleInner .r_list .r_del:hover,
  .new1_view_rippleInner .r_list .r_del:focus {
    border-color: rgba(37, 99, 235, 0.28);
    color: #1d4ed8;
  }
  
  .new1_view_rippleInner .r_list hr {
    margin: 0.95rem 0;
    border-top-color: rgba(15, 23, 42, 0.08);
    opacity: 1;
  }
  
  @media (max-width: 575.98px) {
    .new1_view_rippleInner .r_list .row.mb-3 > [class*="col"]:nth-child(2) {
      border-left: 0;
      border-right: 0;
      border-radius: 12px;
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
  
  .new1_btn_primary {
    border-radius: 999px;
    padding: 0.72rem 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    border: 0;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  }
  
  .new1_btn_primary:hover,
  .new1_btn_primary:focus {
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
  }
  
  .new1_btn_secondary {
    border-radius: 999px;
    padding: 0.72rem 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--new1_text_strong);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  }
  
  .new1_btn_secondary:hover,
  .new1_btn_secondary:focus {
    color: var(--new1_text_strong);
    background: rgba(248, 250, 252, 0.95);
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
  }
  
  .new1_btn_outline {
    border-radius: 999px;
    padding: 0.5rem 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  
  .new1_modal .modal-content {
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.24);
    overflow: hidden;
  }
  
  .new1_modal .modal-header {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
  }
  
  .new1_modal .modal-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--new1_text_strong);
  }
  
  .new1_modal .modal-body {
    padding: 16px 18px;
    color: var(--new1_text_strong);
  }
  
  .new1_modal .modal-footer {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding: 14px 18px;
    background: rgba(248, 250, 252, 0.75);
  }
  
  .new1_modal .form-label {
    font-size: var(--new1_fs_sm);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--new1_text_mid);
    margin-bottom: 0.35rem;
  }
  
  .new1_modal .form-control {
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }
  
  .new1_modal .form-control:focus {
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
  }
  
  .new1_modal textarea.form-control {
    min-height: 160px;
    resize: vertical;
  }
  
  .new1_modal .modal-fullscreen .modal-content {
    border-radius: 0;
    box-shadow: none;
  }
  
  @media (max-width: 575.98px) {
    .new1_view_skin {
      padding-left: 0 !important;
      padding-right: 0 !important;
      padding-top: 1.25rem !important;
      padding-bottom: 1.25rem !important;
    }
  
    .new1_view_header {
      padding-left: 12px;
      padding-right: 12px;
    }
  
    .new1_view_title {
      font-size: 1.35rem;
    }
  
    .new1_view_postTitle {
      font-size: 1.15rem;
    }
  
    .new1_view_metaRow .col {
      text-align: left !important;
    }
  
    .new1_view_metaRow {
      margin-left: 12px;
      margin-right: 12px;
    }
  
    .new1_view_metaRow > .col {
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .new1_view_card_body hr {
      margin-left: 12px;
      margin-right: 12px;
    }
  
    .new1_view_card {
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      overflow: visible;
    }
  
    .new1_view_card_body {
      padding: 0;
    }
  
    .new1_view_contents,
    .new1_view_ripple {
      border-left: 0;
      border-right: 0;
      border-radius: 0;
      padding-left: 0;
      padding-right: 0;
    }
  
    .new1_view_files {
      margin-left: 12px;
      margin-right: 12px;
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
  
    .new1_view_main {
      padding-left: 12px;
      padding-right: 12px;
    }
  
    .new1_view_main .row {
      margin-left: 0 !important;
      margin-right: 0 !important;
      --bs-gutter-x: 0;
    }
  
    .new1_view_main .row > [class*="col"] {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
  
    .new1_view_rippleInner .r_list .row.mb-3 > [class*="col"]:nth-child(2) {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }
  
    .new1_view_contentsInner,
    .new1_view_rippleInner {
      padding: 0;
    }
  
    .new1_view_card_footer {
      padding: 0.85rem 12px 0 12px;
      border-top: 0;
      background: transparent;
    }
  
    .new1_view_card_footer .col-12.col-md-6 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
    }
  
    .new1_view_card_footer .btn {
      width: 100%;
    }
  
    .new1_view_rippleInner .r_list .row.mb-3 {
      gap: 0.55rem;
    }
  
    .new1_view_rippleInner .r_list .row.mb-3 > [class*="col"]:first-child {
      flex: 1 1 auto;
      order: 1;
    }
  
    .new1_view_rippleInner .r_list .row.mb-3 > [class*="col"]:last-child {
      flex: 0 0 auto;
      order: 2;
    }
  
    .new1_view_rippleInner .r_list .row.mb-3 > [class*="col"]:nth-child(2) {
      flex: 0 0 100%;
      order: 3;
    }
  }

/*-------------------------------------------------------------------------------------------
일반 게시판 글쓰기 input
-------------------------------------------------------------------------------------------*/
:root {
  --new1_primary: #2563eb;
  --new1_primary_hover: #1d4ed8;
  --new1_text_strong: #0f172a;
  --new1_text_mid: #334155;
  --new1_text_muted: #64748b;
  --new1_border: #e2e8f0;
  --new1_bg_light: #f8fafc;
  --new1_radius: 12px;
}

.new1_input_skin {
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.new1_input_header {
  margin-bottom: 2.5rem;
}

.new1_input_title {
  color: var(--new1_text_strong);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.new1_input_subtitle {
  color: var(--new1_text_muted);
  font-size: 1rem;
  margin: 0;
}

.new1_input_card {
  background: #ffffff;
  border: 1px solid var(--new1_border);
  border-radius: var(--new1_radius);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  overflow: hidden;
}

.new1_input_section {
  padding: 2rem;
  border-bottom: 1px solid var(--new1_border);
}

.new1_input_section:last-child {
  border-bottom: none;
}

.new1_privacy_section {
  background-color: var(--new1_bg_light);
}

.new1_section_title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--new1_text_strong);
  margin-bottom: 1rem;
}

.new1_privacy_box {
  background: #ffffff;
  border: 1px solid var(--new1_border);
  border-radius: 8px;
  padding: 1.25rem;
  font-size: 0.9rem;
  color: var(--new1_text_mid);
  line-height: 1.6;
}

.new1_privacy_box li {
  margin-bottom: 0.5rem;
}

.new1_custom_check .form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.15em;
  cursor: pointer;
}

.new1_custom_check .form-check-label {
  cursor: pointer;
  padding-left: 0.5rem;
}

.new1_form_label {
  font-weight: 600;
  color: var(--new1_text_strong);
  margin-bottom: 0;
}

.new1_form_control {
  border: 1px solid var(--new1_border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--new1_text_strong);
  transition: all 0.2s ease;
}

.new1_form_control:focus {
  border-color: var(--new1_primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  outline: none;
}

.new1_textarea {
  resize: vertical;
  min-height: 200px;
}

.new1_file_section {
  background: var(--new1_bg_light);
  border: 1px dashed var(--new1_border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.new1_file_list {
  margin-top: 1rem;
}

/* Buttons */
.new1_btn_primary {
  background: linear-gradient(135deg, var(--new1_primary) 0%, #4f46e5 100%);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  transition: all 0.2s ease;
}

.new1_btn_primary:hover {
  background: linear-gradient(135deg, var(--new1_primary_hover) 0%, #4338ca 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
  color: white;
}

.new1_btn_secondary {
  background: white;
  color: var(--new1_text_strong);
  border: 1px solid var(--new1_border);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.new1_btn_secondary:hover {
  background: var(--new1_bg_light);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.new1_btn_outline {
  background: transparent;
  color: var(--new1_primary);
  border: 1px solid var(--new1_primary);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.new1_btn_outline:hover {
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .new1_input_skin {
    padding: 1.5rem 1rem;
  }
  
  .new1_input_section {
    padding: 1.5rem 1rem;
  }
  
  .new1_form_label {
    margin-bottom: 0.5rem;
    display: inline-block;
  }
  
  .new1_input_footer .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .new1_input_footer .col-12.col-md-6.text-center {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .new1_input_footer .btn.me-2 {
    margin-right: 0 !important;
  }
}

/*-------------------------------------------------------------------------------------------
일반 게시판 글수정 edit
-------------------------------------------------------------------------------------------*/
:root {
  --new1_primary: #2563eb;
  --new1_primary_hover: #1d4ed8;
  --new1_text_strong: #0f172a;
  --new1_text_mid: #334155;
  --new1_text_muted: #64748b;
  --new1_border: #e2e8f0;
  --new1_bg_light: #f8fafc;
  --new1_radius: 12px;
}

.new1_edit_skin {
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.new1_edit_header {
  margin-bottom: 2.5rem;
}

.new1_edit_title {
  color: var(--new1_text_strong);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.new1_edit_card {
  background: #ffffff;
  border: 1px solid var(--new1_border);
  border-radius: var(--new1_radius);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  padding: 2rem;
}

.new1_form_control {
  border: 1px solid var(--new1_border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--new1_text_strong);
  transition: all 0.2s ease;
}

.new1_form_control:focus {
  border-color: var(--new1_primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  outline: none;
}

.new1_textarea {
  resize: vertical;
  min-height: 200px;
}

.new1_btn_primary {
  background: linear-gradient(135deg, var(--new1_primary) 0%, #4f46e5 100%);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  transition: all 0.2s ease;
}

.new1_btn_primary:hover {
  background: linear-gradient(135deg, var(--new1_primary_hover) 0%, #4338ca 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
  color: white;
}

.new1_btn_secondary {
  background: white;
  color: var(--new1_text_strong);
  border: 1px solid var(--new1_border);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.new1_btn_secondary:hover {
  background: var(--new1_bg_light);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.new1_btn_outline {
  background: transparent;
  color: var(--new1_primary);
  border: 1px solid var(--new1_primary);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.new1_btn_outline:hover {
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .new1_edit_skin {
    padding: 1.5rem 1rem;
  }

  .new1_edit_card {
    padding: 1.5rem 1rem;
  }

  .new1_edit_header {
    margin-bottom: 1.5rem;
  }

  .new1_edit_title {
    font-size: 1.5rem;
  }

  .new1_btn_primary,
  .new1_btn_secondary,
  .new1_btn_outline {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

 /*-------------------------------------------------------------------------------------------
포토앨범 list
-------------------------------------------------------------------------------------------*/
.tz-gallery .lightbox img {width: auto!important;}
.img-thumbnail {padding: 0!important; background-color: none!important; border: none!important;}

:root {
  --new1_text_strong: #0f172a;
  --new1_text_mid: #334155;
  --new1_text_muted: #64748b;
  --new1_fs_xl: 1.55rem;
  --new1_fs_lg: 1.15rem;
  --new1_fs_md: 1rem;
  --new1_fs_sm: 0.925rem;
  --new1_caption_lines_mobile: 2;
  --new1_space_base: 80px;
  --new1_space_section: 160px;
}

.new1_foto_skin {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.new1_foto_title {
  color: var(--new1_text_strong);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: var(--new1_fs_xl);
}

.new1_foto_subtitle {
  color: var(--new1_text_muted);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: var(--new1_fs_md);
}

.new1_foto_header {
  margin-bottom: var(--new1_space_section);
}

.new1_foto_item .new1_foto_link {
  display: block;
  text-decoration: none;
  color: var(--new1_text_strong);
}

.new1_foto_thumb {
  position: relative;
  width: 100%;
  padding-top: 70%; /* 1:1에서 약 4:3 비율로 변경하여 과도한 세로 여백 축소 */
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0; /* 박스 테두리를 추가하여 빈 공간이 카드처럼 보이도록 함 */
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05); /* 붕 떠보이지 않게 그림자 완화 */
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.new1_foto_thumb::before {
  content: none !important;
  display: none !important;
}

.new1_foto_img {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transition: transform 160ms ease, filter 160ms ease;
}

.new1_foto_item:hover .new1_foto_thumb,
.new1_foto_item:focus-within .new1_foto_thumb {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.new1_foto_item:hover .new1_foto_img,
.new1_foto_item:focus-within .new1_foto_img {
  transform: translate(-50%, -50%) !important;
  filter: saturate(1.05);
}

.new1_foto_caption {
  margin-top: 0.75rem; /* 박스가 작아졌으므로 텍스트와의 간격도 약간 줄임 */
  color: var(--new1_text_mid);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: var(--new1_fs_md);
}

.new1_foto_date {
  margin-top: 0.6rem;
  color: var(--new1_text_muted);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: var(--new1_fs_sm);
}

.new1_foto_author {
  margin-top: 0.5rem;
  color: var(--new1_text_mid);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: var(--new1_fs_sm);
}

@media (min-width: 769px) {
  .new1_foto_caption {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .new1_foto_caption {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--new1_caption_lines_mobile);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
}

.new1_foto_card_footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  /* 섹션 간 여백(위 Grid와의 간격)은 new1_foto_grid의 margin-bottom으로 제어 */
}

.new1_foto_btn_primary {
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  border: 0;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.new1_foto_btn_primary:hover,
.new1_foto_btn_primary:focus {
  color: #ffffff;
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
  transform: translateY(-1px);
}

.new1_foto_btn_primary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14), 0 14px 28px rgba(15, 23, 42, 0.08);
}

.new1_foto_btn_secondary {
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--new1_text_strong);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.new1_foto_btn_secondary:hover,
.new1_foto_btn_secondary:focus {
  transform: translateY(-1px);
  background: rgba(248, 250, 252, 0.95);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
  color: var(--new1_text_strong);
}

.new1_foto_btn_secondary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14), 0 14px 26px rgba(15, 23, 42, 0.08);
}

.new1_foto_pagination .page-link {
  min-width: 40px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: var(--new1_text_strong);
  font-size: var(--new1_fs_sm);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0.4rem 0.8rem;
  background: #ffffff;
}

.new1_foto_pagination .pagination > a,
.new1_foto_pagination .pagination > span,
.new1_foto_pagination .pagination > strong,
.new1_foto_pagination .pagination > b,
.new1_foto_pagination .pagination > em {
  min-width: 40px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: var(--new1_text_strong);
  font-size: var(--new1_fs_sm);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0.4rem 0.8rem;
  background: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.new1_foto_pagination .pagination > a:hover,
.new1_foto_pagination .pagination > a:focus {
  color: var(--new1_text_strong);
  background: rgba(248, 250, 252, 0.95);
  border-color: rgba(37, 99, 235, 0.22);
}

.new1_foto_pagination .page-item.active .page-link,
.new1_foto_pagination .page-link.active,
.new1_foto_pagination .page-link[aria-current="page"],
.new1_foto_pagination [aria-current="page"] .page-link,
.new1_foto_pagination .pagination > strong,
.new1_foto_pagination .pagination > b,
.new1_foto_pagination .pagination > em,
.new1_foto_pagination .pg_current,
.new1_foto_pagination .current,
.new1_foto_pagination .on,
.new1_foto_pagination .fw-bold {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
}

@media (max-width: 768px) {
  .new1_foto_skin {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .new1_foto_card {
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  }

  .new1_foto_card_footer {
    padding: 10px;
  }
}

@media (max-width: 575.98px) {
  .new1_foto_skin {
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .new1_foto_card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .new1_foto_card_footer {
    padding: 0.85rem 12px 0 12px;
    border-top: 0;
    background: transparent;
  }

  .new1_foto_card_footer .row.g-2.align-items-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "left right"
      "pager pager";
    gap: 0.75rem;
    align-items: center;
  }

  .new1_foto_card_footer .col-12.col-md-3.text-start {
    grid-area: left;
  }

  .new1_foto_card_footer .col-12.col-md-6.text-center {
    grid-area: pager;
    justify-self: center;
  }

  .new1_foto_card_footer .col-12.col-md-3.text-end {
    grid-area: right;
  }

  .new1_foto_card_footer .col-12.col-md-3.text-start .btn,
  .new1_foto_card_footer .col-12.col-md-3.text-end .btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .new1_foto_pagination .page-link {
    min-width: 34px;
    padding: 0.35rem 0.65rem;
  }
}

@media (max-width: 360px) {
  .new1_foto_skin .row > [class*="col-6"] {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}


/*-------------------------------------------------------------------------------------------
포토앨범 view
-------------------------------------------------------------------------------------------*/
:root {
  --new1_text_strong: #0f172a;
  --new1_text_mid: #334155;
  --new1_text_muted: #64748b;
  --new1_fs_xl: 1.55rem;
  --new1_fs_lg: 1.2rem;
  --new1_fs_md: 1rem;
  --new1_fs_sm: 0.925rem;
  --new1_fs_xs: 0.86rem;
  --new1_space_base: 80px;
  --new1_space_section: 160px;
  --new1_panel_pad_x: 24px;
  --new1_panel_pad_y: 22px;
}

.new1_fotoView_page {
  background: linear-gradient(180deg, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0) 260px) no-repeat top center;
}

.new1_fotoView_header {
  margin-bottom: clamp(56px, 7vw, var(--new1_space_section));
}

.new1_fotoView_title {
  color: var(--new1_text_strong);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: var(--new1_fs_xl);
}

.new1_fotoView_subtitle {
  color: var(--new1_text_muted);
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: var(--new1_fs_md);
}

.new1_fotoView_card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.new1_fotoView_tabsWrap {
  padding: 16px 16px 0 16px;
  /*background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);*/
}

.new1_fotoView_tabs {
  border-bottom: 0;
  gap: 0.5rem;
}

.new1_fotoView_tabs .nav-link {
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--new1_text_mid);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.new1_fotoView_tabs .nav-link:hover,
.new1_fotoView_tabs .nav-link:focus {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.22);
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
  color: var(--new1_text_strong);
}

.new1_fotoView_tabs .nav-link.active {
  border-color: rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  box-shadow: none;
}

.new1_fotoView_tabContent {
  padding: var(--new1_panel_pad_y) var(--new1_panel_pad_x);
}

.new1_fotoView_panel {
  padding-top: clamp(18px, 2vw, 26px);
  padding-bottom: clamp(18px, 2vw, 26px);
}

.new1_fotoView_postTitle {
  color: var(--new1_text_strong);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: var(--new1_fs_lg);
}

.new1_fotoView_hr {
  margin: 1.1rem 0;
  border-top-color: rgba(15, 23, 42, 0.08);
  opacity: 1;
}

.new1_fotoView_metaRow {
  row-gap: 0.5rem;
  margin-top: 0.85rem;
}

.new1_fotoView_metaItem {
  color: var(--new1_text_mid);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: var(--new1_fs_sm);
}

.new1_fotoView_files {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.new1_fotoView_filesLabel {
  font-weight: 900;
  color: var(--new1_text_mid);
  letter-spacing: -0.01em;
}

.new1_fotoView_fileLink {
  color: var(--new1_text_mid);
  font-weight: 750;
  text-decoration: none;
}

.new1_fotoView_fileLink:hover,
.new1_fotoView_fileLink:focus {
  color: var(--new1_text_strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.new1_fotoView_contents {
  margin-top: clamp(28px, 4vw, var(--new1_space_base));
}

.new1_fotoView_contentsInner {
  /*border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #ffffff;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);*/
  color: var(--new1_text_strong);
  letter-spacing: -0.01em;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.new1_fotoView_galleryGrid {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.new1_fotoView_galleryItem {
  display: block;
  text-decoration: none;
  color: inherit;
}

.new1_fotoView_galleryThumb {
  aspect-ratio: 4 / 3;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.new1_fotoView_galleryThumb::before {
  content: none !important;
  display: none !important;
}

.new1_fotoView_galleryThumb img.new1_fotoView_galleryImg,
.tz-gallery .new1_fotoView_galleryThumb img {
  position: static !important;
  inset: auto !important;
  float: none !important;
  display: block !important;
  place-self: center !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transition: transform 160ms ease, filter 160ms ease;
}

.new1_fotoView_galleryItem:hover .new1_fotoView_galleryThumb,
.new1_fotoView_galleryItem:focus .new1_fotoView_galleryThumb {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.14);
}

.new1_fotoView_galleryItem:hover .new1_fotoView_galleryImg,
.new1_fotoView_galleryItem:focus .new1_fotoView_galleryImg {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.new1_fotoView_galleryCaption {
  margin-top: 0.75rem;
}

.new1_fotoView_galleryTitle {
  color: var(--new1_text_strong);
  font-weight: 850;
  letter-spacing: -0.01em;
  font-size: var(--new1_fs_md);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new1_fotoView_galleryMeta {
  margin-top: 0.25rem;
  color: var(--new1_text_muted);
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: var(--new1_fs_xs);
}

.new1_fotoView_galleryEmpty {
  margin-top: clamp(28px, 4vw, var(--new1_space_base));
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  color: var(--new1_text_muted);
  font-weight: 750;
}

.new1_fotoView_ripple {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.new1_fotoView_rippleList {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.new1_fotoView_rippleRow {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.new1_fotoView_rippleHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.new1_fotoView_rippleName {
  color: var(--new1_text_strong);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: var(--new1_fs_sm);
}

.new1_fotoView_rippleBubble {
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: var(--new1_text_mid);
  letter-spacing: -0.01em;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.new1_fotoView_rippleActions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.new1_fotoView_footer {
  padding: 1rem var(--new1_panel_pad_x) 1.2rem var(--new1_panel_pad_x);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.new1_btn_primary {
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  border: 0;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.new1_btn_primary:hover,
.new1_btn_primary:focus {
  color: #ffffff;
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
  transform: translateY(-1px);
}

.new1_btn_primary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14), 0 14px 28px rgba(15, 23, 42, 0.08);
}

.new1_btn_secondary {
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: var(--new1_text_strong);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.new1_btn_secondary:hover,
.new1_btn_secondary:focus {
  transform: translateY(-1px);
  background: rgba(248, 250, 252, 0.95);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
  color: var(--new1_text_strong);
}

.new1_btn_secondary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14), 0 14px 26px rgba(15, 23, 42, 0.08);
}

.new1_btn_outline {
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.new1_fotoView_textarea {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.new1_fotoView_textarea:focus {
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.new1_modal .modal-content {
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.new1_modal .modal-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

.new1_modal .modal-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--new1_text_strong);
}

.new1_modal .modal-body {
  padding-top: 18px;
  padding-bottom: 18px;
}

.new1_modal .modal-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding: 14px 18px;
  background: #ffffff;
}

.new1_modal .modal-fullscreen .modal-content {
  border-radius: 0;
  box-shadow: none;
}

#galleryLightbox .modal-body {
  padding: 0;
  background: rgba(2, 6, 23, 0.92);
}

#galleryLightbox .carousel,
#galleryLightbox .carousel-inner,
#galleryLightbox .carousel-item {
  height: calc(100vh - 140px);
}

#galleryLightbox .carousel-inner {
  overflow: hidden !important;
}

#galleryLightbox .carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  position: relative;
  width: 100%;
}

#galleryLightbox .new1_fotoView_lightboxImg {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

#galleryLightbox .carousel-caption {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.75));
  color: #ffffff;
  font-weight: 750;
  letter-spacing: -0.01em;
  text-align: center;
  width: min(92%, 720px);
  pointer-events: none;
}

@media (max-width: 768px) {
  :root {
    --new1_panel_pad_x: 12px;
    --new1_panel_pad_y: 12px;
  }

  .new1_fotoView_card {
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  }

  .new1_fotoView_tabsWrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .new1_fotoView_tabs .nav-link {
    padding: 0.5rem 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .new1_fotoView_skin {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .new1_fotoView_card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .new1_fotoView_tabsWrap {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 0;
    background: transparent;
  }

  .new1_fotoView_tabContent {
    padding-left: 0;
    padding-right: 0;
  }

  .new1_fotoView_contentsInner,
  .new1_fotoView_ripple {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .new1_fotoView_footer {
    padding: 0.85rem 0 0 0;
    border-top: 0;
    background: transparent;
  }

  .new1_fotoView_footer .col-12.col-md-6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .new1_fotoView_footer .btn {
    width: 100%;
  }
}
