@charset "utf-8";

/* tab 키 사용 시 본문 바로가기 css  */
.skip-to {
    position: absolute;
    left: 0;
    width: 100%;
    transform: translateY(-9999px);
    background: #333;
    color: #fff;
    text-align: center;
    z-index: 9999;
    text-decoration: none;
}

.skip-to:focus-visible {
    transform: translateY(0);
    padding: 1rem;  
    border: 3px solid #ff0;
    outline: none;
}

/* header */
#site-header {
    font-family: "SBAggro", sans-serif;
}

/* 상단 툴바 */
.top-bar {
    background-color: #33537c;
    text-align: right;
}

.bar-wrap {
    max-width: 1500px;
    margin: 0 auto;
}

.top-bar-link {
  display: inline-flex;
  color: #fff;
  font-size: 14px;
}

.top-bar-link i {
  font-size: 14px;
  margin-left: 2px;
}

.top-bar-link img {
    margin-left: 4px;
    width: 11px;    /* 기존 아이콘 크기와 동일하게 */
    height: 11px;
    display: inline-block;
}

.login-btn {
    display:inline-flex; 
    padding:10px; 
    background-color:#0e3565; 
    color:#ffffff; 
    cursor:pointer;
    font-size:14px;
    font-weight:500;
    border:none;
}
/* 메인 네비게이션 */
.main-nav {
    display: flow-root;
    align-items: center;
    justify-content: space-between;
    padding: 18px 15px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav-wrap {
    max-width: 1500px;
    margin: 0 auto;
}

/* 로고 */
.nav-logo {
    float: left;
}
.nav-logo img {
    height: 40px;
}

.nav-logo a {
  display: inline-block;
  padding: 4px;
  border-radius: 6px;
}

/* 메뉴 */
.nav-menu {
    display: flex;
    gap: 120px;
    line-height: 50px;
    justify-content: center;
}

.nav-menu a {
    font-weight: 600;
    font-size: 21px;
    color: #3d3d3d;
    position: relative;
}

.nav-menu a.active {
    color: #ff7f00; /* 강조 색상 */
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -23px;
    height: 3px;
    background-color: #ff7f00;
}

/* 햄버거 버튼 */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    float: right;
    padding: 0 20px;
    line-height: 53px;
}

.nav-toggle img {
    width: 24px; /* 혹은 적절한 크기 */
    height: 24px;
}

/* .nav-toggle:focus {
    outline: none;
} */

/* footer */
#site-footer {
    background-color: #ffffff;
    border-top:1px solid #c2c2c2;
    text-align: center;
}

.footer-banners {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px 0;
}

.banner-container {
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    justify-content: center;   /* 여기도 중앙 정렬 */
}

.banner-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    gap: 15px;
    /* width auto, 내부 배너 크기 따라 유동 */
}

