@charset "UTF-8";

.corp-map {
    margin-top: 95px;
}

.roughmap_wrapper {
    position: relative;
    width: 100%;
    /* 1. 기본적으로 마우스 이벤트를 통과시킴 (스크롤이 됨) */
    pointer-events: none;
    transition: background 0.3s;
}

.roughmap_wrapper:hover {
    /* 2. 마우스를 올렸을 때만 지도를 조작할 수 있게 함 */
    pointer-events: auto;
}

/* 3. 스크롤 중일 때 강제로 마우스를 무시하게 만들 클래스 */
.scrolling {
    pointer-events: none !important;
}


/* ==========================================================================
   이전-다음
========================================================================== */
.overflow-hidden {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-nav__prev.overflow-hidden {
    padding-right: 37px;
}

.article-nav__next.overflow-hidden {
    padding-left: 37px;
}

/* 2-line text clamp utility */
.text-overflow-2line {
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.board-thumb-grid__title {
    min-height: 3em;
}


/* ==========================================================================
   공유하기 모달 (share-modal)
   ========================================================================== */
@keyframes shareModalIn {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.share-modal.open {
    display: flex;
}

.share-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    animation: showOpacity 0.2s forwards;
}

.share-modal__content {
    position: relative;
    width: 420px;
    max-width: calc(100% - 32px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: shareModalIn 0.3s ease-out forwards;
    overflow: hidden;
}

.share-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e8e8e8;
}

.share-modal__title {
    font-size: 18px;
    font-weight: 700;
    color: #1d222c;
}

.share-modal__close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.share-modal__close:hover {
    background-color: #f0f0f0;
}

.share-modal__body {
    padding: 28px 24px;
}

.share-modal__platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.share-modal__platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.share-modal__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.share-modal__platform:hover .share-modal__icon {
    transform: scale(1.1);
}

.share-modal__icon--kakao {
    background-color: #FEE500;
}

.share-modal__icon--line {
    background-color: #00B900;
}

.share-modal__icon--naver {
    background-color: #03C75A;
}

.share-modal__icon--facebook {
    background-color: #1877F2;
}

.share-modal__label {
    font-size: 12px;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.share-modal__url-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f5f7fa;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
}

.share-modal__url-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 13px;
    color: #666;
    outline: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
    height: auto;
}

.share-modal__url-btn {
    flex-shrink: 0;
    padding: 6px 16px;
    background-color: #004ec3;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.share-modal__url-btn:hover {
    background-color: #003a94;
}

.share-modal__feedback {
    display: none;
    text-align: center;
    font-size: 13px;
    color: #00a86b;
    margin-top: 10px;
}

.share-modal__feedback.show {
    display: block;
    animation: showOpacity 0.2s forwards;
}


/* ==========================================================================
   팝업 모달 (popup-modal)
   ========================================================================== */
@keyframes popupModalIn {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.popup-modal.open {
    display: flex;
}

.popup-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    animation: showOpacity 0.2s forwards;
}

.popup-modal__content {
    position: relative;
    width: min(680px, calc(100vw - 32px), calc(92dvh * 2 / 3));
    aspect-ratio: 2 / 3;
    max-height: 92dvh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: popupModalIn 0.3s ease-out forwards;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.popup-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #e8e8e8;
}

.popup-modal__title {
    font-size: 18px;
    font-weight: 700;
    color: #1d222c;
}

.popup-modal__close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.popup-modal__close:hover {
    background-color: #f0f0f0;
}

.popup-modal__close_button {
    padding-right: 12px;
    font-size: var(--t16);
}

.popup-modal__body {
    padding: 14px 12px;
    border-bottom: 1px solid #e8e8e8;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
}

.popup-modal__img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.popup-modal__editor-frame {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.popup-modal__editor-content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 12px;
    white-space: pre-line;
}

.popup-modal__editor-content img,
.popup-modal__editor-content table,
.popup-modal__editor-content iframe {
    max-width: 100%;
}

.popup-modal__editor-content img {
    height: auto;
}

.popup-modal__footer {
    padding: 14px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: var(--t16);
}

.popup-modal__platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.popup-modal__platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.popup-modal__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.popup-modal__platform:hover .popup-modal__icon {
    transform: scale(1.1);
}

.popup-modal__icon--kakao {
    background-color: #FEE500;
}

.popup-modal__icon--line {
    background-color: #00B900;
}

.popup-modal__icon--naver {
    background-color: #03C75A;
}

.popup-modal__icon--facebook {
    background-color: #1877F2;
}

.popup-modal__label {
    font-size: 12px;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.popup-modal__url-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f5f7fa;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
}

.popup-modal__url-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 13px;
    color: #666;
    outline: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
    height: auto;
}

