﻿/* 앱 버전 전용 스타일 - body.is-web에서는 전체 무효화 */
body:not(.is-app) .care_web.is-app {
    display: none !important;
}

body.is-app .care_web.is-app {
    width: 100%;
    line-height: 1.3;
    background-color: var(--color-bg-inverse);
}

.care_web.is-app .content_section {
    padding: 120px 120px 60px 120px;
}

.care_web.is-app .side_banner_wrap {
    position: fixed;
    top: 22%;
    left: 2%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: var(--z-index-4);
}

/* 타이틀 공통 top_section, score_section, review_section*/
.care_web.is-app .title {
    margin-bottom: 60px;
    font-size: var(--font-size-42);
    font-weight: var(--font-weight-sb);
    text-align: center;
}

.care_web.is-app .title .highlight {
    color: #00758D;
}

/* ////////////////////////////////////새로운 배너 영역 */
.care_web.is-app .new_banner_section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* 데스크톱용 배너 카드 */
.care_web.is-app .new_banner_section .banner_card {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #E5FAF9 0%, #B8E6E1 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 117, 141, 0.1);
}

.care_web.is-app .new_banner_section .banner_card .banner_background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.care_web.is-app .new_banner_section .banner_card .banner_gradient {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 117, 141, 0.1) 0%, transparent 60%);
}

.care_web.is-app .new_banner_section .banner_card .banner_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 60px;
    z-index: 1;
}

.care_web.is-app .new_banner_section .banner_card .banner_image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.care_web.is-app .new_banner_section .banner_card .banner_image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.care_web.is-app .new_banner_section .banner_card .banner_text_overlay {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.care_web.is-app .new_banner_section .banner_card .banner_title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    color: #00758D;
    letter-spacing: -0.02em;
}

.care_web.is-app .new_banner_section .banner_card .banner_subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #30353F;
    letter-spacing: -0.01em;
}

/* 태블릿/모바일 배너 이미지 */
.care_web.is-app .new_banner_section .banner_tablet,
.care_web.is-app .new_banner_section .banner_mobile {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.care_web.is-app .new_banner_section .banner_tablet img,
.care_web.is-app .new_banner_section .banner_mobile img {
    width: 100%;
    height: auto;
    display: block;
}

/* 반응형 표시/숨김 */
.care_web.is-app .new_banner_section .desktop_only {
    display: flex;
}

.care_web.is-app .new_banner_section .tablet_only,
.care_web.is-app .new_banner_section .mobile_only {
    display: none;
}

/* 앱 다운로드 안내 */
.care_web.is-app .new_banner_section .app_download_info {
    text-align: center;
}

.care_web.is-app .new_banner_section .app_download_info p {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #667085;
    margin: 0;
    letter-spacing: -0.01em;
}

/* 앱 다운로드 버튼 */
.care_web.is-app .new_banner_section .app_download_buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.care_web.is-app .new_banner_section .download_btn {
    width: 128px;
    height: 40px;
    background: #000000;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.care_web.is-app .new_banner_section .download_btn img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 8px 12px;
}

/* 오픈 수수료 배너 */
.care_web.is-app .open_fee_banner {
    width: 100%;
    margin: -1px 0 0 0;
    padding: 0;
}

.care_web.is-app .open_fee_banner img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

/* 데스크톱: banner_p만 표시 */
.care_web.is-app .open_fee_banner .banner_desktop {
    display: block;
}

.care_web.is-app .open_fee_banner .banner_tablet,
.care_web.is-app .open_fee_banner .banner_mobile {
    display: none;
}

/* Service Cards Section - 데스크톱에서는 숨김, 태블릿/모바일에서 표시 */
.care_web.is-app .service_cards_section {
    display: none !important;
}

.care_web.is-app .service_cards_wrapper {
    display: flex;
    gap: 10px;
}

.care_web.is-app .service_card {
    position: relative;
    flex: 1;
    background-color: #FFFFFF;
    border: 1px solid #E5E8EB;
    border-radius: 16px;
    padding: 24px;
    height: 160px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(48, 53, 63, 0.06);
}

.care_web.is-app .service_card .card_content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.care_web.is-app .service_card .card_subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #727983;
    white-space: nowrap;
    margin: 0;
}

.care_web.is-app .service_card .card_title {
    font-size: 18px;
    font-weight: 600;
    color: #30353F;
    margin: 0;
}