/* 기존 .banner 스타일 유지 */
.banner img {
    height: 40px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.banner img:hover {
    opacity: 1;
}

.arrow_left, .arrow_right {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arrow_left img,
.arrow_right img {
    width: 13px;
    height: 13px;
    cursor: pointer;
    display: block;
}

/* 카피라이터 */
.footer-contact {
    background-color: #555555;
    padding: 30px 0;
}
.contact-wrap {
    max-width: 1500px;
    margin: 0 auto;
    font-weight: 300;
    color: #d6d6d6;
    text-align: left;
    display: flex;
    align-items: center;
}
.footer-logo {
    max-height:40px;
    display:block;
}
.footer-copy {

    padding:0 20px;
}
.footer-copy p {
    padding:0 0 5px 0;
}
.contact-wrap span {
    padding:0 5px 0 0;
}

/* 우측 사이드 메뉴 기본 스타일 */
.right-menu {
    position: fixed;
    top: 0;
    right: -300px; /* 처음에는 화면 밖에 위치 */
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 30px 20px;
}

/* 메뉴 열릴 때 클래스 */
.right-menu.open {
    right: 0;
}

/* 닫기 버튼 */
.right-menu .close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

/* 메뉴 내부 링크 스타일 */
.right-menu .right-nav {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}

.right-menu .right-nav a {
    font-size: 18px;
    color: #3b5c84;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 0px;
}

/* 서브 메뉴 */
.right-sub {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.35s ease, opacity 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 12px;
}

/* 서브 메뉴 열릴 때 */
.right-sub.open {
    opacity: 1;
}

/* 드롭다운 토글 */
.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #3b5c84;
}

/* 아이콘 애니메이션 */
.dropdown-toggle i {
    transition: transform 0.3s ease;
}

/* 서브 메뉴 아이템 */
.right-menu .right-sub a{
    font-size: 16px;
    font-weight: 500;
    color: #3b5c84;
    cursor: pointer;
    margin: 0;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.right-menu .right-sub a:hover {
    background-color: #f0f4ff;
    color: #1f3d7a;
}

/* 토글 활성화 색상 */
.right-nav > .dropdown-toggle.active {
    color: #ff7f00 !important;
}

/* 웹 접근성 표준에 따라 포커스된 요소에 눈에 띄는 테두리 스타일 주기  */
a:focus-visible:not(.roll_hidden a),
button:focus-visible,
.btn:focus-visible
{
    outline: 2px solid #7fa3cc;
    outline-offset: 6px;
    border-radius: 6px;
    transition: outline-offset 0.2s ease-in-out;
}

.search-select:focus-visible,
.search-input:focus-visible {
    outline: 2px solid #7fa3cc;
    outline-offset: 4px;
    border-radius: 6px;
    transition: outline-offset 0.2s ease-in-out;
}

/* footer 배너 스타일 */
.festival_news {
    background-color: #f8f8f8;
    overflow: hidden;
}

.festival_news .inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.roll_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:10px;
}

.roll_hidden {
    overflow: hidden;
    flex: 1;
    width: 100%;
}

.roll_hidden ul {
    display: flex;
    gap: 50px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    align-items: center;
    padding: 10px 10px 10px 20px;
}

.roll_hidden li {
    flex: 0 0 auto;
    width: 160px;
}

.roll_hidden img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.roll_hidden img:focus-visible
{
    outline: 2px solid #7fa3cc;
    outline-offset: 6px;
    border-radius: 6px;
    transition: outline-offset 0.2s ease-in-out;
}

.roll_util {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.roll_util a {
    display: flex;
    align-items: center;
    justify-content: center;
    color:#666666;
    font-size:1.3rem;
}

.roll_util a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.banner-text {
    color:#666666;
    font-size:1rem;  
}
.blind23 {
    position: absolute;
    left: -9999px;
}
/* 반응형 처리 */
/* 반응형 */
@media (max-width: 1499px) {
    .nav-menu {
        gap:70px;
    }
}
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        justify-content: space-between;
    }

    .nav-logo {
        flex-shrink: 0;
    }
    
    /* footer 배너 이미지 스타일  */
    .festival_news {
        padding: 15px 0;
    }
    
    .festival_news .inner {
        padding: 0 20px;
    }
    
    .roll_hidden ul {
        gap: 16px;
    }
    
}


/* 반응형 처리 */
@media (max-width: 767px) {
    .footer-banners {
        overflow: hidden;
        height: 65px;
    }
    .contact-wrap {
        flex-direction:column;
        align-items: center;
        text-align: center;
        font-size: 0.9rem
    }
    .footer-branding img {
        text-align: center;
    }
    
    /* footer 배너 이미지 스타일  */
    .festival_news {
        padding: 10px 0;
    }
    
    .festival_news .inner {
        padding: 0 15px;
    }
    
    .roll_hidden ul {
        gap: 12px;
    }
    
    .roll_hidden li {
        width: 120px;
    }
    .tab1{
        display: none;
    }
}