.popup-modal__url-btn {
    flex-shrink: 0;
    padding: 6px 16px;
    background-color: #004ec3;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.popup-modal__url-btn:hover {
    background-color: #003a94;
}

.popup-modal__feedback {
    display: none;
    text-align: center;
    font-size: 13px;
    color: #00a86b;
    margin-top: 10px;
}

.popup-modal__feedback.show {
    display: block;
    animation: showOpacity 0.2s forwards;
}

.popup-modal .popup-modal__item {
    display: none;
    width: 100%;
    height: 100%;
}

.popup-modal .popup-modal__item.open {
    display: flex;
    flex: 1;
    min-height: 0;
}


/* ==========================================================================
   토스트 알림 (lnb-toast)
   ========================================================================== */
@keyframes toastIn {
    0% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes toastOut {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

.lnb-toast {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    z-index: 10000;
    animation: toastIn 0.3s ease-out forwards;
    white-space: nowrap;
}

.lnb-toast.hide {
    animation: toastOut 0.3s ease-in forwards;
}

/* ==========================================================================
   인쇄 스타일 (@media print)
   ========================================================================== */
@media print {

    /* 헤더, LNB, 히어로, 푸터, 공유모달 숨김 */
    .header,
    .lnb,
    .sec-page-title,
    .footer,
    .share-modal,
    .lnb-toast {
        display: none !important;
    }

    /* 본문 영역 레이아웃 초기화 */
    #wrap {
        padding-bottom: 0;
        min-height: auto;
    }

    .content.sub {
        padding-top: 0;
        padding-bottom: 0;
    }

    .sec-cont {
        padding: 0;
    }

    /* 본문 기능 버튼(공유/즐겨찾기 등) 숨김 */
    .list-func,
    .article-nav {
        display: none !important;
    }

    /* 배경색·그림자 제거 */
    body,
    #wrap,
    .container,
    .content {
        background: #fff !important;
        box-shadow: none !important;
    }
}

.main-cal-day:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.main-cal-day.selected {
    background-color: #e0e0e0;
}


/**
 * 문서 이미지 너비 정의
 */
.article-block .announce-detail * {
    font-size: var(--t16) !important;
}

.article-block .announce-detail {
    width: 100%;
    max-width: 100%;
}

.article-block .announce-detail__content {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.article-block .announce-detail__table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.article-block .announce-detail__table-scroll table {
    width: max-content;
    min-width: 100%;
    max-width: none;
}

.article-block .announce-detail__table-scroll table td,
.article-block .announce-detail__table-scroll table th {
    padding: 4px 8px;
}

.article-block .announce-detail__content pre {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
}

.article-block .announce-detail__content iframe,
.article-block .announce-detail__content video,
.article-block .announce-detail__content embed,
.article-block .announce-detail__content object,
.article-block .announce-detail__content img {
    max-width: 100% !important;
    height: auto !important;
}

.article-block .announce-detail__content a {
    overflow-wrap: anywhere;
}

.article-block img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
}

/* ==========================================================================
   기관정보 보드
   ========================================================================== */

.corp-board {
    margin-top: 95px;
    column-gap: 50px;
    -ms-column-gap: 50px;
}


.corp-board__group {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 60px;
    border-bottom: 1px solid #ddd;
}

.corp-board__title {
    margin-top: 5px;
    color: #000;
    font-family: Paperlogy;
    font-size: var(--t40);
    font-weight: 700;
    line-height: 120%;
}

.corp-board__desc {
    margin-top: 19px;
    color: #999;
    font-size: var(--t20);
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.4px;
}

.corp-board__item-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #ddd;
}

