@charset "utf-8";

/* [PC 기본 레이아웃 - 로고라인 1200px 강제] */
.corp_lat { 
    display: flex; 
    position: relative; 
    padding: 80px 0; 
    max-width: 1200px !important; 
    margin: 0 auto; 
    background: #fff;
    overflow: hidden !important; /* 전체 영역 밖으로 절대 못 나가게 차단 */
}

.lat_left { flex: 0 0 300px; padding-right: 20px; z-index: 20; background: #fff; }
.lat_left .lat_title { font-size: 35px; font-weight: 800; line-height: 1.3; color: #111; margin-bottom: 25px; letter-spacing: -1.5px; }
.lat_left .btn_more { display: inline-block; padding: 10px 22px; background: #3e7d54; color: #fff; border-radius: 50px; text-decoration: none; font-size: 14px; }

.lat_right { flex: 1; min-width: 0; position: relative; overflow: hidden; }

/* [화살표 위치 유지를 위한 내부 여백] */
.swiper-outer-wrapper { position: relative; padding: 0 45px; overflow: hidden; } 
.swiper-container { overflow: hidden !important; } /* 슬라이더 자체 넘침 방지 */

/* 화살표 디자인 */
.custom-nav-prev, .custom-nav-next { 
    position: absolute; top: 40%; transform: translateY(-50%); 
    width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; 
    cursor: pointer; z-index: 100; color: #ddd; transition: 0.3s; 
}
.custom-nav-prev { left: 10px; } 
.custom-nav-next { right: 10px; } 

.custom-nav-prev:hover, .custom-nav-next:hover { color: #3e7d54; }
.custom-nav-prev i, .custom-nav-next i { font-size: 55px;color: #3e7d54; }

/* 점(Pagination) */
.swiper-pagination { position: relative !important; margin-top: 30px !important; bottom: 0 !important; text-align: center !important; }
.swiper-pagination-bullet { width: 8px; height: 8px; background: #ccc; opacity: 1; margin: 0 4px !important; }
.swiper-pagination-bullet-active { width: 24px; border-radius: 10px; background: #3e7d54 !important; }

/* 카드 디자인 */
.corp_li { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #f0f0f0; margin: 5px 0; transition: 0.3s; }
.corp_li .thumb_img { width: 100%; height: 180px; overflow: hidden; }
.corp_li .thumb_img img { width: 100%; height: 100%; object-fit: cover; }
.corp_li .item_text { padding: 20px; min-height: 80px; text-align: left; }
.corp_li .item_text h3 { font-size: 16px; font-weight: 700; color: #333; line-height: 1.4; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.btn_view_wrap { padding: 0 20px 20px; }
.btn_view { display: block; width: 100%; padding: 8px 0; border: 1px solid #f0f0f0; border-radius: 30px; color: #aaa; font-size: 13px; text-align: center; }

/* [모바일] */
@media (max-width: 1024px) {
    .corp_lat { flex-direction: column; padding: 50px 20px; max-width: 100% !important; overflow: visible !important; }
    .lat_left { flex: 1; width: 100%; text-align: center; margin-bottom: 30px; }
    .swiper-outer-wrapper { padding: 0; overflow: visible; }
    .custom-nav-prev, .custom-nav-next { display: none; }
}