/* 관리자 top메뉴,로고 */
.admin-top {
    display:flex;
    justify-content: space-between;
    border-bottom: 1px solid #dddddd;
    background: #f4f5f9;
    height: 60px;
}
.admin-logo {
    width:300px;
    display:flex;
    align-items: center;
    padding-left:8px;
}

.admin-logo img {
    cursor:pointer;
}

.top-right {
    color:#000000;
    display:flex;
    align-items: center;
    gap:10px;
}
.top-right > p {
    cursor:pointer;
    padding:0 5px;
}
.top-right > p:hover {
    color:#21446f;
    text-decoration:underline;
}
/* 왼쪽메뉴 오른쪽메뉴 */
.layout {
    display: flex;
    min-height: 100vh;
    flex-wrap: nowrap; /* 줄바꿈 방지 */
}

/* 관리자 왼쪽메뉴 */
aside {
    background: #3b5c84;
    color: #ffffff;
    width: 300px;
    flex-shrink: 0;
    transition: left 0.3s ease-in-out;
}

.admin-menu ul {
    list-style: none;
    padding: 0;
}

.admin-menu ul li {
    padding: 15px 20px 15px 40px;
    cursor: pointer;
    font-size:16px;
}

.admin-menu ul:not(:first-child) li:hover {
    background: rgba(255,255,255,0.1);
}

.admin-menu-hover {
    background: rgba(255,255,255,0.1);
}

/* 햄버거 버튼 */
.admin-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    float: right;
    padding: 0 15px 0 5px;
    line-height: 53px;
}

.admin-nav-toggle img {
    width: 24px; /* 혹은 적절한 크기 */
    height: 24px;
}

/* 닫기 버튼 */
.admin-menu ul:first-child {
    pointer-events: none;
    display:none;
}

.admin-menu ul:first-child li{
    height: 45px;
}

.admin-close-btn {
    pointer-events: auto;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 15px;
}

.menu-title {
    padding-left:30px;
    background:#21446f;
    color:#e9e9e9;
    font-weight:600;
}

.smenu-title {
    padding: 15px 20px 15px 48px;
}

/* 세번째 메뉴 */
.smenu_depth3 {
    box-sizing: border-box; 
    cursor:pointer;
    max-height: 0;           /* 처음엔 닫힘 */
    overflow: hidden;        /* 내용 숨기기 */
    transition: max-height 0.35s ease; /* 부드럽게 열림/닫힘 */
}
.smenu_depth3_area{
    margin: 5px 20px; 
    padding: 0px 28px; 
}

.smenu_depth3_area > p {
    line-height:35px;
}

.smenu_depth3_area > p:hover {
    text-decoration: underline;
}
.smenu_depth3_p {
	text-decoration: underline;
}
/* 관리자 메뉴 */
.admin-main {
    flex: 1; /* 남는 공간 차지 */
    box-sizing: border-box;
    min-width: 0; /* flex item 넘침 방지 */
    display: flex;
    flex-direction: column; /* 본문과 푸터를 세로로 배치 */
}

.admin-cont {
    flex: 1;               /* 푸터 위쪽 영역을 꽉 채움 */
    padding: 25px;         /* 기존 여백 유지 */
    /*overflow-y: auto;*/      /* 기존 스크롤 유지 */
}

.footer {
    text-align: center;
}

@media (max-width: 1024px) {
    .admin-top {
        display: block;
        height: 100px;
    }
    .admin-logo {
    	width:100%;
    	padding-left:14px;
    }
    .top-right {
        display: flex;
        justify-content: flex-end;
        padding: 10px;
        border-bottom:1px solid #dddddd;
        background:#ffffff;
    }

    /* 햄버거 버튼 */
    .admin-nav-toggle {
        display: block;
        line-height:58px;
    }
    
    /* 좌측 메뉴 */
    aside {
        position: absolute;
        left: -300px !important;
    }
    
    /* 좌측 메뉴 오픈 */
    aside.open {
        left: 0 !important;
        box-shadow: 6px 0 6px rgba(0, 0, 0, 0.15) !important;
        z-index: 99999;
    }
    
    /* 좌측 메뉴 닫기 버튼 */
    .admin-menu ul:first-child {
        display:block;
    }
}

