@charset "utf-8";

/* 리뷰 스타일 */
.tl_review { overflow: hidden; /*padding: 185px 0 120px 11%;*/}

/* 헤더 영역 */
.review_header { display: flex; align-items: flex-end; justify-content: space-between; width: 100%; padding-right: 210px; }
.intro_box strong { display: block; font-size: 18px; font-weight: 600; color: #0075ff; margin-bottom: 20px; }
.intro_box h2 { font-size: 55px; font-weight: 500; line-height: 1.65; color: #333; letter-spacing: -2px }
.intro_box h2 strong { font-weight: 700; }

/* 네비게이션 */
.arrows_wrap { display: flex; gap: 10px; }
.arrows_wrap div { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border: 1px solid #e1e1e1; border-radius: 100%; cursor: pointer; color: #e1e1e1; transition: 0.2s; }
.arrows_wrap div:hover { border: none; color: #fff; background: #0075ff; }

/* 슬라이더 */
.review_slider { position: relative; margin-top: 90px; }
.review_slider ul li { position: relative; padding: 35px; border-radius: 30px; background: #f7f7f7; transition: 0.2s; list-style: none; }
.review_slider ul li:nth-child(2n) { margin-top: 40px; }
.review_slider ul li:hover { background: #0075ff; transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.review_slider ul li:hover a, 
.review_slider ul li:hover .card_header, 
.review_slider ul li:hover .card_date { color: #fff; }

/* 카드 내용 */
.review_slider ul li a { display: block; color: #555; text-decoration: none; font-size: 18px; font-weight: 500; line-height: 1.8; transition: 0.2s; }
.card_header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 40px; font-size: 24px; font-weight: 700; color: #222; transition: 0.2s; }
.card_header img { width: 88px; height: 88px; border-radius: 100%; object-fit: cover; }
.card_content { min-height: 80px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
.card_date { display: block; padding-top: 30px; font-size: 14px; font-weight: 700; font-style: normal; color: #0075ff; transition: 0.2s; }

/* 더보기 버튼 */
.view_more { text-align: center; margin-top: 60px; }
.view_more a { display: inline-block; padding: 15px 40px; background: #0075ff; color: #fff; font-size: 16px; font-weight: 600; border-radius: 50px; text-decoration: none; transition: 0.3s; }
.view_more a:hover { background: #0075ff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* 게시물 없을 때 */
.no_content { opacity: 0.7; }

/* 반응형 스타일 */
@media screen and (max-width: 1200px) {
    .tl_review { padding: 150px 0 100px 5%; }
    .review_header { padding-right: 150px; }
    .intro_box h2 { font-size: 28px; }
}

@media screen and (max-width: 992px) {
    .tl_review { padding: 120px 0 80px 3%; }
    .review_header { padding-right: 100px; }
    .intro_box h2 { font-size: 24px; }
    .review_slider { margin-top: 60px; }
}

@media screen and (max-width: 768px) {
    .tl_review { padding: 100px 20px 60px; }
    .review_header { flex-direction: column; align-items: flex-start; gap: 30px; padding-right: 0; }
    .arrows_wrap { align-self: flex-end; }
    .arrows_wrap div { width: 50px; height: 50px; }
    .intro_box h2 { font-size: 20px; }
    .review_slider ul li { padding: 25px; }
    .card_header { padding-bottom: 20px; }
    .review_slider ul li:nth-child(2n) { margin-top: 0; }
}

@media screen and (max-width: 576px) {
    .tl_review { padding: 80px 15px 50px; }
    .intro_box b { font-size: 16px; margin-bottom: 10px; }
    .intro_box h2 { font-size: 18px; }
    .review_slider { margin-top: 40px; }
    .review_slider ul li { padding: 20px; }
    .card_header { font-size: 16px; }
    .card_header img { width: 60px; height: 60px; }
    .card_content { font-size: 14px; min-height: 60px; }
    .view_more a { padding: 12px 30px; font-size: 14px; }
}