@charset "utf-8";

/* =========================================================
   메인 슬라이드 기본 레이아웃
========================================================= */

#main_visual {
    position: relative;
    width: 100%;
    height: 530px;       /* PC 기본 */
    overflow: hidden;
}

#main_visual .main_slide {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

#main_visual .main_slide li {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

#main_visual .main_slide li.active {
    opacity: 1;
    z-index: 1;
}

#main_visual .main_slide li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------------------------------------------------
   텍스트 오버레이 (미사용 중이지만 유지)
--------------------------------------------------------- */
#main_visual .visual_txt {
    position: absolute;
    left: 7%;
    top: 25%;
    color: #fff;
}

#main_visual .visual_txt h2 {
    font-size: 90px;
    margin: 0;
}

#main_visual .visual_txt p {
    font-size: 22px;
    margin-top: 15px;
}

/* ---------------------------------------------------------
   태블릿 (1024px 이하)
--------------------------------------------------------- */
@media (max-width: 1024px) {
    #main_visual {
        height: 420px;
    }
    #main_visual .visual_txt h2 { font-size: 60px; }
    #main_visual .visual_txt p { font-size: 18px; }
}

/* ---------------------------------------------------------
   모바일 (768px 이하)
--------------------------------------------------------- */
@media (max-width: 768px) {

    /* 슬라이드 높이 통일 */
    #main_visual {
        height: 260px;
        margin-top: var(--mobile-header-gap, 70px);
    }

    #main_visual .main_slide li img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    #main_visual .visual_txt {
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    #main_visual .visual_txt h2 { font-size: 32px; }
    #main_visual .visual_txt p { font-size: 13px; }
}

/* =========================================================
   (이 아래 내용은 메인 차량추천/이벤트/유튜브 등)
   → 모든 중복 제거한 후 원본 유지
========================================================= */

/* ===============================
   메인 추천 차량 영역
=============================== */

.main_car_area {
    width: 100%;
    margin: 60px 0 0;
}

.main_car_inner {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.main_car_big {
    flex: 2;
    background: #fff;
    box-shadow: 0 0 0 1px #ddd;
    overflow: hidden;
}

.main_car_big img {
    width: 100%;
    height: auto;
    display: block;
}

.main_car_side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

/* -----------------------------
   오른쪽 세로 슬라이더
----------------------------- */
.side_slider {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.side_slider li {
    padding: 10px 0;
}
.side_slider li + li {
    border-top: 1px solid #e3e3e3;
    margin-top: 10px;
}

.side_item a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.side_item .thumb {
    width: 120px;
    height: 85px;
    overflow: hidden;
    flex-shrink: 0;
}
.side_item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side_title {
    font-size: 14px;
    font-weight: 700;
}
.side_item:hover .side_title {
    text-decoration: underline;
}

/* 슬라이더 네비 */
.side_nav {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 36px;
}
.side_nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0b7285;
    color: #fff;
    border: none;
    font-size: 20px;
}
.side_nav button:hover {
    background: #085766;
}




/* ================================
   메인 상담/문의 풀배너
   ================================ */

#contact_banner {
    width: 100%;
    background: #97afc6;          /* 좌우 바탕색 (디자인에 맞게 조정 가능) */
}

#contact_banner .cb_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    min-height: 280px;
}

/* 공통 컬럼 스타일 */
#contact_banner .cb_col {
    position: relative;
    flex: 1;
    overflow: hidden;
    color: #fff;
}

/* 배경 이미지 페이드용 레이어 */
#contact_banner .cb_col::before,
#contact_banner .cb_col::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 0;
}

/* 기본 배경: before, hover 배경: after */
#contact_banner .cb_col::after {
    opacity: 0;
}

/* Hover 시 after가 자연스럽게 올라오도록 */
#contact_banner .cb_col:hover::after {
    opacity: 1;
    transform: scale(1.02);
}

/* 내용 텍스트 */
#contact_banner .cb_content {
    position: relative;
    z-index: 1;
    padding: 40px 40px;
}

#contact_banner .cb_text .cb_content {
    padding-right: 60px;
}