/* 오른쪽 사업성과관리시스템 퀵메뉴 */
.quick-btn{
    width:130px;
    height:130px;
    border-radius: 20px 0 0 20px;
    position: fixed;
    top: 20vh;
    right: 0;
    z-index:10;
    background:linear-gradient(90deg, #3F80EA, #2AC9A4);
    box-shadow: 0.5px 0.5px 12px #2b2b2b;
    color:white;
    padding:10px;
    display:flex;
    flex-direction: column;
    gap: 10px;
    align-items:center;
    justify-content:center;
    text-align:center;
    
}
.quick-btn:hover {
    transform: scale(1.05);
    transition: 0.1s;
}
.quick-btn > p {
    font-size: 18px;
    font-family: 'SBAggro', sans-serif;
    font-weight: 600;
    padding-top:0.7rem;
}
.quick-btn > span {
    background: #004dca; 
    padding:0.5rem 1rem 0.4rem 1rem; 
    border-radius:20px;
    font-family:'SBAggro', sans-serif; 
    font-size:15px; 
    font-weight:600; 
    text-align:center;
    color:#ffffff;
}
.quick-btn > i {
    font-size: 1.2em;
}
@media (max-width: 767px) {
    .quick-btn{
        width:100px;
        height:100px;
        top:15vh;
    }
    .quick-btn > p {
        font-size:14px;
    }
    .quick-btn > span {
        font-size:12px;
    }
}
@media (max-width: 480px) {
    .quick-btn{
        display:none;
    }
}
/* 메인화면 */
/* 퀵메뉴 및 사업공고 */
.middle-section1 {
    width:100%;
    padding:40px 0;
    background: #ffffff;
}
.quick-wrap {
    max-width: 1500px;
    margin:0 auto;
    background:transparent;
    padding: 30px 0 60px 0;
}
.quick-wrap > .inner {
    display:flex; 
    gap:22px;
}
.project-card {
    width: 50%;
    height:300px;
    background: #ffffff;
    border-radius: 0 0 0 30px;
    padding: 28px 32px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    border:1px solid #dddddd;
}
.project-header {
    position: relative;
    display: flex;
    justify-content: center;  /* 제목 가운데 유지 */
    align-items: center;
    margin-bottom: 20px;
}
.project-header > .title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color:#111111;
    font-family: "SBAggro", sans-serif;
}
.control {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}
.project-card > .row {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 14px;
}

.project-card .status-row {
    margin-bottom: 22px;
}

.status {
    background: #153861;
    color: #ffffff;
    padding: 6px 22px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
}

.quick-menu {
    width:50%;
    display: flex;
    justify-content: flex-end;
}
.quick-inner1,
.quick-inner2 {
    width:50%; 
    height:300px; 
    display:flex;
    flex-direction: column;   /* 세로 정렬 */
    justify-content: center;  /* 세로 기준 가운데 */
    align-items: center;      /* 가로 기준 가운데 */
    cursor:pointer;
}
.quick-inner1 a,
.quick-inner2 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.quick-inner1 {
    background:#153861; 
}
.quick-inner1 p,
.quick-inner2 p {
    line-height:2.5rem;
    color:#ffffff;
    font-size:22px;
    font-weight:600;
    font-family:'SBAggro', sans-serif;
}
.quick-inner1 span {
    color:#ffffff;
    font-size:18px;
}
.quick-inner2 {
    background:#226abe; 
}
.main-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.label-text {
    width: 90px;
    background: #f4f5f9;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 17px;
    color: #153861;
    text-align: center;
}

