@charset "utf-8";


/* chamobility_main.css */

/* 메인페이지 요소 보완 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
}

#main_visual {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
}

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

.visual_txt {
    position: absolute;
    left: 7%;
    top: 25%;
    color: #fff;
}

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

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

/* 버튼 그룹 */
.btn_group {
    margin-top: 40px;
}

.btn_group a {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 15px;
}

/* 차량 리스트 */
.car_list_wrap {
    max-width: 1200px;
    margin: 100px auto;
    overflow: hidden;
}

.car_box {
    width: 32%;
    float: left;
    margin-right: 2%;
    background: #fff;
}

.car_box:last-child {
    margin-right: 0;
}

.car_box img {
    width: 100%;
    border: 1px solid #ccc;
}

.car_box .info {
    padding: 20px;
}

.car_box strong {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.car_box span {
    color: #777;
    font-size: 16px;
}

/* 메인 하단 여백 (필요하면 사용) */
.main_footer_space {
    height: 200px;
    background: #514e4c;
    margin-top: 100px;
}