#contact_banner .cb_label {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 10px;
}

#contact_banner .cb_title {
    font-size: 28px;
    line-height: 1.5;
    margin: 0 0 18px;
    font-weight: 700;
}

#contact_banner .cb_desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

#contact_banner .cb_box_title {
    font-size: 22px;
    margin: 4px 0 10px;
    font-weight: 700;
}

#contact_banner .cb_small {
    font-size: 13px;
    opacity: 0.9;
    letter-spacing: 0.06em;
}

#contact_banner .cb_info {
    font-size: 15px;
    margin-top: 4px;
}

/* ==========================
   상담 / 문의 배너 – 칼럼 배경 이미지
   ========================== */

/* 공통 컬럼 박스 */
#contact_banner .cb_col {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 350px; /* 원하는 값 */
}

/* 왼쪽 텍스트 영역 더 넓게 */
#contact_banner .cb_text {
    flex: 2;               /* 좌측 넓게 */
    min-width: 40%;
}

/* 나머지 3개 칼럼 기본 폭 */
#contact_banner .cb_cell,
#contact_banner .cb_wechat,
#contact_banner .cb_kakao {
    flex: 1;
}

/* CALL 영역 기본/호버 이미지 */
#contact_banner .cb_cell {
    background-image: url('../img/contact_phone.jpg');
}
#contact_banner .cb_cell:hover {
    background-image: url('../img/contact_phone_hover.jpg');
}

/* naver 영역 */
#contact_banner .cb_naver {
    background-image: url('../img/contact_naver.jpg');
}
#contact_banner .cb_naver:hover {
    background-image: url('../img/contact_naver_hover.jpg');
}

/* KakaoTalk & 방문 영역 */
#contact_banner .cb_kakao {
    background-image: url('../img/contact_kakao.jpg');
}
#contact_banner .cb_kakao:hover {
    background-image: url('../img/contact_kakao_hover.jpg');
}

/* directions 영역 */
#contact_banner .cb_directions {
    background-image: url('../img/contact_directions.jpg');
}
#contact_banner .cb_directions:hover {
    background-image: url('../img/contact_directions_hover.jpg');
}



/* ==========================
   반응형 (모바일/태블릿에서 세로로 쌓기)
   ========================== */
@media (max-width: 1024px) {
    #contact_banner .cb_inner {
        flex-direction: column;
        display: flex;
        width: 100%;
    }

    #contact_banner .cb_content {
        padding: 30px 24px;
    }
    #contact_banner .cb_title {
        font-size: 22px;
    }
    #contact_banner .cb_box_title {
        font-size: 18px;
    }
}

/* =============================
   이벤트 섹션
   ============================= */
#event_section {
    width: 100%;
    padding: 60px 0 80px;
}