.corp-board__item {
    display: grid;
    /* 좌측: 최소 200px, 콘텐츠가 많아지면 늘어남 / 우측: 나머지 전부 */
    grid-template-columns: minmax(300px, auto) 1fr;
    gap: 20px;
}

.corp-board__item-heading {
    color: #000;
    font-family: Paperlogy;
    font-size: var(--t24);
    font-weight: 700;
    margin-left: 18px;
}

.cop-board__item-content {
    display: flex;
    flex-direction: column;
}

.corp-board__item-content__heading {
    color: #000;
    font-family: Paperlogy;
    font-size: var(--t22);
    font-weight: 700;
}

.corp-board__item-content-list {
    margin-left: 25px;
    padding-top: 12px;
}

.corp-board__item-content-list__item {
    color: #999;
    padding-top: 11px;
    font-weight: 700;
    font-size: var(--t18);
    /*padding-bottom: 12px;*/
}

.corp-board__item-content-list__item:before {
    content: "•";
    /* 불렛 문자 입력 */
    display: inline-block;
    width: 1em;
    /* 영역 확보 */
    margin-left: -1em;
    font-size: 0.9em;
    /* 여기서 크기 조절! */
    vertical-align: middle;
    /* 텍스트와의 정렬 */
}


@media screen and (max-width: 1023px) {
    .corp-board {
        margin-top: 50px;
        grid-template-columns: repeat(1, 1fr);
        -ms-grid-template-columns: repeat(1, 1fr);
        column-gap: 20px;
        -ms-column-gap: 20px;
        row-gap: 20px;
        -ms-row-gap: 20px;
    }

    .corp-board__item {
        display: flex;
        /* 좌측: 최소 200px, 콘텐츠가 많아지면 늘어남 / 우측: 나머지 전부 */
        flex-direction: column;
        gap: 20px;
    }

    .corp-board__item-heading {
        margin-left: 0;
    }

}

/* ==========================================================================
   기관정보 보드
   ========================================================================== */

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: opacity 0.3s;
    transform: rotate(180deg);
    transform-origin: center;
    /* 중심점을 기준으로 회전 */
}


/* ==========================================================================
   기관정보 보드
   ========================================================================== */
.sec-vision {
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* ==========================================================================
   Calendar Item Marquee Effect
   ========================================================================== */
.main-cal-day__item {
    display: block;
    text-align: left;
}

.main-cal-day__item.is-overflowing {
    text-overflow: clip !important;
    /* Remove ellipsis to fully scroll */
}

.main-cal-day__item.is-overflowing .marquee-text {
    display: inline-block;
    animation: text-marquee-custom var(--marquee-dur, 3s) linear infinite alternate;
}

@keyframes text-marquee-custom {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--marquee-dist));
    }
}

.lnb {
    position: fixed;
    transition: All 0.3s ease-out;
    -webkit-transition: All 0.3s ease-out;
    -moz-transition: All 0.3s ease-out;
    -o-transition: All 0.3s ease-out;
    top: var(--header-height);
}

.lnb.fixed {
    top: var(--header-base-height);
}


.sec-page-title {
    /* 기존 80px이었으나 lnb높이만큼 추가 */
    padding-top: 137px;
}

.sec-corp-title {
    padding-top: 239px;
}

.invisible {
    visibility: hidden;
}