.value {
    font-size: 18px;
    color: #373737;
    font-weight: 600;
}

/* 알림마당 섹션 */
.middle-section2 {
    width:100%;
    padding:40px 0;
    background: #f4f5f9;
}
.notice-wrap{
    max-width: 1500px;
    margin:0 auto;
    background:transparent;
    padding: 30px 0 60px 0;
}

.notice-header{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:22px;
    padding-left:6px;
}
/* 알림마당 텍스트 */
.title-main{
    font-size:30px;
    font-weight:700;
    color:#111111;
    margin-right:auto;
    font-family: "SBAggro", sans-serif;
}
/* 기본 PC에서는 화살표 숨김 */
.tab-arrow {
    display:none;
    background:none;
    border:0;
    cursor:pointer;
    font-size:22px;
    color:#111;
}
.alarm_tabs_wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}
/* 공지사항,자주하는질문,자료실 탭 */
.alarm_tabs{
    display:flex;
    gap:18px;
    align-items:center;
    font-weight:600;
    color:#7b8794;
    font-family: "SBAggro", sans-serif;
    flex: 1;   /* 공간을 차지하면서 플러스를 밀어내지 않도록 */
}

.alarm_tabs .alarm_text {
    background:none;
    border:0;
    padding:10px 8px;
    cursor:pointer;
    font-size:20px;
    border-bottom:3px solid transparent;
}
.alarm_tabs .alarm_text:hover {
    color: #ff9f1a;
    border-bottom-color: #ff9f1a;
    font-weight: 600;
}
.alarm_tabs .alarm_text.active {
    color: #ff9f1a;
    border-bottom-color: #ff9f1a;
    font-weight: 600;
}
.circle-btn-more{
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid rgba(0,0,0,0.08);
    flex-shrink: 0;    /* 줄바꿈 방지 */
    display: flex;
    align-items:center;
    justify-content:center;
    background:white;
    cursor:pointer;
}

/* 두 열 레이아웃: 왼쪽 공지, 오른쪽 리스트 (각각 그리드) */
.notice-grid {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items:stretch;
}

.card-column {
    display:flex;
    flex-direction:column;
    gap:25px;
}

.notice-card {
    background: #ffffff;
    border-radius:20px;
    padding:20px;
    box-shadow: 0 3px 6px #7e7e7e;
    display:grid;
    gap:14px;
    height:165px;
    cursor: pointer;
}

.notice-badge{
    background: rgba(43,103,214,0.06);
    color: #2b67d6;
    padding:9px 0 4px 0;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    width:140px;
    align-items:center;
    box-sizing:border-box;
}