.event_inner {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* 제목 */
.event_title {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.event_icon {
    font-size: 30px;
}

/* 3개 이벤트 박스 정렬 */
.event_list {
    display: flex;
    justify-content: space-between;
    gap: 2%;
    flex-wrap: wrap;
}

/* 각 아이템 */
.event_item {
    width: 32%;
    text-align: center;
}

/* 이미지 영역(임시 회색박스) */
.event_img {
    width: 100%;
    height: 260px;
    background: #dcdcdc;
    border-radius: 6px;
}

/* 날짜 */
.event_date {
    margin-top: 12px;
    font-size: 15px;
    color: #333;
}

/* =============================
   반응형 – 모바일에서는 1열
   ============================= */
@media (max-width: 768px) {
    .event_item {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* =============================
   이벤트 배너 Hover 효과
   ============================= */

/* 배너 이미지 박스 */
.event_img {
    width: 100%;
    height: 260px;
    background: #dcdcdc;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

/* 이미지 태그가 들어올 경우 대비 */
.event_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* overlay (어두운 필터) */
.event_img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);   /* 초기 투명 */
    transition: background 0.35s ease;
}

/* hover 전체 효과 */
.event_item:hover .event_img img {
    transform: scale(1.07);     /* 자연스러운 확대 */
    opacity: 0.92;
}

.event_item:hover .event_img::after {
    background: rgba(0,0,0,0.15);  /* 조금 어두워지면서 피처 강조 */
}

/* 유튜브 리뷰 영역 */
#youtube_review {
    width: 100%;
    padding: 60px 0;
}

.yt_inner {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.yt_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yt_icon {
    width: 33px;
    height: auto;
}

/* 4개 영상 배치 */
.yt_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.yt_item iframe {
    width: 100%;
    height: 320px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.25s ease;
}

/* hover 효과 */
.yt_item iframe:hover {
    transform: scale(1.03);
}

/* 반응형: 모바일 1열 */
@media (max-width: 768px) {
    .yt_grid {
        grid-template-columns: 1fr;
    }

    .yt_item iframe {
        height: 220px;
    }
}



/* 메인 슬라이드 반응형 + 헤더 간격 정리(최종) */
@media (max-width: 768px) {
    #main_visual {
        height: 260px;
        margin-top: 12px;   /* 핸드폰에서 간격 넓게 보이던 부분 줄이기 */
    }

    #main_visual .main_slide li img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ... 나머지 기존 모바일 슬라이드 설정은 그대로 유지 ... */
}


    #main_visual .visual_txt {
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    #main_visual .visual_txt h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    #main_visual .visual_txt p {
        font-size: 13px;
        margin-top: 8px;
    }

    .btn_group {
        margin-top: 16px;
    }

    .btn_group a {
        padding: 8px 16px;
        font-size: 13px;
    }

    #main_visual .slide_dots {
        bottom: 12px;
        gap: 6px;
    }

    #main_visual .slide_dots span {
        width: 12px;
        height: 12px;
        border-width: 1px;
    }

    /* =========================
   메인 슬라이드 – PC/모바일 이미지 분리
   ========================= */

/* 기본: PC용만 보이고, 모바일용은 숨김 */
#main_visual .main_slide li .slide_pc {
    display: block;
}
#main_visual .main_slide li .slide_mo {
    display: none;
}

/* 모바일(768px 이하)에서는 반대로 – 모바일 이미지만 보이게 */
@media (max-width: 768px) {
    #main_visual {
        height: 260px;   /* 이미 쓰고 있는 높이 유지 */
    }

    #main_visual .main_slide li .slide_pc {
        display: none;
    }
    #main_visual .main_slide li .slide_mo {
        display: block;
    }

    /* 모바일 이미지는 짤림 줄이려면 cover 유지 */
    #main_visual .main_slide li .slide_mo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* ==========================
   추천 차량 영역 – 모바일 대응
   ========================== */
@media (max-width: 768px) {

    /* 레이아웃 전체 세로 정렬 */
    .main_car_inner {
        display: flex;
        flex-direction: column;
        gap: 20px; /* 위아래 간격 */
        padding: 0 12px; /* 모바일 좌우 여백 */
    }

    /* 왼쪽 큰 배너 (오른쪽으로 안 밀리게 100%) */
    .main_car_big {
        width: 100%;
    }

    .main_car_big img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

    /* 오른쪽 세로 슬라이더도 100% 차지 */
    .main_car_side {
        width: 100%;
        margin: 0 auto;
    }

    /* 기존의 “세로 3개 고정 높이” 제거 */
    .side_slider {
        height: auto !important;
    }

    /* 모바일에서 슬라이드 아이템은 1개씩 보이게 */
    .side_slider li {
        height: auto !important;
        margin-bottom: 16px; /* 리스트 간격 */
    }

    .side_item {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    /* 썸네일 사이즈 조절 */
    .side_item .thumb {
        width: 34%;
        flex-shrink: 0;
    }

    .side_item .thumb img {
        width: 100%;
        height: auto;
        border-radius: 6px;
        object-fit: cover;
    }

    /* 텍스트 영역 */
    .side_item .side_txt {
        width: 66%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .side_txt .side_cat {
        font-size: 13px;
        color: #666;
        margin-bottom: 2px;
    }

    .side_txt .side_title {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 4px;
    }

    .side_txt .side_desc {
        font-size: 13px;
        color: #777;
        line-height: 1.3;
    }

    /* 좌우 버튼 숨김(모바일에서는 세로 스크롤 or 터치 충분함) */
    .side_nav {
        display: none;
    }
}

.latest_gallery {
    max-width: 1200px;
    margin: 60px auto 0;
}

.latest_gallery_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.latest_gallery_list li a {
    display: block;
    text-decoration: none;
    color: #222;
}

.latest_gallery_list .thumb {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.latest_gallery_list .thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.latest_gallery_list li:hover .thumb img {
    transform: scale(1.05);
}

.latest_gallery_list .lg_title {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    word-break: keep-all;
}

.latest_gallery_list .lg_cmt {
    margin-left: 4px;
    font-size: 12px;
    color: #ff7043;
}

/* 모바일 2열 */
@media (max-width: 768px) {
    .latest_gallery {
        padding: 0 12px;
        margin-top: 40px;
    }

    .latest_gallery_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .latest_gallery_list .thumb img {
        height: 140px;
    }

    .latest_gallery_list .lg_title {
        font-size: 13px;
    }
}

/* =========================
   메인 – 차량 갤러리 최신게시물
   ========================= */

.latest_gallery {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 16px;
    box-sizing: border-box;
}

/* 상단 타이틀 + 전체보기 */
.lg_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 12px;
}

.lg_title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.lg_more_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: all .2s ease;
}

.lg_more_btn:hover {
    border-color: #007a86;
    color: #007a86;
}

/* 카테고리 탭 */
.lg_tab_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.lg_tab_btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    color: #555;
    transition: all .15s ease;
}