.care_web.is-app .service_card .card_arrow_box {
    display: flex;
    width: 10px;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.care_web.is-app .service_card .card_arrow {
    width: 5px;
    height: 10px;
}

.care_web.is-app .service_card .card_icon {
    position: absolute;
    right: 24px;
    bottom: 18px;
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.care_web.is-app .service_card .card_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* N 뱃지 스타일 */
.care_web.is-app .service_card .card_badge {
    display: none;
    width: 18px;
    height: 18px;
}

/* 데스크톱에서는 뱃지 숨김 */
@media screen and (min-width: 1025px) {
    .care_web.is-app .service_card .card_badge {
        display: none;
    }
}

/* ////////////////////////////////////모바일 다운로드 섹션 (태블릿/모바일 전용) */
.care_web.is-app .mobile_download_section {
    display: none !important;
}

/* 데스크톱에서는 숨김 */
@media screen and (min-width: 1025px) {
    .care_web.is-app .mobile_download_section {
        display: none !important;
    }
}

/* ////////////////////////////////////배너 영역 */
.care_web.is-app .bnr_section {
    height: 540px;
    background-color: #E5FAF9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    overflow: hidden;
}

.care_web.is-app .bnr_section .if_mobile,
.care_web.is-app .bnr_section .if_tablet {
    display: none;
}

/* 좌측 */
.care_web.is-app .bnr_section .left_section {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 0 60px 0 120px;
    width: fit-content;
}

/* 우측 */
.care_web.is-app .bnr_section .right_section {
    position: relative;
    overflow: hidden;
    width: 24%;
    height: 100%;
}

.care_web.is-app .bnr_section .right_section .img_box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
}

.care_web.is-app .bnr_section .right_section .family_img {
    z-index: 1;
}

.care_web.is-app .bnr_section .right_section .mockup_img {
    top: 10%;
    z-index: 0;
}

/* 텍스트 */
.care_web.is-app .bnr_section .left_section .text_section {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* 텍스트 메인 */
.care_web.is-app .bnr_section .left_section .text_section .main {
    font-size: var(--font-size-42);
    font-weight: var(--font-weight-sb);
    line-height: 1.15;
    color: var(--Text-primary, #30353F);

}

.care_web.is-app .bnr_section .left_section .text_section .main .bold {
    font-weight: var(--font-weight-b);
}

/* 텍스트 서브 */
.care_web.is-app .bnr_section .left_section .text_section .sub {
    font-size: var(--font-size-28);
    color: var(--Text-primary, #30353F);
    font-weight: var(--font-weight-r);
    line-height: 1.5;
}

/* 다운로드 */
.care_web.is-app .bnr_section .left_section .download_section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 다운로드 설명*/
.care_web.is-app .bnr_section .left_section .download_section .description {
    color: var(--Text-primary, #30353F);
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-r);
}

/* 버튼 박스 */
.care_web.is-app .bnr_section .left_section .download_section .btn_box {
    display: flex;
    gap: 8px;
}

/* 아이콘 박스 */
.care_web.is-app .bnr_section .left_section .download_section .btn_box .iconbox {
    width: 162px;
    height: 50px;
    cursor: pointer;
}

.care_web.is-app .bnr_section .left_section .download_section .btn_box .iconbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ////////////////////////////////////상단 영역 */
.care_web.is-app .top_section {
    width: 100%;
    position: relative;
}

.care_web.is-app .top_section .event_banner {
    margin: 30px 0 0 0;
    background-image: url(@/assets/img/banner_p.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 320px;
}

.care_web.is-app .top_section .event_banner img {
    display: none;
}

.care_web.is-app .top_section .download_section {
    display: none;
}

/* 백그라운드 */
.care_web.is-app .top_section .background_element {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(@/assets/img/back_logo.svg);
    background-repeat: no-repeat;
    background-position: calc(100% + 140px) calc(0% - 40px);
    filter: grayscale(100%);
}


.care_web.is-app .top_section .event_banner {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.care_web.is-app .top_section .top_inner {
    margin: 0 auto;
    width: calc(100% - 80px);
    max-width: 1200px;
}

/* 아이템 리스트 */
.care_web.is-app .top_section .top_inner .item_list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* 아이템 */
.care_web.is-app .top_section .top_inner .item_list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 28px;
    width: 100%;
    background-color: var(--color-bg-inverse);
    border-radius: var(--border-radius-16);
}

.care_web.is-app .top_section .top_inner .item_list .item>img {
    width: 100px;
}

/* 텍스트 박스 */
.care_web.is-app .top_section .top_inner .item_list .item .text_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* 숫자 */
.care_web.is-app .top_section .top_inner .item_list .item .text_box .num {
    font-size: var(--font-size-42);
    font-weight: var(--font-weight-sb);
    color: var(--color-text-brand);
}

/* 카드 타이틀 */
.care_web.is-app .top_section .top_inner .item_list .item .text_box .text {
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-m);
    color: var(--color-text-tertiary);
}

/* ////////////////////////////////////평점 영역 */

.care_web.is-app .score_section {
    margin-top: 120px;
    margin-bottom: 120px;
}

.care_web.is-app .score_section .score_inner {
    margin: 0 auto;
    width: calc(100% - 80px);
    max-width: 1200px;
}

.care_web.is-app .score_section .score_inner .contents_item {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 60px 0 60px 0;
}

.care_web.is-app .score_section .score_inner .contents_item.row {
    flex-direction: row-reverse;
}

.care_web.is-app .score_section .score_inner .contents_item .textwrap {
    width: 450px;
}

.care_web.is-app .score_section .score_inner .contents_item .textwrap .chip {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #00758D;
}

.care_web.is-app .score_section .score_inner .contents_item .textwrap .main {
    padding: 12px 0 20px 0;
    font-family: 'Pretendard', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 55px;
    color: #30353F;
}

.care_web.is-app .score_section .score_inner .contents_item .textwrap .sub {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #727983;
}

.care_web.is-app .score_section .score_inner .contents_item .imgwrap .img_score {
    width: 100%;
    max-width: 360px;
}

/* 배너 */
.care_web.is-app .score_bnr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    width: 100%;
    color: var(--color-text-primary);
    background-color: #F8F9FA;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.care_web.is-app .score_bnr::before {
    content: '';
    position: absolute;
    width: 1999px;
    height: 559.45px;
    top: 58.84px;
    z-index: 1;
    background-image: url(/medi25-care/assets/img/intro/care.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
}

.care_web.is-app .score_bnr .bnr_content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 1000px;
    max-width: 1000px;
}

.care_web.is-app .score_bnr .bnr_title {
    font-family: 'Pretendard', sans-serif;
    font-size: var(--font-size-36);
    font-weight: 700;
    line-height: 1.3;
    color: #30353F;
}

.care_web.is-app .score_bnr .bnr_text {
    font-family: 'Pretendard', sans-serif;
    font-size: var(--font-size-20);
    font-weight: 400;
    line-height: 1.3;
    color: #30353F;
}

.care_web.is-app .score_bnr .bnr_sub {
    font-family: 'Pretendard', sans-serif;
    font-size: var(--font-size-20);
    font-weight: 600;
    line-height: 1.3;
    color: #30353F;
}

/* PC 전용 표시 */
.care_web.is-app .pc_only {
    display: inline;
}

.care_web.is-app .mobile_tablet_only {
    display: none;
}

.care_web.is-app .mobile_tablet_br {
    display: none;
}

/* ////////////////////////////////////내용 영역 */

.care_web.is-app .content_section .content_inner {
    margin: 0 auto;
    max-width: 1200px;
}

/* 아이템 */
.care_web.is-app .content_section .content_inner .contents_item {
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
}

/* 아이템 */
.care_web.is-app .content_section .content_inner .contents_item.apply {
    flex-direction: row-reverse;
    padding: 120px 60px 0 60px;
}

/* 텍스트 영역 */
.care_web.is-app .content_section .content_inner .contents_item .textwrap {
    padding: 120px 40px 0 40px;
}

/* 칩 */
.care_web.is-app .content_section .content_inner .contents_item .textwrap .chip {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #00758D;
}

/* 메인 */
.care_web.is-app .content_section .content_inner .contents_item .textwrap .main {
    padding: 12px 0 20px 0;
    font-family: 'Pretendard', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 55px;
    color: #30353F;
}

/* 서브 */
.care_web.is-app .content_section .content_inner .contents_item .textwrap .sub {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #727983;
}

/* 이미지 목업 */
.care_web.is-app .content_section .content_inner .contents_item .imgwrap {
    position: relative;
}

/* 이미지 목업 */
.care_web.is-app .content_section .content_inner .contents_item .imgwrap .imgbox .img_mockup {
    width: 480px;
}

/* 본인인증 섹션 특정 스타일 - score_section과 동일 */
.care_web.is-app .content_section .content_inner .contents_item.identity_verify {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 60px 0;
}

.care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap {
    width: 450px;
    padding: 0;
}

.care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap .chip {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #00758D;
}

.care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap .main {
    padding: 12px 0 20px 0;
    font-family: 'Pretendard', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 55px;
    color: #30353F;
}

.care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap .sub {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #727983;
}

.care_web.is-app .content_section .content_inner .contents_item.identity_verify .imgwrap .imgbox {
    width: 273px;
    height: 238px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.care_web.is-app .content_section .content_inner .contents_item.identity_verify .imgwrap .imgbox .img_mockup {
    width: 261px;
    height: 212px;
    object-fit: contain;
}

/* 자격증 인증 섹션 특정 스타일 - score_section과 동일 */
.care_web.is-app .content_section .content_inner .contents_item.certificate_verify {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-around;
    padding: 60px 0;
}

.care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap {
    width: 450px;
    padding: 0;
}

.care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap .chip {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #00758D;
}

.care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap .main {
    padding: 12px 0 20px 0;
    font-family: 'Pretendard', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 55px;
    color: #30353F;
}

.care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap .sub {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #727983;
}

.care_web.is-app .content_section .content_inner .contents_item.certificate_verify .imgwrap .imgbox {
    width: 208px;
    height: 252px;
}

.care_web.is-app .content_section .content_inner .contents_item.certificate_verify .imgwrap .imgbox .img_mockup {
    width: 174px;
    height: 232px;
}

/* ////////////////////////////////////후기 영역 */
.care_web.is-app .review_section {
    padding: 120px 0;
    width: 100%;
    background-image: url(/medi25-care/assets/img/back_review.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.care_web.is-app .review_section .review_inner {
    margin: 0 auto;
    max-width: 1376px;
}

/* 후기 타이틀 */
.care_web.is-app .review_section .review_inner .title {
    color: var(--color-text-inverse);
}

/* 슬라이드 영역 */
.care_web.is-app .review_section .review_inner .slide_section {
    position: relative;
    overflow: hidden;
}

/* 슬라이드 페이지 */
.care_web.is-app .review_section .review_inner .swiper_container,
.care_web.is-app .review_section .review_inner .review-swiper-container {
    margin: 40px auto 0;
    width: calc(100% - 80px);
    max-width: 1200px;
    overflow: hidden;
    
}

/* 버튼 공통 - 데스크톱에서만 표시 */
.care_web.is-app .review_section .review_inner .swiper_button_prev,
.care_web.is-app .review_section .review_inner .swiper_button_next,
.care_web.is-app .review_section .swiper_button_prev,
.care_web.is-app .review_section .swiper_button_next {
    width: 48px;
    height: 48px;
    background-color: var(--color-bg-inverse);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.care_web.is-app .review_section .review_inner .swiper_button_prev:hover,
.care_web.is-app .review_section .review_inner .swiper_button_next:hover,
.care_web.is-app .review_section .swiper_button_prev:hover,
.care_web.is-app .review_section .swiper_button_next:hover {
    background-color: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.care_web.is-app .review_section .review_inner .swiper_button_prev svg,
.care_web.is-app .review_section .review_inner .swiper_button_next svg,
.care_web.is-app .review_section .swiper_button_prev svg,
.care_web.is-app .review_section .swiper_button_next svg {
    color: #667085;
}

/* 이전 */
.care_web.is-app .review_section .review_inner .swiper_button_prev,
.care_web.is-app .review_section .swiper_button_prev {
    left: 20px;
}

/* 다음 */
.care_web.is-app .review_section .review_inner .swiper_button_next,
.care_web.is-app .review_section .swiper_button_next {
    right: 20px;
}

.care_web.is-app .review_section .review_inner .swiper_button_prev::after,
.care_web.is-app .review_section .review_inner .swiper_button_next::after {
    display: none;
}

.care_web.is-app .review_section .review_inner .swiper_button_prev.swiper-button-disabled,
.care_web.is-app .review_section .review_inner .swiper_button_next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 리뷰 항목 */
.care_web.is-app .review_section .review_inner .review_item {
    padding: 32px 28px;
    width: 100%;
    background-color: var(--color-bg-inverse);
    border-radius: var(--border-radius-20);
    text-align: center;
}

/* 보호자 영역 */
.care_web.is-app .review_section .review_inner .review_item .family_section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 20px 0;
}

/* 보호자 탑 */
.care_web.is-app .review_section .review_inner .review_item .family_section .top_box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 보호자 이름 */
.care_web.is-app .review_section .review_inner .review_item .family_section .top_box .family_name {
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-m);
}

/* 별점 */
.care_web.is-app .review_section .review_inner .review_item .family_section .top_box .score {
    display: flex;
    justify-content: center;
    gap: 4px;
}

/* 별점 */
.care_web.is-app .review_section .review_inner .review_item .family_section .top_box .score>img {
    width: 24px;
}

/* 후기 */
.care_web.is-app .review_section .review_inner .review_item .family_section .review_contents {
    height: 100px;
    color: var(--color-text-tertiary);
    word-break: keep-all;
}

/* 간병인 영역 */
.care_web.is-app .review_section .review_inner .review_item .caregiver_section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0 0 0;
    border-top: var(--border-width-1) solid var(--color-border-primary);
}

/* 간병인 이름 */
.care_web.is-app .review_section .review_inner .review_item .caregiver_section .caregiver_name {
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-m);
}

/* 간병 장소 */
.care_web.is-app .review_section .review_inner .review_item .caregiver_section .place {
    color: var(--color-text-tertiary);
}

/* ////////////////////////////////////버튼 영역 */
.care_web.is-app .btn_wrap {
    width: 100%;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-index-1);
}

.care_web.is-app .btn_wrap .btn_medi25care_go {
    padding: 20px 0;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    font-size: var(--font-size-24);
    font-weight: var(--font-weight-sb);
    color: var(--color-text-inverse);
    background-color: var(--color-bg-brand);
    border-radius: var(--border-radius-full);
}

/* ////////////////////////////////////QR 영역 */
.care_web.is-app .qr_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    position: fixed;
    right: 2%;
    top: 20%;
    background-color: #00C5C5;
    border-radius: var(--border-radius-16);
    z-index: var(--z-index-1);
}

/* ////////////////////////////////////하단 슬라이드 배너 */
.care_web.is-app .bottom_banner_section {
    display: none;
}

/* QR */
.care_web.is-app .qr_section .description {
    font-weight: var(--font-weight-m);
    color: var(--color-text-inverse);
}

/* QR */
.care_web.is-app .qr_section .qr_box {
    padding: 4px;
    width: 120px;
    background-color: var(--color-bg-inverse);
    border-radius: var(--border-radius-8);
}

.care_web.is-app .bnr_section .left_section .text_section .main .if_laptop {
    display: none;
}

/* _____________________________________________ PC */
@media screen and (min-width: 1025px) {
    .care_web.is-app .review_section .review_inner .review-swiper-container {
        margin: 0 auto 0;
        width: calc(100% - 80px);
        max-width: 1200px;
        overflow: hidden;
    }

    .care_web.is-app .score_bnr::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 559.45px;
        top: 58.84px;
        z-index: 1;
        background-image: url(/medi25-care/assets/img/intro/care.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
    }

}

/* _____________________________________________ 랩탑 */
@media screen and (max-width: 1280px) {
    .care_web.is-app .bnr_section {
        background-position: calc(100% + 32px) calc(0% - 8px);
        height: 400px;
    }

    .care_web.is-app .bnr_section .left_section .text_section .main .if_laptop {
        display: block;
    }

    .care_web.is-app .top_section .background_element {
        background-position: calc(100% + 96px) calc(0% - 20px);
    }


}

/*_______________________________________________태블릿*/
@media screen and (max-width: 1024px) {
    .care_web.is-app {
        margin-top: -144px;
        padding: 156px 0 60px 0;
    }

    /* Service Cards - 태블릿에서 표시 */
    .care_web.is-app .service_cards_section {
        display: block !important;
        margin: 20px auto 40px;
        width: calc(100% - 64px);
        max-width: 100%;
    }

    .care_web.is-app .service_cards_wrapper {
        gap: 15px;
    }

    .care_web.is-app .service_card {
        flex: 1;
        min-width: 0;
        padding: 4.5% 4%;
        aspect-ratio: 344.5 / 310;
        height: auto;
        border-radius: 24px;
        box-sizing: border-box;
    }

    .care_web.is-app .service_card .card_subtitle {
        font-size: clamp(14px, 2.3vw, var(--font-size-26));
        font-weight: var(--font-weight-m);
        margin-bottom: 1.7%;
    }

    .care_web.is-app .service_card .card_title {
        font-size: var(--font-size-32);
        font-weight: var(--font-weight-sb);
    }

    .care_web.is-app .service_card .card_icon {
        width: 44%;
        height: auto;
        aspect-ratio: 1 / 1;
        right: 4%;
        bottom: 4.5%;
    }

    .care_web.is-app .service_card .card_icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* 태블릿 N 뱃지 */
    .care_web.is-app .service_card .card_badge.tablet_badge {
        display: inline-block;
        width: 24px;
        height: 24px;
    }

    .care_web.is-app .service_card .card_badge.mobile_badge {
        display: none;
    }

    .care_web.is-app .service_card .card_title_row {
    display: flex;
    gap: 10px;
    align-items: center;
    }

    /* 새로운 배너 섹션 - 태블릿 */
    .care_web.is-app .new_banner_section {
        padding: 20px;
        gap: 24px;
    }

    .care_web.is-app .new_banner_section .desktop_only {
        display: none;
    }

    .care_web.is-app .new_banner_section .tablet_only {
        display: block;
    }

    .care_web.is-app .new_banner_section .mobile_only {
        display: none;
    }

    .care_web.is-app .new_banner_section .app_download_info p {
        font-size: 15px;
    }

    .care_web.is-app .new_banner_section .download_btn {
        width: 128px;
        height: 40px;
    }

    .care_web.is-app .new_banner_section .download_btn img {
        padding: 8px 14px;
    }

    .care_web.is-app .open_fee_banner {
        margin: 0;
    }

    /* 태블릿: banner_t만 표시 */
    .care_web.is-app .open_fee_banner .banner_desktop,
    .care_web.is-app .open_fee_banner .banner_mobile {
        display: none;
    }

    .care_web.is-app .open_fee_banner .banner_tablet {
        display: block;
    }

    /* 모바일 다운로드 섹션 - 태블릿 */
    .care_web.is-app .mobile_download_section {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 24px 20px;
        margin: 0 auto 40px;
        width: calc(100% - 40px);
        max-width: 600px;
    }

    .care_web.is-app .mobile_download_section .download_info {
        text-align: center;
    }

    .care_web.is-app .mobile_download_section .download_info p {
        font-family: 'Pretendard', sans-serif;
        font-weight: 600;
        font-size: 15px;
        line-height: 1.5;
        color: #667085;
        margin: 0;
    }

    .care_web.is-app .mobile_download_section .download_info .highlight {
        font-weight: 700;
        color: #00758D;
    }

    .care_web.is-app .mobile_download_section .download_buttons {
        display: flex;
        gap: 8px;
        justify-content: center;
        width: 100%;
    }

    .care_web.is-app .mobile_download_section .download_btn {
        width: 166px;
        height: 52px;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        flex-shrink: 0;
    }

    .care_web.is-app .mobile_download_section .download_btn img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .care_web.is-app .bnr_section .if_tablet {
        display: block;
    }


    /* 타이틀 공통 top_section, score_section, review_section*/
    .care_web.is-app .title {
        margin-bottom: 20px;
        font-size: var(--font-size-36);
    }

    /* ////////////////////////////////////배너 영역 */
    .care_web.is-app .bnr_section {
        height: fit-content;
        margin: 0 auto 50px;
        width: calc(100% - 64px);
        background-position: calc(100% + 64px) calc(0% - 16px);
        background-size: cover;
        border: 1px solid #D1E6E5;
        border-radius: 20px;
    }

    .care_web.is-app .bnr_section .left_section,
    .care_web.is-app .bnr_section .right_section {
        display: none;
    }

    .care_web.is-app .if_tablet {
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    
    .care_web.is-app .if_tablet img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* 다운로드 */
    .care_web.is-app .top_section .download_section {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    /* 다운로드 설명*/
    .care_web.is-app .top_section .download_section .description {
        color: var(--color-text-tertiary);
    }

    .care_web.is-app .top_section .download_section .description span.bold {
        font-weight: var(--font-weight-b);
    }

    .care_web.is-app .top_section .download_section .description span.underline {
        text-decoration: underline;
    }

    .care_web.is-app .top_section .download_section .iconbox {
        width: 240px;
    }

    /* 버튼 박스 */
    .care_web.is-app .top_section .download_section .btn_box {
        display: flex;
        gap: 8px;
    }


    /* 좌측 */
    .care_web.is-app .bnr_section .left_section {
        width: calc(100% - 140px);
    }

    /* 텍스트 메인 */
    .care_web.is-app .bnr_section .left_section .text_section .main {
        font-size: 40px;
    }

    /* 텍스트 서브 */
    .care_web.is-app .bnr_section .left_section .text_section .sub {
        font-size: var(--font-size-20);
    }

    /* ////////////////////////////////////상단 영역 */
    .care_web.is-app .top_section {
        padding: 0;
    }

    .care_web.is-app .top_section .event_banner {
        margin: 30px 0 0 0;
        background-image: url(@/assets/img/banner_t.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 240px;
    }

    .care_web.is-app .top_section .event_banner img {
        display: none;
    }

    /* 백그라운드 */
    .care_web.is-app .top_section .background_element {
        background-size: 492px;
        background-position: calc(100% + 168px) calc(0% - -20px);
    }

    .care_web.is-app .top_section .top_inner {
        width: calc(100% - 64px);
    }

    /* 아이템 리스트 */
    .care_web.is-app .top_section .top_inner .item_list {
        gap: 12px;
    }

    .care_web.is-app .top_section .top_inner .item_list .item>img {
        width: 80px;
    }

    /* 숫자 */
    .care_web.is-app .top_section .top_inner .item_list .item .text_box .num {
        font-size: var(--font-size-28);
    }

    /* 카드 타이틀 */
    .care_web.is-app .top_section .top_inner .item_list .item .text_box .text {
        font-size: var(--font-size-20);
    }

    .care_web.is-app .score_section {
        margin-top: 60px;
        margin-bottom: 0;
    }

    /* ////////////////////////////////////평점 영역 */
    .care_web.is-app .score_section .score_inner {
        width: calc(100% - 64px);
    }

    .care_web.is-app .score_section .score_inner .contents_item {
        padding: 80px 0;
    }

    .care_web.is-app .score_section .score_inner .contents_item .textwrap {
        width: 292px;
    }

    .care_web.is-app .score_section .score_inner .contents_item .textwrap .chip {
        font-size: var(--font-size-16);
    }

    .care_web.is-app .score_section .score_inner .contents_item .textwrap .main {
        padding: 8px 0 16px 0;
        font-size: var(--font-size-28);
        line-height: 1.3;
    }

    .care_web.is-app .score_section .score_inner .contents_item .textwrap .sub {
        font-size: var(--font-size-14);
    }

    .care_web.is-app .score_section .score_inner .contents_item .imgwrap .img_score {
        max-width: 300px;
    }

    /* 배너 */
    .care_web.is-app .score_bnr {
        padding: 80px 40px;
    }

    /* 태블릿에서는 모바일처럼 CARE 이미지를 아래 배치 */
    .care_web.is-app .score_bnr::before {
        width: 826px;
        height: 231px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        top: auto;
        background-size: contain;
        background-position: center bottom;
    }

    .care_web.is-app .score_bnr .bnr_content {
        max-width: 369px;
    }

    .care_web.is-app .score_bnr .bnr_title {
        font-size: var(--font-size-36);
    }

    .care_web.is-app .score_bnr .bnr_text {
        font-size: var(--font-size-16);
        font-weight: var(--font-weight-r);
    }

    .care_web.is-app .score_bnr .bnr_sub {
        font-size: var(--font-size-16);
        font-weight: var(--font-weight-sb);
    }

    /* 태블릿/모바일 전용 표시 */
    .care_web.is-app .pc_only {
        display: none !important;
    }

    .care_web.is-app .mobile_tablet_only {
        display: inline;
    }

    .care_web.is-app .bnr_text.mobile_tablet_only,
    .care_web.is-app .bnr_sub.mobile_tablet_only {
        display: block;
    }

    .care_web.is-app .mobile_tablet_br {
        display: block;
    }

    /* ////////////////////////////////////내용 영역 */
    .care_web.is-app .content_section {
        padding: 80px 0;
    }

    /* 아이템 */
    .care_web.is-app .content_section .content_inner .contents_item {
        padding: 0;
    }

    /* 아이템 */
    .care_web.is-app .content_section .content_inner .contents_item.apply {
        padding: 60px 0;
    }

    /* 텍스트 영역 */
    .care_web.is-app .content_section .content_inner .contents_item .textwrap {
        padding: 80px 40px 0 40px;
    }

    /* 칩 */
    .care_web.is-app .content_section .content_inner .contents_item .textwrap .chip {
        font-size: var(--font-size-20);
        color: #00758D;
    }

    /* 메인 */
    .care_web.is-app .content_section .content_inner .contents_item .textwrap .main {
        padding: 8px 0 16px 0;
        font-size: var(--font-size-42);
    }

    /* 서브 */
    .care_web.is-app .content_section .content_inner .contents_item .textwrap .sub {
        font-size: var(--font-size-18);
    }

    /* 이미지 목업 */
    .care_web.is-app .content_section .content_inner .contents_item .imgwrap .imgbox .img_mockup {
        width: 280px;
    }

    /* 본인인증/자격증 섹션은 score_section과 동일한 사이즈 */
    .care_web.is-app .content_section .content_inner .contents_item.identity_verify {
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 60px;
    }
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap,
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap {
        width: auto;
        max-width: 350px;
        padding: 0;
    }

    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap .chip,
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap .chip {
        font-size: var(--font-size-16);
        color: #00758D;
        margin-bottom: 12px;
    }

    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap .main,
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap .main {
        padding: 0 0 20px 0;
        font-size: var(--font-size-32);
        line-height: 1.2;
    }

    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap .sub,
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap .sub {
        font-size: var(--font-size-14);
        line-height: 1.5;
    }

    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .imgwrap,
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .imgwrap {
        flex-shrink: 0;
    }

    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .imgwrap .imgbox,
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .imgwrap .imgbox {
        width: 200px;
        height: auto;
    }

    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .imgwrap .imgbox .img_mockup,
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .imgwrap .imgbox .img_mockup {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* ////////////////////////////////////후기 영역 */
    .care_web.is-app .review_section {
        padding: 100px 0;
        background-size: cover;
        background-position: center;
    }

    /* 슬라이드 페이지 */
    .care_web.is-app .review_section .review_inner .swiper_container {
        width: calc(100% - 64px);
    }

    /* 버튼 공통 - 태블릿에서 숨김 */
    .care_web.is-app .review_section .review_inner .swiper_button_prev,
    .care_web.is-app .review_section .review_inner .swiper_button_next,
    .care_web.is-app .review_section .swiper_button_prev,
    .care_web.is-app .review_section .swiper_button_next {
        display: none !important;
    }

    /* ////////////////////////////////////버튼 영역 */
    .care_web.is-app .btn_wrap {
        bottom: 20px;
    }

    .care_web.is-app .btn_wrap .btn_medi25care_go {
        padding: 16px 0;
        font-size: var(--font-size-20);
    }

    /* QR */
    .care_web.is-app .qr_section {
        display: none;
    }


}

/*_______________________________________________모바일*/
@media screen and (max-width: 767px) {
    .care_web.is-app {
        margin-top: -132px;
        padding: 132px 0 60px 0;
    }

    /* QR 섹션 숨김 */
    .care_web.is-app .qr_section {
        display: none;
    }

    

    /* Service Cards - 모바일에서 표시 */
    .care_web.is-app .service_cards_section {
        display: block !important;
        margin: 0 auto 40px;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .care_web.is-app .service_cards_wrapper {
        gap: 10px;
    }

    .care_web.is-app .service_card {
        padding: 20px;
        height: 160px;
        border-radius: 16px;
    }

    .care_web.is-app .service_card .card_subtitle {
        font-size: 12px;
    }

    .care_web.is-app .service_card .card_title {
        font-size: 18px;
        white-space: nowrap;
    }

    .care_web.is-app .service_card .card_icon {
        width: 78px;
        height: 78px;
        right: 20px;
        bottom: 18px;
    }

    /* 모바일 N 뱃지 */
    .care_web.is-app .service_card .card_badge.mobile_badge {
        display: inline-block;
        width: 18px;
        height: 18px;
    }

    .care_web.is-app .service_card .card_badge.tablet_badge {
        display: none;
    }

    .care_web.is-app .service_card .card_title_row {
    display: flex;
    gap: 4px;
    align-items: center;
    }

    /* 새로운 배너 섹션 - 모바일 */
    .care_web.is-app .new_banner_section {
        padding: 20px;
        gap: 30px;
    }

    .care_web.is-app .new_banner_section .desktop_only {
        display: none;
    }

    .care_web.is-app .new_banner_section .tablet_only {
        display: none;
    }

    .care_web.is-app .new_banner_section .mobile_only {
        display: block;
    }

    .care_web.is-app .new_banner_section .app_download_info p {
        font-size: 14px;
    }

    .care_web.is-app .new_banner_section .app_download_buttons {
        gap: 8px;
        width: 100%;
        max-width: 343px;
    }

    .care_web.is-app .new_banner_section .download_btn {
        width: calc(50% - 4px);
        height: 40px;
        border-radius: 6px;
    }

    .care_web.is-app .new_banner_section .download_btn img {
        padding: 8px 12px;
    }

    .care_web.is-app .open_fee_banner {
        margin: 0;
        width: 100%;
    }
    
    .care_web.is-app .open_fee_banner img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* 모바일: banner_m만 표시 */
    .care_web.is-app .open_fee_banner .banner_desktop,
    .care_web.is-app .open_fee_banner .banner_tablet {
        display: none;
    }

    .care_web.is-app .open_fee_banner .banner_mobile {
        display: block;
    }

    /* 모바일 다운로드 섹션 - 모바일 */
    .care_web.is-app .mobile_download_section {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px 20px 20px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    .care_web.is-app .mobile_download_section .download_info {
        text-align: center;
        width: 100%;
    }

    .care_web.is-app .mobile_download_section .download_info p {
        font-family: 'Pretendard', sans-serif;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.29;
        color: #667085;
        margin: 0;
    }

    .care_web.is-app .mobile_download_section .download_info .highlight {
        font-weight: 700;
        color: #00758D;
    }

    .care_web.is-app .mobile_download_section .download_buttons {
        display: flex;
        gap: 8px;
        justify-content: center;
        width: 100%;
        max-width: 280px;
    }

    .care_web.is-app .mobile_download_section .download_btn {
        width: 128px;
        height: 40px;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        flex-shrink: 0;
    }

    .care_web.is-app .mobile_download_section .download_btn img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* 타이틀 공통 top_section, score_section, review_section*/
    .care_web.is-app .title {
        margin-top: 40px;
        margin-bottom: 60px;
        font-family: 'Pretendard', sans-serif;
        font-size: 24px;
        font-weight: 700;
        line-height: 31.2px;
        color: #30353F;
        text-align: center;
    }

    /* ////////////////////////////////////배너 영역 */
    .care_web.is-app .bnr_section {
        padding: 0;
        margin: 0 auto 20px;
        border: none;
        background-color: transparent;
        background-image: none;
        width: 100%;
    }
    
    /* 배너 카드 - 모바일 */
    .care_web.is-app .bnr_section .if_mobile {
        display: block;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .care_web.is-app .bnr_section .if_mobile img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .care_web.is-app .bnr_section .left_section {
        display: none;
    }

    .care_web.is-app .bnr_section .if_tablet {
        display: none;
    }

    /* 텍스트 */
    .care_web.is-app .bnr_section .left_section .text_section {
        gap: 10px;
    }

    /* 텍스트 메인 */
    .care_web.is-app .bnr_section .left_section .text_section .main {
        font-size: var(--font-size-18);
    }

    /* 텍스트 서브 */
    .care_web.is-app .bnr_section .left_section .text_section .sub {
        font-size: var(--font-size-12);
    }

    .care_web.is-app .top_section .download_section {
        margin: 0 auto;
        width: calc(100% - 40px);
    }

    /* 버튼 박스 */
    .care_web.is-app .top_section .download_section .btn_box {
        gap: 8px;
    }

    .care_web.is-app .top_section .download_section .description {
        font-size: var(--font-size-14);
    }

    .care_web.is-app .top_section .download_section .iconbox {
        width: 100%;
    }

    .care_web.is-app .top_section .download_section .btn_box {
        margin: 0 auto;
        width: 100%;
        max-width: 340px;
    }

    .care_web.is-app .top_section .event_banner {
        margin: 20px 0 0 0;
        background-image: none;
        height: initial;
    }

    .care_web.is-app .top_section .event_banner img {
        display: block;
    }

    /* 백그라운드 */
    .care_web.is-app .top_section .background_element {
        background-size: 248px;
        background-position: calc(100% + 80px) calc(0% - -60px);
    }

    .care_web.is-app .top_section .top_inner {
        width: calc(100% - 40px);
    }

    /* 아이템 리스트 */
    .care_web.is-app .top_section .top_inner .item_list {
        flex-direction: column;
        gap: 12px;
    }

    /* 아이템 */
    .care_web.is-app .top_section .top_inner .item_list .item {
        flex-direction: row;
        justify-content: space-evenly;
        padding: 20px 28px;
    }

    .care_web.is-app .top_section .top_inner .item_list .item>img {
        width: 56px;
    }

    /* 텍스트 박스 */
    .care_web.is-app .top_section .top_inner .item_list .item .text_box {
        flex-direction: column-reverse;
        gap: 4px;
    }

    /* 숫자 */
    .care_web.is-app .top_section .top_inner .item_list .item .text_box .num {
        font-size: var(--font-size-24);
    }

    /* 카드 타이틀 */
    .care_web.is-app .top_section .top_inner .item_list .item .text_box .text {
        font-size: var(--font-size-16);
    }

    /* ////////////////////////////////////평점 영역 */

    .care_web.is-app .score_section {
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .care_web.is-app .score_section .score_inner {
        width: 100%;
        max-width: 375px;
        padding: 0 20px 0;
        margin: 0 auto;
    }

    .care_web.is-app .score_section .score_inner .contents_item {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 80px 0 0 0;
        border-radius: 12px;
    }

    .care_web.is-app .score_section .score_inner .contents_item:first-of-type {
        padding-top: 0;
    }

    .care_web.is-app .score_section .score_inner .contents_item.row {
        flex-direction: column-reverse;
    }

    .care_web.is-app .score_section .score_inner .contents_item .textwrap {
        width: auto;
        text-align: center;
    }

    .care_web.is-app .score_section .score_inner .contents_item .textwrap .chip {
        font-family: 'Pretendard', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #00758D;
        margin-bottom: 8px;
    }

    .care_web.is-app .score_section .score_inner .contents_item .textwrap .main {
        font-family: 'Pretendard', sans-serif;
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        color: #30353F;
        padding: 0;
        margin-bottom: 16px;
    }



    .care_web.is-app .score_section .score_inner .contents_item .textwrap .sub {
        font-family: 'Pretendard', sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 18.2px;
        color: #727983;
    }

    .care_web.is-app .score_section .score_inner .contents_item .imgwrap {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .care_web.is-app .score_section .score_inner .contents_item .imgwrap .imgbox {
        width: 100%;
        max-width: 275px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .care_web.is-app .score_section .score_inner .contents_item .imgwrap .img_score {
        width: 100%;
        max-width: 275px;
        height: auto;
        object-fit: contain;
    }

    /* 배너 - CARE section */
    .care_web.is-app .score_bnr {
        padding: 60px 20px;
        background-color: #F8F9FA;
        width: 100%;
        min-height: 360px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }

    .care_web.is-app .score_bnr::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 170px;
        bottom: -30px;
        left: 50%;
        z-index: 1;
        background-image: url(/medi25-care/assets/img/intro/care.png);
        background-size: auto 170px;
        background-repeat: no-repeat;
        background-position: left bottom;
    }
    
    .care_web.is-app .score_bnr .bnr_content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .care_web.is-app .score_bnr .bnr_title {
        font-family: 'Pretendard', sans-serif;
        font-size: 28px;
        font-weight: 700;
        line-height: 36.4px;
        color: #30353F;
    }

    .care_web.is-app .score_bnr .bnr_text {
        font-family: 'Pretendard', sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 20.8px;
        color: #30353F;
    }

    .care_web.is-app .score_bnr .bnr_sub {
        font-family: 'Pretendard', sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 20.8px;
        color: #30353F;
    }
    


    /* ////////////////////////////////////내용 영역 */
    .care_web.is-app .content_section {
        padding: 20px 0 0;
    }

    .care_web.is-app .content_section .content_inner {
        width: calc(100% - 40px);
    }

    /* 아이템 */
    .care_web.is-app .content_section .content_inner .contents_item {
        flex-direction: column;
        gap: 12px;
        padding: 0px 20px;
    }

    /* 아이템 */
    .care_web.is-app .content_section .content_inner .contents_item.apply {
        flex-direction: column;
        padding: 80px 0 0 0;
    }

    /* 텍스트 영역 */
    .care_web.is-app .content_section .content_inner .contents_item .textwrap {
        padding: 0;
        text-align: center;
    }

    /* 칩 */
    .care_web.is-app .content_section .content_inner .contents_item .textwrap .chip {
        font-size: var(--font-size-16);
    }

    /* 메인 */
    .care_web.is-app .content_section .content_inner .contents_item .textwrap .main {
        padding: 8px 0 16px 0;
        font-size: var(--font-size-28);
    }

    /* 서브 */
    .care_web.is-app .content_section .content_inner .contents_item .textwrap .sub {
        font-size: var(--font-size-14);
    }

    .care_web.is-app .content_section .content_inner .contents_item .imgwrap .imgbox {
        position: relative;
        height: 428px;
    }

    /* 이미지 목업 */
    .care_web.is-app .content_section .content_inner .contents_item .imgwrap .imgbox .img_mockup {
        margin: 0;
        width: 240px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    /* 본인인증/자격증 섹션은 absolute 해제 */
    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .imgwrap .imgbox .img_mockup,
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .imgwrap .imgbox .img_mockup {
        position: static;
        transform: none;
        left: auto;
        bottom: auto;
        margin: 0;
    }

    /* 본인인증 섹션 모바일 */
    .care_web.is-app .content_section .content_inner .contents_item.identity_verify {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 40px;
    }

    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap {
        align-items: center;
        text-align: center;
        width: auto;
    }

    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .imgwrap {
        width: auto;
    }

    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .imgwrap .imgbox {
        width: 215px;
        height: 176px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .imgwrap .imgbox .img_mockup {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap .chip {
        font-family: 'Pretendard', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #00758D;
    }
    
    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap .main {
        font-family: 'Pretendard', sans-serif;
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        color: #30353F;
    }
    
    .care_web.is-app .content_section .content_inner .contents_item.identity_verify .textwrap .sub {
        font-family: 'Pretendard', sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 18.2px;
        color: #727983;
    }

    /* 자격증 인증 섹션 모바일 */
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify {
        flex-direction: column;
        align-items: center;
        padding: 80px 20px 60px;
        gap: 40px;
    }

    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap {
        align-items: center;
        text-align: center;
        width: auto;
    }

    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .imgwrap {
        width: auto;
    }

    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .imgwrap .imgbox {
        width: 160px;
        height: 207px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .imgwrap .imgbox .img_mockup {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap .chip {
        font-family: 'Pretendard', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #00758D;
    }
    
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap .main {
        font-family: 'Pretendard', sans-serif;
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        color: #30353F;
    }
    
    .care_web.is-app .content_section .content_inner .contents_item.certificate_verify .textwrap .sub {
        font-family: 'Pretendard', sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 18.2px;
        color: #727983;
    }

    /* ////////////////////////////////////후기 영역 */
    .care_web.is-app .review_section {
        padding: 80px 0;
        width: 100%;
        margin: 0 auto;
        background-image: url(/medi25-care/assets/img/back_review.png);
        background-size: cover;
        background-position: center;
    }
    
    .care_web.is-app .review_section .review_inner .title {
        font-family: 'Pretendard', sans-serif;
        font-size: 28px;
        font-weight: 600;
        color: #FFFFFF;
        text-align: center;

    }

    .care_web.is-app .review_section .review_inner .review_title {
        font-family: 'Pretendard', sans-serif;
        font-size: 28px;
        font-weight: 600;
        color: #FFFFFF;
        text-align: center;
        margin-bottom: 0;
        margin-top: 0;
    }

    /* 슬라이드 페이지 */
    .care_web.is-app .review_section .review_inner .swiper_container {
        width: calc(100% - 40px);
    }
    
    /* 화살표 버튼 숨김 */
    .care_web.is-app .review_section .swiper_button_next,
    .care_web.is-app .review_section .swiper_button_prev {
        display: none !important;
    }
    
    /* 리뷰 카드 */
    .care_web.is-app .review_section .review_inner .review_item {
        background-color: #FFFFFF;
        border-radius: 20px;
        padding: 32px 20px;
    }
    
    .care_web.is-app .review_section .review_inner .review_item .family_section .top_box .family_name {
        font-family: 'Noto Sans', sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #1D2939;
    }
    
    .care_web.is-app .review_section .review_inner .review_item .family_section .top_box .score {
        gap: 4px;
    }
    
    .care_web.is-app .review_section .review_inner .review_item .family_section .top_box .score img {
        width: 24px;
        height: 24px;
    }
    
    .care_web.is-app .review_section .review_inner .review_item .family_section .review_contents {
        font-family: 'Pretendard', sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        color: #667085;
    }
    
    .care_web.is-app .review_section .review_inner .review_item .caregiver_section {
        border-top: 1px solid #D0D5DD;
        padding-top: 20px;
        gap: 8px;
    }
    
    .care_web.is-app .review_section .review_inner .review_item .caregiver_section .caregiver_name {
        font-family: 'Noto Sans', sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #1D2939;
    }
    
    .care_web.is-app .review_section .review_inner .review_item .caregiver_section .place {
        font-family: 'Pretendard', sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #667085;
    }

    /* ////////////////////////////////////버튼 영역 */
    .care_web.is-app .btn_wrap .btn_medi25care_go {
        width: 90%;
        font-size: var(--font-size-18);
    }

    /* 2026.02.04 윤지상 - 리뉴얼 */
    .care_web.is-app .bnr_section {
        flex-direction: column;
        height: fit-content;
    }

    .care_web.is-app .bnr_section .left_section,
    .care_web.is-app .bnr_section .right_section {
        display: none;
    }

    .care_web.is-app .top_section .download_section .description {
        font-size: var(--font-size-12);
        font-weight: var(--font-weight-sb);
    }

    .care_web.is-app .top_section .download_section .btn_box {
        width: 80%;
    }

    .care_web.is-app .care_section {
        flex-direction: column-reverse;
        padding: 60px 8%;
    }

    .care_web.is-app .dolbom_section {
        flex-direction: column;
        padding: 0px 8%;
        padding-bottom: 40px;
        height: fit-content
    }

    .care_web.is-app .care_section .content_text,
    .care_web.is-app .dolbom_section .content_text {
        align-items: center;
        text-align: center;
    }

    .care_web.is-app .care_section .content_text .content_text_main,
    .care_web.is-app .dolbom_section .content_text .content_text_main {
        font-size: var(--font-size-28);
    }

    .care_web.is-app .care_section .content_text .content_text_sub,
    .care_web.is-app .dolbom_section .content_text .content_text_sub {
        font-size: var(--font-size-14);
    }

    .care_web.is-app .benefit_section {
        height: 460px;
        padding: 80px 44px;
    }

    .care_web.is-app .benefit_content .benefit_title {
        font-size: var(--font-size-28);
        word-break: keep-all;
        text-align: center;
    }

    .care_web.is-app .benefit_content .benefit_main {
        display: none;
    }

    .care_web.is-app .benefit_section .benefit_content .benefit_mobile_main {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 28px;
        color: var(--color-text-inverse);
        font-weight: var(--font-weight-s);
        font-size: var(--font-size-16);
    }

    .care_web.is-app .benefit_section .benefit_content .benefit_mobile_main > span {
        font-weight: var(--font-weight-sb);
    }

    .care_web.is-app .benefit_section .benefit_content {
        gap: 40px;
        justify-content: center;
        margin-top: 0;
        word-break: keep-all;
    }

    .care_web.is-app .benefit_section .bg_image {
        background-position: 60%;
        background-blend-mode: multiply;
    }
}


/* 앱 버전에서는 모바일 다운로드 섹션 숨김 */
.care_web.is-app .mobile_download_section {
    display: none !important;
}