.sec-corp-nav {
    margin-top: 30px;
    padding: 30px 10px 20px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.sec-corp-nav__list {
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: var(--t16);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.16px;
    padding: 18px 40px;
    border-radius: 30px;
    background: rgb(0, 102, 255);
}

.grid-list__item--read .grid-list__link {
    background-color: #f6f8fc;
    border-color: #d8deea;
}

.grid-list__item--read .grid-list__link:hover {
    background-color: #eef2f9;
    border-color: #c5cfdf;
}

.grid-list__title--read {
    color: #70798a;
}

.grid-list__info {
    min-height: calc(var(--t15) * 3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.grid-list__read-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid #9aa7bf;
    color: #50607b;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.detail-read-text {
    margin-right: 8px;
    color: #004ec3;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.schedule-filter-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.schedule-filter-group__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-filter-group__label {
    color: #333;
    font-size: var(--t15);
    font-weight: 600;
    line-height: 150%;
}

.filter-custom-days {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-custom-days__input {
    width: 90px;
    height: 38px;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    padding: 0 10px;
    color: #333;
    font-size: var(--t15);
}

.filter-custom-days__text {
    color: #555;
    font-size: var(--t14);
    line-height: 150%;
}

.filter-amount-range {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-action-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    right: 0;
    bottom: calc(100% + 20px);
}

.filter-action-btns .filter-hidden-btn {
    position: relative;
    bottom: auto;
    right: auto;
}

.filter-action-btns .btn-open-personal-settings {
    padding-right: 0;
}

.filter-action-btns .btn-open-personal-settings svg {
    width: 30px;
    height: 30px;
    margin-right: 6px;
}

.filter-action-btns .btn-open-personal-settings::after {
    display: none;
}

.personal-settings-modal__content {
    width: 680px;
    max-width: calc(100% - 32px);
}

.personal-settings-modal__row {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.personal-settings-modal__row:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.personal-settings-modal__label {
    color: #222;
    font-size: var(--t16);
    font-weight: 600;
    margin-bottom: 10px;
}

.personal-settings-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px;
}

.personal-settings-modal__actions .btn-ui {
    min-width: 96px;
    height: 40px;
    padding: 0 16px;
    font-size: var(--t14);
    line-height: 40px;
}

@media screen and (max-width: 1279px) {
    .sec-page-title {
        padding-top: 90px !important;
    }
}

@media screen and (max-width: 767px) {
    .filter-action-btns .btn-open-personal-settings svg {
        width: 23px;
        height: 23px;
        margin-right: 0;
    }
}


/* ==========================================================================
   지도 줌인/줌아웃
   ========================================================================== */

.js-map-zoom-guard .map-zoom-guide {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    opacity: 0;
    padding: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.08);
    pointer-events: auto;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.js-map-zoom-guard .map-zoom-guide span {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.72);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}

.js-map-zoom-guard:not(.is-map-active):hover .map-zoom-guide {
    opacity: 1;
}

.js-map-zoom-guard.is-map-active .map-zoom-guide {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   공고 상세 상단 체크 버튼 (읽음/읽지않음 토글)
========================================================================== */
.list-func__btn--check {
    background-image: url(../img/assets/ico-func-check.svg);
    background-color: #d4d4d4;
}

.list-func__btn--check.active {
    background-color: #4ad0c1;
}

/* ==========================================================================
   메인 HOT&NEW 공고 카드 높이 보정
========================================================================== */
.result-hot-announce .hot-grid-list.swiper-wrapper {
    align-items: stretch;
}

.result-hot-announce .hot-announce-slider__item.swiper-slide {
    height: auto;
}

.result-hot-announce .hot-grid-list__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.result-hot-announce .hot-grid-list__info {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.result-hot-announce .hot-grid-list__info .grid-data {
    margin-top: auto;
    min-height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.result-hot-announce .hot-grid-list__info .grid-data dl {
    min-width: 0;
}

.result-hot-announce .hot-grid-list__info .grid-data dd {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.grid-data dd {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thumb-grid__item {
    min-width: 0;
}

@media screen and (max-width: 1023px) {
    .article-nav__prev.hidden-no-data {
        display: none;
    }
    .article-nav__next.hidden-no-data {
        display: none;
    }
}


.hero-slider__title .hero-slider__logo{
    width:250px;
}

@media screen and (max-width: 1279px) {
    .hero-slider__title .hero-slider__logo{
        width:140px;
    }
}

/* ==========================================================================
   사업 소개 영상 퍼블 및 반응형 처리
========================================================================== */
.business-detail-video {
    width: 100%;
    max-width: 1200px;
    margin: 48px auto 0;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.business-detail-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

@media all and (max-width: 1024px) {
    .business-detail-video {
        margin-top: 36px;
        border-radius: 16px;
    }
}

@media all and (max-width: 767px) {
    .business-detail-video {
        margin-top: 28px;
        border-radius: 12px;
    }
}



/* ==========================================================================
   메인 하단 협의체 목록
========================================================================== */
.partner-marquee__item{
    cursor: pointer;
}

/* ==========================================================================
   에러 페이지 (400, 404, 500)
========================================================================== */
.sec-error {
    padding: 0;
}

.sec-error__cont {
    padding: 0 var(--base-padding);
}

.error-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0 80px;
}

/* hero 없는 에러 페이지 전용 여백 균형 */
.content.error-page {
    padding-bottom: 80px;
}

.content.error-page .sec-error {
    padding-top: 60px;
}

/* 에러 페이지 버튼 — 일반 btn-ui(64px)보다 작게 */
.error-box .btn-ui {
    height: 40px;
    line-height: 40px;
    min-width: 160px;
    font-size: var(--t16);
    font-weight: 600;
    border-radius: 8px;
}

.error-box__icon {
    margin-bottom: 28px;
}

.error-box__code {
    font-size: 80px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.error-box__title {
    font-size: var(--t24);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.error-box__desc {
    font-size: var(--t16);
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.error-detail {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 32px;
    font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', monospace;
    font-size: 13px;
    margin-bottom: 60px;
}

.error-detail__title {
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 16px;
    font-size: 14px;
}

.error-detail__table {
    width: 100%;
    border-collapse: collapse;
}

.error-detail__table th {
    padding: 6px 16px 6px 0;
    color: #6b7280;
    white-space: nowrap;
    vertical-align: top;
    font-weight: 500;
    text-align: left;
    width: 80px;
}

.error-detail__table td {
    padding: 6px 0;
    color: #374151;
    word-break: break-all;
}

.error-detail__exception {
    color: #c0392b !important;
}

.error-detail__trace-wrap {
    margin-top: 20px;
}

.error-detail__trace-title {
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 13px;
}

.error-detail__trace {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    font-size: 11px;
    color: #555;
    white-space: pre-wrap;
    word-break: break-all;
    max-height: 400px;
    overflow-y: auto;
    line-height: 1.6;
    margin: 0;
}

@media all and (max-width: 1199px) {
    .sec-error {
        padding: 80px 0;
    }

    .error-box {
        padding: 60px 0;
    }

    .error-box__code {
        font-size: 60px;
    }
}

@media all and (max-width: 767px) {
    .sec-error {
        padding: 60px 0;
    }

    .error-box {
        padding: 40px 0;
    }

    .error-box__code {
        font-size: 48px;
    }

    .error-detail {
        padding: 20px;
    }
}

.announce-info__btn-apply {
    padding: 3px 10px;
    border-radius: 5px;
    border: 1px solid #004ec3;
    background: #f5f7fa;
    color: #004ec3;
    font-size: var(--t14);
    font-weight: 700;
    letter-spacing: -0.16px;
    margin-left: 2px;
}


/* ==========================================================================
   STC-115 회원가입 아이디 안내 문구 수정
========================================================================== */

/* 힌트 텍스트를 항상 입력창 아래에 표시 */
.form-basic__noti {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
}

/* 성공 메시지 */
.form-basic__success {
    width: 100%;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: margin-top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-basic__success.visible {
    margin-top: 10px;
    max-height: 100px;
    opacity: 1;
}

.form-basic__success p {
    color: #5390da;
    font-size: var(--t15);
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.15px;
    position: relative;
    padding-left: 25px;
}

.form-basic__success p::before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/assets/ico-form-success.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


.hot-announce-copy__title{
    cursor: pointer;
}

.hot-announce-copy__desc{
    cursor: pointer;
}