.lg_tab_btn.on,
.lg_tab_btn:hover {
    border-color: #007a86;
    background: #007a86;
    color: #fff;
}

/* 갤러리 그리드 */
.latest_gallery_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

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

/* 썸네일 */
.lg_thumb {
    position: relative;
    width: 100%;
    padding-top: 65%; /* 16:10 정도 비율 */
    overflow: hidden;
    border-radius: 10px;
    background: #f4f4f4;
}

.lg_thumb img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}

/* 라벨(예: HOT, 마감임박) */
.lg_badge {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 999px;
    background: #ff6b6b;
    color: #fff;
}

/* 텍스트 영역 */
.lg_text {
    padding: 12px 10px 16px;
    text-align: center;
}

.lg_cat {
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}

.lg_subject {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.35;
    margin-bottom: 4px;
}

.lg_desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* hover 효과 */
.lg_item:hover .lg_thumb img {
    transform: translate(-50%, -50%) scale(1.05);
}

/* 글 없을 때 */
.latest_gallery_empty {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.lg_empty {
    font-size: 14px;
    color: #777;
}

/* 반응형 */
@media (max-width: 1024px) {
    .latest_gallery {
        margin-top: 40px;
    }
    .latest_gallery_list {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .lg_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .lg_title {
        font-size: 17px;
    }

    .latest_gallery_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .latest_gallery_list {
        grid-template-columns: 1fr;
    }
}


/* ====== 차량 갤러리 카드 디테일 튜닝 – 컴팩트 버전 ====== */

/* 한 줄에 4개, 간격 확 줄이기 */
.latest_gallery_list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px; /* 기존 24px → 12px */
}

/* 흰 카드 배경 없애고, 이미지가 카드처럼 보이게 */
.lg_item {
    background: transparent;   /* 하얀 박스 제거 */
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transition: transform .18s ease, box-shadow .18s ease;
}

.lg_item a {
    display: block;
    height: 100%;
}

/* 실제 카드 느낌은 썸네일에만 */
.lg_thumb {
    position: relative;
    width: 100%;
    padding-top: 70%;          /* 이미지 세로 더 키움 */
    border-radius: 16px;
    overflow: hidden;
    background: #f4f4f4;
}

.lg_thumb img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    transition: transform .22s ease;
}

/* 텍스트 영역 – 여백 줄이기 */
.lg_text {
    padding: 6px 4px 4px;
    text-align: left;
}

.lg_cat {
    font-size: 12px;
    margin-bottom: 2px;
}