.notice-content{
    width: 100%;
    font-size: 18px;
    color: #222222;
    padding-left: 15px;

    /* 한 줄 말줄임 전용 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-meta{
    color: #7b8794;
    font-size:18px;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:6px;
}

.notice-meta .date{
    display:flex;
    align-items:center;
    gap:8px;
}

.notice-meta .new{
    background: #ff9f1a;
    color:white;
    font-weight:700;
    padding:4px 8px;
    font-size:12px;
    border-radius:8px;
}
/* 보도자료,갤러리 채널 섹션 */
.middle-section3 {
    width:100%;
    background: #ffffff;
}
.sns-section{
    max-width: 1500px;
    margin:40px auto;
    background:transparent;
    padding: 30px 0 60px 0;
    overflow: hidden;    
}
.sns-header{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:22px;
    padding-left:6px;
}
.sns-title{
    font-size:30px;
    font-weight:700;
    color:#111111;
    margin-right:auto;
    font-family: "SBAggro", sans-serif;
}

.sns-sub{
    color:#7b8794;
    margin-bottom:18px;
}

.sns-grid {
    display: flex;          /* 가로 배치 */
    gap: 18px;              /* 카드 간격 */
    transition: transform 0.6s ease;
    padding: 0px 5px;
}

.sns-card {
    flex: 0 0 calc(25% - 13.5px); /* 4개씩 보이도록, gap을 뺀 너비 */
    background: #ffffff;
    border-radius: 14px;
    padding: 12px;
    height: 370px;
    box-shadow: 0 3px 6px #dddddd;
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    cursor: pointer;
}

.sns-thumb {
	aspect-ratio: 10/10;  /* 원하는 비율 */
	overflow: hidden;
    width:100%;
    border-radius:10px;
    display:block;
    background:#eee;
}
.sns-thumb img {
    width:100%;
    height:100%;
    object-fit:cover;
}
.sns-meta{
    display:grid;
    align-items:flex-start;
    gap:15px;
}

.sns-date {
    font-size:18px;
    color:#7b8794;
    text-align:right;
}

.sns-title-card {
    font-weight:700;
    font-size:19px;
    line-height:1.3;
    color:#222;
    height:45px;
}
/* 카드가없을시 */
.card-none {
    background: #eeeeee;
    flex: 0 0 calc(25% - 13.5px); /* 4개씩 보이도록, gap을 뺀 너비 */
    border-radius: 14px;
    padding: 12px;
    height: 370px;
    box-shadow: 0 3px 6px #dddddd;
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
.card-none > img {
    width:20vh;
    opacity:0.5;
}
/* 알림마당 카드가없을시 */
.notice-none {
    background: #eeeeee;
    flex: 0 0 calc(25% - 13.5px); /* 4개씩 보이도록, gap을 뺀 너비 */
    border-radius: 20px;
    padding: 12px;
    height: 164px;
    box-shadow: 0 3px 6px #dddddd;
    border: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
.notice-none > img {
    width:20vh;
    opacity:0.5;
}
/* 작은 화살표(간단한 carousel control 처럼 보이게) */
.carousel-controls {
    display:flex;
    gap:8px;
    margin-left:auto;
}
.circle-btn {
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid rgba(0,0,0,0.08);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:white;
    cursor:pointer;
}
.circle-btn-more:hover,
.circle-btn:hover {
    color:#2b67d6;
}
/* hover 효과: 살짝 떠오름 */
.project-card:hover,
.notice-card:hover,
.sns-card:hover,
.quick-inner1:hover,
.quick-inner2:hover  {
    transform:translateY(-3px);
    box-shadow:0 3px 6px #7e7e7e;
    cursor:pointer;
}

/* 반응형 */
@media (max-width:1024px) {
    .quick-wrap > .inner {
	    flex-direction:column;
	}
	.project-card {
	    width:100%;
	}
	.quick-menu {
	    width:100%;
	}
	.quick-inner1,
	.quick-inner2 {
	    width:50%;
	}
    .middle-section2 {
        max-width:100%;
    }
    .sns-card, .card-none{
        flex: 0 0 calc(33.333% - 12px); /* 3개 */
    }
}

@media (max-width:821px) {
    .quick-wrap {
        padding-bottom:30px;
    }
    .project-header > .title {
        font-size:26px;
    }
	.project-card {
		width: 100%;
		padding:25px;
	}
	.project-card > .row {
	    gap:10px;
	}
	.status {
	    font-size:17px;
	}
	.main-text {
	    font-size:17px;
	}
	.value {
	    font-size:17px;
	}
	.quick-inner1,
	.quick-inner2 {
	    width:100%;
	    height:200px;
	}
	.quick-inner1 img,
	.quick-inner2 img {
	    width:15vh;
	}
	.quick-inner1 span {
	    font-size:14px;
	}
	.quick-inner1 p,
	.quick-inner2 p {
	    font-size:18px;
	}
	.quick-wrap > .inner {
	    flex-direction:column;
	}
	.notice-header {
	    flex-direction:column;
	}
    .notice-grid {
        grid-template-columns:1fr;
    }
    .notice-none {
        display: none;
    }
    .sns-meta {
        gap:5px;
    }
    .sns-title-card {
        height:30px;
        font-size:17px;
        overflow:hidden;
        white-space: nowrap;
        text-overflow:ellipsis;
        display:inline-block;
    }
    .sns-card, .card-none {
        flex: 0 0 calc(50% - 9px); /* 2개 */
        height:280px;
    }
    .card-none > img {
        width:15vh;
    }
    .notice-none > img {
        width:15vh;
    }
    .title-main {
        font-size:26px;
    }
    .sns-title {
        font-size:26px;
    }
    .notice-content {
       overflow:hidden;
       white-space: nowrap;
       text-overflow: ellipsis; /* ... 처리 */
       display:inline-block;
    }
}

@media (max-width:480px) {
    .middle-section1 {
        padding:40px 15px;
    }
    .project-card {
         height:280px;
    }
    .project-card .status-row {
        margin-bottom:14px;
        gap:5px;
    }
    .project-header > .title {
        font-size:22px;
    }
    .status {
        width:80px;
        padding:5px;
        text-align:center;
    }
    .main-text {
        /* 한 줄 말줄임 전용 */
	    white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
    }
    .project-card > .row {
        gap:5px;
    }
    .quick-inner2 {
        display:none;
    }

    .quick-inner1 {
        border-radius:20px;
        box-shadow:0 6px 15px rgba(0,0,0,0.08);
    }
    .quick-inner1 a {
        padding:0 10px;
    }
    .quick-inner1 p {
        font-size:18px;
    }
    .label-text {
        font-size:15px;
    }
    .value {
        font-size:15px;
    }
    .middle-section2 {
        padding:0 15px;
    }
    .promo {
        font-size:12px;
    }
    .alarm_tabs_wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    /* 탭은 가운데에서만 스크롤되도록 flex:1 */
    .alarm_tabs {
        flex: 1;
        overflow-x: auto;
        white-space: nowrap;
        scroll-behavior: smooth;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .alarm_tabs::-webkit-scrollbar {
        display: none;
    }

    /* 화살표 버튼 */
    .tab-arrow {
        width: 30px;
        height: 30px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        flex-shrink: 0;
    }
    .tab-arrow:hover {
        color:#2b67d6;
    }
    /* ★ 플러스 버튼: 같은 라인에 위치시키기 */
    .alarm_tabs_wrapper .circle-btn-more {
        width: 30px;
        height: 30px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;    /* 스크롤될 때 줄 밖으로 밀리지 않도록 */
    }
    .alarm_tabs .alarm_text {
        font-size:18px;
    }
    .notice-content {
        font-size: 17px;
        padding-left:0;
        overflow:hidden;
        white-space: nowrap;
        text-overflow:ellipsis;
        display:inline-block;
        height:40px;
    }
    .notice-meta {
        font-size:17px;
    }
    .sns-section {
        margin:0;
        padding:30px 15px;
    }
    .sns-header {
        padding-left:0;
    }
    .sns-grid {
        padding:0;
    }
    .sns-title {
        font-size:22px;
    }
    .sns-card {
        flex: 0 0 100%; /* 1개 */
        height:265px;
    }
    .sns-thumb {
        aspect-ratio:4/2;
    }
    .sns-meta {
        gap:5px;
    }
    .sns-title-card {
        height:30px;
        font-size:17px;
        overflow:hidden;
        white-space: nowrap;
        text-overflow:ellipsis;
        display:inline-block;
    }
    .sns-date {
        font-size:17px;
    }
    .notice-card {
        padding:14px; 
        height:150px;
        gap:5px;
    }
    .notice-badge {
        padding:0; 
        font-size:15px;
        width:100px;
        justify-content:center;
        height:30px;
    }
    .card-none {
        flex: 0 0 100%; /* 1개 */
        height:265px;
    }
}
