/* home.css */
#mwrap {
    width: 100%;
    height: auto;
}

/* 상단 메인 비주얼 */
.main-visual {
    position: relative;
    width: 100%;
    height: 770px;
    overflow: hidden;
    font-family: "Noto Sans KR", sans-serif;
}

.bg-video {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 1920px;
    min-height: 770px;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.bg-video {
    display: block;
}

.bg-main-slide {
    display: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* 슬로건 */
.visual-text {
    display: flex; /* 수평 배치 */
    position: absolute;
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    text-align: center; /* 텍스트 중앙 정렬 */
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.main-slogan {
    font-size: 32px;
    font-weight: 700;
    font-family: "SCoreDream";
    margin-right: 20px;
}

.mo_main-slogan {
    display: none;
}

/* 이미지 텍스트 */
.image-text-img {
    max-width: 315px; /* 이미지의 최대 너비 설정 */
    height: auto; /* 비율 유지 */
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s ease forwards;
}

.fade-in-up.delay {
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 사업공고 슬라이드 */
.notice-slide {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1400px; /* 최대 너비 설정 */
    margin: 310px auto 0;
    z-index: 3;
    overflow: hidden; /* 영역을 벗어나는 부분은 숨김 처리 */
    flex-direction: column; /* 슬라이드 내용과 버튼들을 세로로 배치 */
}

/* swiper-wrapper: 가로로 슬라이드 나열 */
.notice-slide .swiper-wrapper {
    display: flex; /* 슬라이드들을 가로로 나열 */
    width: 100%;
}

/* swiper-slide: 슬라이드 크기 설정 */
.notice-slide .swiper-slide {
    display: flex;
    justify-content: center; /* 슬라이드 내부 내용 중앙 정렬 */
    flex-shrink: 0;
    width: calc(25% - 20px); /* 4개의 슬라이드가 한 번에 보이도록 너비 계산 */
    box-sizing: border-box;
    padding: 0 10px; /* 슬라이드 간격 조정 */
}

/* notice-card 스타일 */
.notice-card {
    position: relative;
    border: 1px solid #fff;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 25px 25px 45px;
    width: 335px;
    height: 250px;
    text-align: left;
    transition: transform 0.3s;
    background: transparent;
    box-sizing: border-box;
}

/* 배지 스타일 */
.badge {
    display: inline-block;
    background: #ff6920;
    color: #fff;
    width: 75px;
    height: 30px;
    font-size: 14px;
    padding: 4px 10px;
    font-weight: 700;
    top: 10px;
    left: 20px;
    text-align: center;
    line-height: 22px;
    border-radius: 15px;
}

/* 제목 스타일 */
.title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 10px;
    color: #fff;
}

.title a {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 10px;
    color: #fff;
}

/* 날짜 스타일 */
.date {
    font-size: 16px;
    color: #fff;
    margin-top: 30px;
}

p {
    margin-bottom: 10px;
}

/* 더보기 링크 스타일 */
.more {
    font-size: 14px;
    color: #fff;
    text-align: left;
    display: block;
}

/* D-day 스타일 */
.d-day {
    position: absolute;
    bottom: 0;
    right: 0;
    font-weight: 900;
    font-size: 16px;
    color: #000;
    background: #fff;
    width: 75px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}

.controls-and-hyphens {
    display: flex; /* 자식 요소들을 가로로 나열! */
    align-items: center; /* 만약 높이가 다를 경우, 세로 중앙에 맞춰줄 수도 있어! */
    gap: 10px;
    margin-top: 40px;
    margin-left: 20px;
    z-index: 5;
}

/* 슬라이드 컨트롤 */
.swiper-controls {
    display: flex; /* 버튼들을 가로로 나열 */
    justify-content: flex-start; /* 왼쪽으로 정렬 */
    gap: 5px; /* 버튼들 간의 간격 설정 */
    align-items: center;
}

/* 슬라이드 버튼 스타일 */
.swiper-button-prev,
.swiper-button-next,
.swiper-button-pause {
    background-color: #007bc8;
    color: #fff;
    width: 24px;
    height: 24px;
    font-size: 12px;
    border-radius: 50%;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    display: flex; /* 버튼 내 내용 중앙 정렬 */
}

.swiper-button-prev:hover,
.swiper-button-next:hover,
.swiper-button-pause:hover {
    background-color: #004068;
}

/* 하이픈 버튼 스타일 */
.swiper-button-hyphens {
    display: flex;
    gap: 5px;
    justify-content: flex-start; /* 왼쪽으로 정렬 */
    align-items: center; /* 세로로 중앙 정렬 */
}

.swiper-button-hyphen {
    background: #0068b7;
    width: 20px;
    height: 5px;
    border: 1px solid #1e4a66;
}

.swiper-button-hyphen.active {
    background: #004068;
    border: 1px solid #fff;
}

.swiper-button-hyphen:hover {
    background: #0068b7;
}

/* 사업공고 더보기 */
.notice-more {
    text-align: right;
}

.notice-more a {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-right: 15px;
}

/* 언론기사 한줄 */
.news-single-line {
    align-items: center; /* 수직 중앙 정렬 */
    justify-content: space-between; /* 수평 중앙 정렬 */
    border-radius: 10px;
    background-color: #fff;
    width: 100%;
    max-width: 1400px;
    z-index: 6;
    height: 55px; /* 전체 높이를 100vh로 설정하여 수직 중앙 정렬 */
    position: absolute; /* 부모를 기준으로 위치 지정 */
    margin: 0 auto;
    padding: 5px 0; /* 텍스트 상단과 하단 여백을 추가 */
    bottom: 15px;
    left: 50%; /* 화면의 50% 지점으로 이동 */
    transform: translateX(-50%); /* 요소의 너비를 기준으로 정확히 가운데 배치 */
}

.news-label {
    font-family: "Busan";
    margin-left: 50px;
    color: #21306b;
    font-size: 26px;
    margin-top: 7px;
    display: inline-flex; /* 또는 display: flex; 사용 */
    align-items: center; /* 세로 중앙 정렬 */
    justify-content: center; /* 가로 중앙 정렬 */
}

.news-source {
    margin-left: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background-color: #22a9fd;
    border-radius: 15px;
    padding: 3px 15px 3px 15px;
    display: inline-flex; /* 또는 display: flex; 사용 */
    align-items: center; /* 세로 중앙 정렬 */
    justify-content: center; /* 가로 중앙 정렬 */
}

.news-title {
    margin-left: 15px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    align-items: center; /* 세로 중앙 정렬 */
    justify-content: center; /* 가로 중앙 정렬 */
}

.news-date {
    margin-left: 50px;
    color: #8f8f8f;
    font-size: 16px;
    align-items: center; /* 세로 중앙 정렬 */
    justify-content: center; /* 가로 중앙 정렬 */
}

.news-single-line span,
.news-single-line a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-more {
    color: #0068b7;
    margin-left: 70px;
}

/*게시물&배너존*/
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-top: 45px;
    padding-bottom: 45px;
    background: linear-gradient(to bottom, #21306b 70%, #fff 30%); /* 바탕색 */
}

.content-wrapper {
    display: flex;
    justify-content: space-between; /* 왼쪽과 오른쪽 섹션을 나눈다 */
    width: 100%; /* wrapper 너비를 100%로 설정 */
    max-width: 1400px; /* 최대 너비 설정 */
}

.left-section {
    flex: 7;
    padding-right: 20px;
}

.right-section {
    flex: 3;
}

/*게시판*/
.category-menu {
    margin-bottom: 20px;
    width: 100%;
}

.category-btn {
    margin-right: 10px;
    padding: 10px;
    background: transparent;
    color: #8a8ca1;
    border: none;
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.category-btn:hover {
    background-color: #081252;
    color: #fff;
}

.category-btn.active {
    background-color: #081252;
    color: #fff;
}

.content-display {
    position: relative;
    background: #fff;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 50px 40px 30px 40px;
    width: 940px;
    height: auto;
    text-align: left;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* 아래쪽만 그림자 */
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    display: flex; /* li 항목을 가로로 정렬 */
    justify-content: space-between; /* 제목과 날짜를 양 끝으로 배치 */
    margin-bottom: 25px; /* 항목 간 간격 */
}

.main-title {
    font-size: 20px;
    font-weight: 500;
    flex: 1; /* 제목이 남은 공간을 채우도록 */
}

.main-date {
    font-size: 18px;
    color: #8a8ca1;
    text-align: right; /* 날짜를 오른쪽 정렬 */
}

.category-more-btn {
    cursor: pointer;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    align-items: center;
    background: transparent;
    float: right;
    margin-right: 30px;
}

.category-more-btn a {
    color: #fff;
}

/* 배너존 */
.banner-zone {
    padding: 15px;
}

.banner-title {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

.banner-zone-wrapper {
    background: #fff;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 25px 40px 20px 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 배너 컨테이너 공통 */
.top-banner-container,
.bottom-banner-container {
    width: 100%;
    max-width: 320px; /* 최대 320px까지만 */
    margin: 0 auto; /* 가운데 정렬 */
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* 상단 배너 */
.top-banner-container .swiper-slide {
    background-color: #0068b7;
    height: 160px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.top-banner-container .swiper-slide img {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    object-fit: cover;
}

/* 하단 배너 */
.bottom-banner-container .swiper-slide {
    background-color: #0068b7;
    height: 120px;
    border-radius: 10px;
}

.bottom-banner-container .swiper-slide img {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

/* 컨트롤 버튼 */
.swiper-container {
    position: relative;
}

.banner-button-next,
.banner-button-prev {
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 22px;
    height: 22px;
    border: 1px solid #d0d0d0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.banner-button-next {
    right: 5px;
}

.banner-button-prev {
    left: 5px;
}

.swiper-buttons-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/*포토뉴스*/
.gallery-section {
    padding: 80px 0;
    background-color: #f4f6fe;
    width: 100%; /* 전체 화면에서 100% 너비 */
}

.gallery-container {
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1400px; /* 최대 너비를 1400px로 설정 */
}

/* 포토게시판 헤더 스타일 */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.gallery-title {
    font-size: 50px;
}

.gtit1 {
    color: #21306b;
    font-weight: 700;
}

.gtit2 {
    color: #000;
    font-weight: 500;
    font-size: 46px;
}

.gallery-more-btn {
    padding: 20px 30px;
    background-color: #21306b;
    color: white;
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
    float: right;
}

.gallery-more-btn:hover {
    background-color: #152255;
}

/* 포토갤러리 스타일 */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 사진 항목 스타일 */
.photo-item {
    background-color: white;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.photo-img {
    width: 335px;
    height: 235px;
    display: block;
}

.photo-info {
    padding: 25px;
    text-align: left;
    background-color: #fff;
}

.photo-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.photo-date {
    font-size: 14px;
    color: #cacaca;
    display: block;
    margin-top: 5px;
}

/*추진사업*/
.promotion-section {
    width: 100%;
    background: url("../../images/home/main/pro_back.jpg") no-repeat left top,
    #023366;
    padding: 140px 0;
}

.promotion-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pro-left-section {
    flex: 3;
    padding-right: 20px;
}

.pro-left-section h2 {
    font-size: 47px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
}

.pro-left-section .pro-txt {
    font-size: 16px;
    font-weight: 800;
    color: #aab2c0;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.pro-left-section p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.pro-buttons .pro-button1 {
    padding: 15px 30px;
    background-color: #22a9fd;
    color: white;
    font-size: 18px;
    margin-right: 10px;
}

.pro-buttons .pro-button2 {
    padding: 15px 30px;
    background-color: #4a52cc;
    color: white;
    font-size: 18px;
}

.pro-right-section {
    flex: 7;
}

.pro-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pro-banner-item {
    position: relative;
    width: calc(25% - 20px);
}

.pro-banner-link {
    display: block;
    padding: 25px;
    background-color: #20548d;
    color: white;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    height: 150px;
    box-sizing: border-box;
}

.pro-banner-btn {
    position: absolute;
    bottom: 20px; /* 오른쪽 하단에 위치하도록 설정 */
    right: 20px; /* 오른쪽 하단에 위치하도록 설정 */
    background-color: #426f9d;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    width: 25px;
    height: 25px;
}

.pro-banner-btn:hover {
    background-color: #004068;
}

/* 자주찾는 메뉴 */
.bipa-menu-section {
    width: 100%;
    padding: 50px 0;
    background: url("../../images/home/main/bipa_back.jpg") no-repeat left top;
}

.bipa-header {
    margin-bottom: 40px;
    max-width: 1400px;
    margin: 0 auto 40px auto; /* 중앙정렬 + 하단 여백 */
    padding: 0 20px; /* 여백 보정 */
}

.bipa-title {
    font-size: 40px;
}

.bipa-tit1 {
    color: #21306b;
    font-weight: 700;
}

.bipa-tit2 {
    color: #000;
    font-weight: 600;
    font-size: 36px;
}

.bipa-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* 각 섹션을 상단에 맞춰 정렬 */
    flex-wrap: wrap; /* 콘텐츠가 한 줄로 고정되지 않도록 설정 */
    margin: 0 auto;
    max-width: 1400px; /* 최대 너비를 1400px로 설정 */
}

/* 왼쪽 (홍보 동영상) - 6:2:2 비율의 6 */
.bipa-left-section {
    text-align: center;
    margin-bottom: 0px; /* 섹션 간 간격을 줌 */
}

.bipa-video-banner {
    width: 100%;
    max-width: 670px;
    height: 350px;
    border-radius: 10px;
    cursor: pointer;
}

.bipa-video-banner img {
    width: 100%;
    max-width: 670px;
    height: 350px;
    border-radius: 10px;
    cursor: pointer;
}

.bipa-video-banner span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #21306b;
    text-align: left;
}

/* 가운데 자주 클릭하는 메뉴 - 6:2:2 비율의 2 */
.bipa-middle-section {
    text-align: center;
    margin-bottom: 0px; /* 섹션 간 간격을 줌 */
}

.bipa-menu-title {
    font-size: 20px;
    font-weight: 600;
    color: #21306b;
    margin-bottom: 20px;
}

.bipa-menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 340px;
}

.bipa-menu-item {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 10px;
}

.bipa-color1 {
    background: #22a9fd;
}

.bipa-color2 {
    background: #21306b;
}

.bipa-color3 {
    background: #101e34;
}

.bipa-menu-link {
    color: inherit;
    display: flex;
    padding: 30px 0;
    flex-direction: row-reverse; /* 아이콘을 오른쪽으로 배치 */
    align-items: center; /* 세로 가운데 정렬 */
    justify-content: space-between; /* 좌우 간격 정렬 */
    width: 100%; /* 링크 전체 폭 사용 */
    max-width: 340px; /* 필요시 제한 */
}

.bipa-menu-icon {
    width: 41px;
    height: 41px;
    margin-right: 30px;
    object-fit: contain;
}

.bipa-menu-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-left: 35px;
    text-align: left; /* 텍스트 왼쪽 정렬 */
    flex: 1; /* 텍스트가 좌측 공간 채우도록 */
}

/* 오른쪽 배너 - 6:2:2 비율의 2 */
.bipa-right-section {
    margin-bottom: 0px; /* 섹션 간 간격을 줌 */
}

.bipa-banner-item {
    margin-bottom: 20px;
    width: 340px;
}

.bipa-banner-link {
    display: flex;
    padding: 45px 0;
    flex-direction: row-reverse; /* 아이콘 오른쪽 */
    align-items: center; /* 세로 가운데 */
    justify-content: space-between; /* 좌우 간격 정렬 */
    gap: 20px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.bipa-banner-text-wrap {
    display: flex;
    flex-direction: column; /* 세로로 쌓기 */
}

.bipa-banner-img {
    width: 71px;
    height: 71px;
    text-align: right;
    margin-right: 30px;
    object-fit: contain;
}

.bipa-banner-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #21306b;
    text-align: left;
    margin-left: 35px;
    text-align: left;
    flex: 1; /* 텍스트가 좌측 공간 채우도록 */
}

.bipa-banner-text {
    font-size: 16px;
    color: #b1b4c4;
    margin-top: 4px;
    margin-left: 35px;
    text-align: left;
    letter-spacing: 1.5px;
}

/* 모달 스타일 (홍보 동영상) */
.bipa-video-modal {
    display: none; /* 기본적으로 모달 숨김 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 반투명 배경 */
    z-index: 1000;
}

.bipa-video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.bipa-close-btn {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}

.bipa-close-btn:hover {
    color: #f00;
}

/*산하기관안내*/
.sub-org-section {
    width: 100%;
    background: url("../../images/home/main/bottom_back.jpg") no-repeat right top;
    padding-bottom: 70px;
}

.sub-org-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 상단 헤더 */
.sub-org-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sub-org-title {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 700;
    color: #21306b;
}

.sub-org-icon {
    width: 80px;
    height: 76px;
    margin-right: 10px;
}

.sub-org-controls {
    display: flex;
    gap: 10px;
}

.sub-org-btn {
    width: 80px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    background: transparent;
}

/* 카드 슬라이드 */
.sub-org-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* 카드 */
.sub-org-card {
    flex: 0 0 calc(25% - 20px); /* 한 줄에 4개 */
    background-color: #fff;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border: 1px solid #dfdfdf;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sub-org-logo {
    width: 200px;
    height: 78px;
    text-align: center;
    margin: 20px 40px;
    object-fit: contain;
}

.sub-org-desc {
    font-size: 14px;
    color: #fff;
    margin: 20px 20px;
    text-align: left;
}

.sub-org-footer {
    width: 100%;
    background: #101e34;
    display: flex;
    flex-direction: column; /* 세로 배치 */
    border-bottom-left-radius: 20px;
    width: 100%;
}

.sub-org-bottom {
    display: flex;
    justify-content: space-between; /* 왼쪽 기관명, 오른쪽 버튼 */
    align-items: center;
    border-top: 1px solid #dfdfdf;
}

.sub-org-name {
    font-weight: 600;
    color: #fff;
    padding-left: 20px;
}

.sub-org-link {
    color: #fff;
    padding: 5px 20px;
    font-size: 14px;
}

/* 스크롤바 숨기기 (선택사항) */
.sub-org-slider::-webkit-scrollbar {
    display: none;
}

/*오른쪽상단 퀵배너*/
.quick-banner {
    position: absolute; /* ← 스크롤 고정(X), 상단 영역에만 고정 */
    top: 200px;
    right: 0;
    z-index: 99;
}

.quick-content {
    display: flex;
    flex-direction: column;
}

.quick-item {
    position: relative;
    margin-bottom: -6px; /* 배너 간 약간 겹치게 (원하는 만큼 조절: -4px ~ -10px 권장) */
}

.quick-item:last-child {
    margin-bottom: 0;
}

.quick-item a img {
    width: 118px;
    display: block;
    transition: transform 0.2s ease;
}

.quick-item a img:hover {
    transform: scale(1.05);
    z-index: 2;
    position: relative;
}