.lg_subject {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

/* 설명 문장은 숨겨서 카드 높이 통일 */
.lg_desc {
    display: none;
}

/* 호버 시 살짝만 띄우기 */
.lg_item:hover .lg_thumb img {
    transform: translate(-50%, -50%) scale(1.05);
}






/* 타이틀/탭 쪽 간격 미세 조절 */
.latest_gallery {
    margin-top: 50px;
}

.lg_header {
    margin-bottom: 16px;
}

.lg_tab_wrap {
    margin-bottom: 20px;
}

/* 반응형 조금 더 정리 */
@media (max-width: 1024px) {
    .latest_gallery_list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .latest_gallery_list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .latest_gallery_list {
        grid-template-columns: 1fr;
    }
}

/* 차량 갤러리 – 이벤트 섹션과 좌우 라인 맞추기 */
.latest_gallery {
    width: 90%;
    max-width: 1300px;
    margin: 50px auto 0;   /* 위쪽 여백은 적당히, 아래 이벤트랑 간격 보면서 조정 */
    padding: 0;            /* 좌우 패딩 제거해서 .event_inner와 라인 동일하게 */
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .latest_gallery {
        width: 94%;        /* 모바일에서는 살짝 여유 */
        margin-top: 40px;
    }
}

/* ===== 데스크톱용 차량 갤러리 컴팩트 레이아웃 ===== */
@media (min-width: 1025px) {

    /* 한 줄 4개 + 간격 축소 */
    .latest_gallery_list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px; /* 기존 24px → 16px로 줄여서 카드끼리 더 붙게 */
    }

    /* 카드 배경을 가볍게 – 흰 바탕 면적 줄이기 */
    .lg_item {
        background: transparent;         /* 카드 밖 흰 배경 제거 */
        box-shadow: none;                /* 큰 그림자 제거 */
        border-radius: 0;
    }

    /* 실제 카드 느낌은 썸네일에만 유지 */
    .lg_thumb {
        border-radius: 14px;
        overflow: hidden;
    }

    /* 텍스트 영역 여백 줄이기 */
    .lg_text {
        padding: 8px 4px 6px;            /* 위·아래 여백 확 줄임 */
        text-align: left;
    }

    .lg_cat {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .lg_subject {
        font-size: 14px;
        margin-bottom: 0;
    }

    /* 설명 문장은 숨겨서 카드 높이 통일 & 컴팩트하게 */
    .lg_desc {
        display: none;
    }

    /* 전체 섹션 위 여백 살짝만 */
    .latest_gallery {
        margin-top: 40px;
    }
}

/* ===== 차량 갤러리 – 데스크톱용 초콤팩트 레이아웃 ===== */
@media (min-width: 1025px) {

    /* 섹션 자체를 조금 더 넓게 */
    .latest_gallery {
        width: 100%;
        max-width: 1400px;  /* 필요하면 1500까지 올려도 됨 */
        margin: 40px auto 0;
    }

    /* 가로/세로 간격 확 줄이기 */
    .latest_gallery_list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 6px;   /* 12 → 6 */
        row-gap: 6px;      /* 세로 간격도 줄임 */
    }

    /* 카드 배경은 완전 투명 (이미지만 보이게) */
    .lg_item {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    /* 썸네일을 더 키워서 꽉 차 보이게 */
    .lg_thumb {
        padding-top: 80%;      /* 70% → 80%, 이미지 세로 더 길게 */
        border-radius: 16px;
        overflow: hidden;
    }

    .lg_thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 텍스트 영역 최소화 */
    .lg_text {
        padding: 4px 2px 0;
        text-align: left;
    }

    /* 카테고리 줄은 과감하게 숨김 – 한 줄 확보 */
    .lg_cat {
        display: none;
    }

    .lg_subject {
        font-size: 13px;
        line-height: 1.25;
        margin: 0;
    }

    /* 설명 문장도 숨겨서 세로 높이 통일 */
    .lg_desc {
        display: none;
    }
}

/* ===== 차량 갤러리 – 섹션 폭은 기본 섹션과 동일, 가로 간격만 조정 ===== */
@media (min-width: 1025px) {

    /* 이벤트 섹션과 같은 폭으로 맞추기 */
    .latest_gallery {
        width: 90%;
        max-width: 1300px;
        margin: 60px auto 0;   /* 기존 섹션 여백 느낌 그대로 */
        padding: 0;
    }

    /* 한 줄 4개 유지 + 가로 간격만 좁힘 */
    .latest_gallery_list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 8px;       /* 가로 간격만 줄임 */
        row-gap: 24px;         /* 세로는 기본값 느낌 유지 */
    }
}


/* ===== 차량 갤러리 – 텍스트 완전 중앙 정렬 ===== */
@media (min-width: 1025px) {
    .lg_text {
        text-align: center !important;
        padding-top: 8px !important;
    }

    .lg_cat {
        margin-bottom: 2px !important;  /* 카테고리 아래 간격 */
        font-size: 12px !important;
        color: #777 !important;          /* 더 조용한 톤 */
    }

    .lg_subject {
        margin-top: 0 !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
    }
}
/* ===============================
   차량 갤러리 – 모바일 전용 (2열 × 2줄)
================================ */
@media (max-width: 768px) {

    /* 2열 정렬 */
    .latest_gallery_list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* 텍스트 중앙 정렬 */
    .lg_text,
    .lg_cat,
    .lg_subject,
    .lg_desc {
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    /* 4개까지만 보이도록 제한 */
    .latest_gallery_list li:nth-child(n+5) {
        display: none !important;
    }

    /* 썸네일 비율 조금 더 키워서 모바일 최적화 */
    .lg_thumb {
        padding-top: 70% !important;
    }
}

/* ===== 이벤트 카드 – 데스크톱 정리 ===== */
@media (min-width: 1025px) {

    /* 한 줄 3개, 좌우 간격 일정하게 */
    .event_list {
        display: flex;
        justify-content: flex-start;
        gap: 20px; /* 카드 사이 간격 */
        flex-wrap: nowrap;
    }

    .event_item {
        flex: 0 0 calc(33.333% - 16px);  /* 3등분 */
        text-align: center;
    }

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

    .event_img {
        width: 100%;
        height: 260px;
        background: #dcdcdc;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

    .event_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .event_item:hover .event_img img {
    transform: scale(1.04);
    opacity: 0.96;
    }


   .event_date {
    font-size: 14px;
    color: #444;
    text-align: center;
    margin-top: 12px;
    line-height: 1.3;
    }

}
/* ===== 이벤트 카드: 기간 아이콘 + 텍스트 ===== */
.event_meta {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
    color: #444;
}

.event_icon {
    font-size: 17px;
}

.event_period {
    font-weight: 500;
}

/* 이벤트 카드 제목 + 기간 정리 */
.event_info {
    margin-top: 10px;
    text-align: center;
}

.event_subject {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #222;
}

.event_meta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #555;
}

.event_icon {
    font-size: 15px;
}

.event_period {
    font-weight: 400;
}

/* ===== 이벤트 카드 / 슬라이더 최종본 ===== */

/* 공통 래퍼 : 위·아래 섹션이랑 폭 맞춤 (1200px) */
.ev_cards_wrap {
    width: 100%;
    max-width: 1200px;     /* PC에서 다른 섹션과 같은 가로폭 */
    margin: 0 auto;
    padding: 0 20px;
}

/* 공통 카드 */
.ev_card {
    display: block;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* 공통 썸네일 : 가로 배너 비율 강제 */
.ev_card_thumb {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 32%;      /* 배너 세로 비율 (PC 기준) */
    overflow: hidden;
}

.ev_card_thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;     /* 영역 꽉 채우고 잘라냄 */
}

/* 기간 텍스트 등 */
.ev_card_meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px 16px;
    font-size: 14px;
    color: #444;
}

.ev_card_icon {
    font-size: 16px;
}

/* ============ PC (3개 그리드) ============ */

.ev_cards_pc { display: block; }
.ev_cards_mobile { display: none; }

.ev_cards_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.ev_card_item {
    flex: 0 0 calc(33.333% - 16px);
}

/* PC에서 배너 비율 (조금 더 납작하게 보이게 하려면 % 줄이면 됨) */
.ev_cards_pc .ev_card_thumb {
    padding-top: 35%;
}

/* ===== 이벤트 카드 / 슬라이더 최종본 ===== */

/* 이벤트 전체 래퍼 – 위/아래 섹션과 가로 폭 맞추기 */
.ev_cards_wrap {
    width: 100%;           /* 부모(.event_inner)의 90%/1300px 폭을 그대로 사용 */
    margin: 20px auto 0;
}

/* 공통 카드 박스 */
.ev_card {
    display: block;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* 공통 썸네일 – 가로형 배너 비율 강제 */
.ev_card_thumb {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 30%;      /* PC 기준 배너 세로 비율 (3 : 1 느낌) */
    overflow: hidden;
}

.ev_card_thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;      /* 배너를 영역에 꽉 채우고 넘치는 부분은 잘라냄 */
    display: block;
}

/* 기간/텍스트 */
.ev_card_meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px 16px;
    font-size: 14px;
    color: #444;
}

.ev_card_icon {
    font-size: 16px;
}

/* ================= PC : 3개 그리드 ================= */

.ev_cards_pc { display: block; }
.ev_cards_mobile { display: none; }

.ev_cards_grid {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.ev_card_item {
    flex: 1 1 0;
}

/* PC에서 배너 비율 (더 낮게 보이고 싶으면 %를 줄이면 됨) */
.ev_cards_pc .ev_card_thumb {
    padding-top: 28%;
}

/* ================= 모바일 : 1개 슬라이더 ================= */

.ev_slider {
    position: relative;
    width: 100%;          /* max-width 720px 제거, 전체 폭 사용 */
    margin: 16px 0 32px;
    overflow: hidden;
}

.ev_slider_track {
    display: flex;
    transition: transform 0.45s ease;
}

.ev_slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

/* 슬라이더 안 카드 – 모바일에서 중간 폭으로 */
.ev_cards_mobile .ev_card {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.07);
}

/* 모바일은 배너 세로를 조금 더 크게 */
.ev_cards_mobile .ev_card_thumb {
    padding-top: 42%;
}

/* 네비 버튼 */
.ev_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.35);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.ev_prev { left: 6px; }
.ev_next { right: 6px; }

/* 하단 점 인디케이터 */
.ev_dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}
.ev_dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    padding: 0;
}
.ev_dot.on {
    background: #ff4b4b;
}

/* ===== 반응형 분기 ===== */

/* 768px 이하 : PC 그리드 숨기고 슬라이더만 사용 */
@media (max-width: 768px) {
    .ev_cards_pc { display: none; }
    .ev_cards_mobile { display: block; }

    .ev_slider {
        padding: 0 12px;
        margin: 16px 0 32px;
    }

    .ev_cards_mobile .ev_card {
        max-width: 100%;
    }

    /* 모바일에서는 화살표 숨기기 (손가락 스와이프만) */
    .ev_nav {
        display: none;
    }
}

/* 769px 이상 : PC 3열 그리드만 사용 */
@media (min-width: 769px) {
    .ev_cards_pc { display: block; }
    .ev_cards_mobile { display: none; }
}

/* === 이벤트 카드 섹션 폭 강제 정리 === */
#event_section .ev_cards_wrap {
    width: 100%;
    max-width: none;   /* 위에서 준 1200px 제한 제거 */
    margin: 20px 0 0;  /* event_inner 안에서만 위 여백 */
    padding: 0;        /* 좌우 여백도 event_inner 것만 사용 */
}

/* === 이벤트 배너: PC에서 이미지가 카드 안을 꽉 채우게 === */
@media (min-width: 769px) {
    #event_section .ev_card {
        position: relative;
        padding: 0;              /* 혹시 모를 패딩 제거 */
    }

    #event_section .ev_card_thumb {
        position: relative;
        display: block;
        width: 100%;
        padding-top: 32%;        /* 배너 세로 비율 (원하는 높이에 맞춰 조절) */
        overflow: hidden;
    }

    #event_section .ev_card_thumb img {
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;  /* 카드 안을 꽉 채우고 넘치는 건 잘라냄 */
        display: block;
    }
}



































