/* ============================================================
   Life V2 - Property Page Styles
   Depends on: life_v2_common.css (variables, reset, header, footer)
   Breakpoint: 768px (mobile-first)
   ============================================================ */

/* --- Section-level overrides for property pages --- */
.lv2-prop .lv2-section-caption__text {
    color: var(--lv2-secondary);
}

.lv2-prop .lv2-section-heading {
    color: var(--lv2-primary) !important;
}

/* ============================================================
   1. Hero
   ============================================================ */
.lv2-prop .lv2-prop-hero {
    position: relative;
    width: 100%;
    min-height: 508px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lv2-prop .lv2-prop-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Swiper 컨테이너가 Hero 전체를 채우도록 */
.lv2-prop #lv2PropHeroBg.swiper {
    width: 100%;
    height: 100%;
}

.lv2-prop #lv2PropHeroBg .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.lv2-prop #lv2PropHeroBg .swiper-slide {
    width: 100%;
    height: 100%;
}

.lv2-prop .lv2-prop-hero__bg-img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.lv2-prop .lv2-prop-hero__bg-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.6) 100%
    );
}

.lv2-prop .lv2-prop-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 180px 12px 20px;
    width: 100%;
    max-width: var(--lv2-max-w);
}

.lv2-prop .lv2-prop-hero__subtitle {
    font-family: var(--lv2-font-en);
    font-size: 24px;
    font-weight: 400;
    color: var(--lv2-primary);
    margin-bottom: 12px;
}

.lv2-prop .lv2-prop-hero__title {
    font-family: var(--lv2-font-kr);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--lv2-primary);
    margin-bottom: 32px;
}

.lv2-prop .lv2-prop-hero__btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.lv2-prop .lv2-prop-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 14px;
    font-family: var(--lv2-font-kr);
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--lv2-radius-sm);
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

.lv2-prop .lv2-prop-hero__btn--primary {
    background: var(--lv2-primary);
    color: var(--lv2-white)!important;
    border: none;
    width: 158px;
}

.lv2-prop .lv2-prop-hero__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: var(--lv2-white);
}

.lv2-prop .lv2-prop-hero__btn--outline {
    background: rgba(255, 255, 255, 0.5);
    color: var(--lv2-primary);
    border: 1px solid var(--lv2-primary)!important;
    width: 138px;
}

.lv2-prop .lv2-prop-hero__btn--outline:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-hero {
        min-height: 682px;
    }

    .lv2-prop .lv2-prop-hero__content {
        padding: 250px 40px 80px;
    }

    .lv2-prop .lv2-prop-hero__btns {
        gap: 12px;
    }

    .lv2-prop .lv2-prop-hero__btn {
        font-size: 16px;
        padding: 0 28px;
    }

    .lv2-prop .lv2-prop-hero__btn--primary,
    .lv2-prop .lv2-prop-hero__btn--outline {
        width: auto;
    }

    .lv2-prop .lv2-prop-hero__btn--outline {
        background: transparent;
    }

    .lv2-prop .lv2-prop-hero__title {
        font-size: 60px;
        line-height: 1.3;
    }
}

/* ============================================================
   2. About
   ============================================================ */
.lv2-prop .lv2-prop-about {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.lv2-prop .lv2-prop-about__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* .lv2-page img 보다 특이성 높임 (common: class+element → 여기선 class 두 개로 우선 적용) */
.lv2-prop .lv2-prop-about__bg .lv2-prop-about__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv2-prop .lv2-prop-about__bg .lv2-prop-about__bg-img--pc {
    display: none;
}

.lv2-prop .lv2-prop-about__bg .lv2-prop-about__bg-img--mo {
    display: block;
}

.lv2-prop .lv2-prop-about__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    height: 100%;
    padding: 40px 16px;
}

.lv2-prop .lv2-prop-about__logo {
    margin-bottom: 16px;
}

.lv2-prop .lv2-prop-about__logo img {
    height: 60px;
    width: auto;
}

.lv2-prop .lv2-prop-about__caption {
    margin-bottom: 16px;
}

.lv2-prop .lv2-prop-about__caption .lv2-section-caption__text {
    color: var(--Primary-Color, #0A0A0A);
}

.lv2-prop .lv2-prop-about__caption .lv2-section-caption__line {
    background: var(--Primary-Color, #0A0A0A);
    opacity: 0.5;
}

.lv2-prop .lv2-prop-about__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--Primary-Color, #0A0A0A);
    margin-bottom: 16px;
}

.lv2-prop .lv2-prop-about__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--Primary-Color, #0A0A0A);
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-about {
        height: 420px;
    }

    .lv2-prop .lv2-prop-about__bg .lv2-prop-about__bg-img--pc {
        display: block;
    }

    .lv2-prop .lv2-prop-about__bg .lv2-prop-about__bg-img--mo {
        display: none;
    }

    .lv2-prop .lv2-prop-about__inner {
        padding: 60px 0px;
    }

    .lv2-prop .lv2-prop-about__logo img {
        height: 100px;
    }

    .lv2-prop .lv2-prop-about__title {
        font-size: 42px;
    }

    .lv2-prop .lv2-prop-about__desc {
        font-size: 16px;
    }
}

/* ============================================================
   2-1. About – Gadi (card carousel variant)
   ============================================================ */
.lv2-prop .lv2-prop-about--gadi {
    height: auto;
    overflow: hidden;
}

.lv2-prop .lv2-prop-about-gadi {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px 0px;
}

/* --- Title Text (mobile: overlays top-right of gallery) --- */
.lv2-prop .lv2-prop-about-gadi__text {
    position: absolute;
    top: 30px;
    right: 16px;
    z-index: 10;
    text-align: right;
    pointer-events: none;
}

.lv2-prop .lv2-prop-about-gadi__title {
    margin: 0;
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: 0.02em;
    user-select: none;
}

.lv2-prop .lv2-prop-about-gadi__title--celib {
    font-size: 77px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgb(105 104 100);
    paint-order: stroke fill;
    text-align: center;
}

.lv2-prop .lv2-prop-about-gadi__title--name {
    font-size: 56px;
    /* 오른쪽은 거의 흰색, 왼쪽(G 부근)으로 갈수록 진해지는 가로 그라데이션 */
    background: linear-gradient(270deg, #373737 0%, #979797 83%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -2px;
}

/* --- Card Carousel (mobile: vertical stack, square) --- */
.lv2-prop .lv2-prop-about-gadi__carousel {
    position: relative;
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
}

.lv2-prop .lv2-prop-about-gadi__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-top: 40px;
}

.lv2-prop .lv2-prop-about-gadi__card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 82%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    cursor: default;
}

.lv2-prop .lv2-prop-about-gadi__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* --- Mobile: Vertical card positions --- */
.lv2-prop .lv2-prop-about-gadi__card[data-pos="prev2"] {
    transform: translate(-74%, -50%) translateY(-36%) rotate(-20deg) scale(0.72);
    opacity: 0.35;
    z-index: 0;
}

.lv2-prop .lv2-prop-about-gadi__card[data-pos="prev"] {
    transform: translate(-62%, -50%) translateY(-20%) rotate(-7deg) scale(0.85);
    opacity: 0.55;
    z-index: 1;
}

.lv2-prop .lv2-prop-about-gadi__card[data-pos="center"] {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    cursor: pointer;
}

.lv2-prop .lv2-prop-about-gadi__card[data-pos="next"] {
    transform: translate(-38%, -50%) translateY(20%) rotate(6deg) scale(0.85);
    opacity: 0.55;
    z-index: 1;
}

.lv2-prop .lv2-prop-about-gadi__card[data-pos="next2"] {
    transform: translate(-28%, -50%) translateY(40%) rotate(12deg) scale(0.72);
    opacity: 0.35;
    z-index: 0;
}

.lv2-prop .lv2-prop-about-gadi__card[data-pos="hidden-left"] {
    transform: translate(-50%, -50%) translateY(-100%) scale(0.5);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.lv2-prop .lv2-prop-about-gadi__card[data-pos="hidden-right"] {
    transform: translate(-50%, -50%) translateY(100%) scale(0.5);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

/* Hover overlay on center card */
.lv2-prop .lv2-prop-about-gadi__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.35s ease;
    pointer-events: none;
}

.lv2-prop .lv2-prop-about-gadi__card[data-pos="center"]:hover .lv2-prop-about-gadi__overlay {
    background: rgba(0, 0, 0, 0.5);
}

.lv2-prop .lv2-prop-about-gadi__overlay-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.lv2-prop .lv2-prop-about-gadi__overlay-desc {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.lv2-prop .lv2-prop-about-gadi__card[data-pos="center"]:hover .lv2-prop-about-gadi__overlay-title,
.lv2-prop .lv2-prop-about-gadi__card[data-pos="center"]:hover .lv2-prop-about-gadi__overlay-desc {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation Buttons (rounded rectangle + white blur shadow) --- */
.lv2-prop .lv2-prop-about-gadi__nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    position: absolute;
    right: 0;
    bottom: 18%;
    z-index: 5;
}

.lv2-prop .lv2-prop-about-gadi__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: rgba(60, 60, 60, 0.85);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.5),
                0 2px 10px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.25s, box-shadow 0.25s;
}

.lv2-prop .lv2-prop-about-gadi__nav-btn:hover {
    background: rgba(40, 40, 40, 0.95);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.6),
                0 2px 12px rgba(255, 255, 255, 0.4);
}

/* --- Desktop layout --- */
@media (min-width: 768px) {
    .lv2-prop .lv2-prop-about-gadi {
        width: 1100px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 80px 40px;
        gap: 0;
    }

    .lv2-prop .lv2-prop-about-gadi__text {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        text-align: left;
        pointer-events: auto;
        flex-shrink: 0;
        z-index: 5;
    }

    .lv2-prop .lv2-prop-about-gadi__title--celib {
        font-size: clamp(64px, 10vw, 110px);
        -webkit-text-stroke: 2px rgba(200, 188, 160, 0.55);
        text-align: left;
    }

    .lv2-prop .lv2-prop-about-gadi__title--name {
        font-size: clamp(72px, 12vw, 110px);
        text-align: right;
        margin-left: 260px;
    }

    .lv2-prop .lv2-prop-about-gadi__carousel {
        width: auto;
        max-width: none;
        margin: 0;
        flex-shrink: 0;
        margin-right: 110px;
    }

    .lv2-prop .lv2-prop-about-gadi__stage {
        width: 300px;
        aspect-ratio: 1 / 1;
    }

    .lv2-prop .lv2-prop-about-gadi__overlay-title {
        font-size: 20px;
    }

    .lv2-prop .lv2-prop-about-gadi__overlay-desc {
        font-size: 14px;
    }

    /* --- Mobile: Vertical card positions --- */
    .lv2-prop .lv2-prop-about-gadi__card[data-pos="prev2"] {
        transform: translate(-118%, -50%) translateY(-36%) rotate(-20deg) scale(0.72);
    }

    .lv2-prop .lv2-prop-about-gadi__card[data-pos="prev"] {
        transform: translate(-86%, -50%) translateY(-20%) rotate(-7deg) scale(0.85);
    }

    .lv2-prop .lv2-prop-about-gadi__card[data-pos="center"] {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 1;
        z-index: 3;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
        cursor: pointer;
    }

    .lv2-prop .lv2-prop-about-gadi__card[data-pos="next"] {
        transform: translate(-18%, -50%) translateY(10%) rotate(6deg) scale(0.85);
    }

    .lv2-prop .lv2-prop-about-gadi__card[data-pos="next2"] {
        transform: translate(14%, -50%) translateY(23%) rotate(15deg) scale(0.72);
    }

    .lv2-prop .lv2-prop-about-gadi__nav {
        bottom: -3%;
    }
}

@media (min-width: 1024px) {
    .lv2-prop .lv2-prop-about-gadi {
        padding: 34px 0px;
    }
}

/* ============================================================
   3. Room Type
   ============================================================ */
.lv2-prop .lv2-prop-roomtype {
    background: var(--lv2-brand-2);
    padding: 60px 16px;
}

.lv2-prop .lv2-prop-roomtype__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.lv2-prop .lv2-prop-roomtype__header {
    margin-bottom: 32px;
}

.lv2-prop .lv2-prop-roomtype__heading {
    font-family: var(--lv2-font-en);
    font-size: 28px;
    font-weight: 700;
    color: var(--lv2-primary);
    margin-top: 12px;
    margin-bottom: 12px;
}

.lv2-prop .lv2-prop-roomtype__desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--lv2-secondary);
}

.lv2-prop .lv2-prop-roomtype__desc-inner--mo {
    display: block;
}

.lv2-prop .lv2-prop-roomtype__desc-inner--pc {
    display: none;
}

/* --- Tabs --- */
.lv2-prop .lv2-prop-roomtype__tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 2px solid var(--lv2-stroke);
    margin-bottom: 32px;
    gap: 0 8px;
}

.lv2-prop .lv2-prop-roomtype__tab {
    min-width: 0;
    padding: 14px 8px;
    font-family: var(--lv2-font-kr);
    font-size: 16px;
    font-weight: 500;
    color: var(--lv2-secondary);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    transition: color 0.2s, border-color 0.2s;
}

.lv2-prop .lv2-prop-roomtype__tab:hover {
    color: var(--lv2-primary);
}

.lv2-prop .lv2-prop-roomtype__tab--active {
    color: var(--lv2-primary);
    font-weight: 700;
    border-bottom-color: var(--lv2-primary);
}

/* --- Body (slider + detail) --- */
.lv2-prop .lv2-prop-roomtype__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* --- Slider --- */
.lv2-prop .lv2-prop-roomtype__slider-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--lv2-radius-md);
    overflow: hidden;
}

.lv2-prop .lv2-prop-roomtype__slider {
    width: 100%;
    height: 340px;
    border-radius: var(--lv2-radius-md);
    overflow: hidden;
}

.lv2-prop .lv2-prop-roomtype__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv2-prop .lv2-prop-roomtype__slider-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: var(--lv2-radius-sm);
    font-size: 14px;
    font-weight: 400;
    color: var(--lv2-primary);
}

.lv2-prop .lv2-prop-roomtype__slider-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 10px;
    border-radius: var(--lv2-radius-full);
    font-size: 14px;
    font-weight: 400;
    color: var(--lv2-white);
}

.lv2-prop .lv2-prop-roomtype__slider-prev,
.lv2-prop .lv2-prop-roomtype__slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    color: var(--lv2-white);
    cursor: pointer;
    transition: background 0.2s;
}

.lv2-prop .lv2-prop-roomtype__slider-prev:hover,
.lv2-prop .lv2-prop-roomtype__slider-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

.lv2-prop .lv2-prop-roomtype__slider-prev {
    left: 12px;
}

.lv2-prop .lv2-prop-roomtype__slider-next {
    right: 12px;
}

/* --- Detail --- */
.lv2-prop .lv2-prop-roomtype__detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lv2-prop .lv2-prop-roomtype__room-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--lv2-primary);
}

.lv2-prop .lv2-prop-roomtype__room-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--lv2-secondary);
    line-height: 1.5;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--Stroke, #DFE4EA);
}

.lv2-prop .lv2-prop-roomtype__price {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.lv2-prop .lv2-prop-roomtype__price-deposit {
    font-size: 16px;
    font-weight: 400;
    color: var(--lv2-secondary);
}

.lv2-prop .lv2-prop-roomtype__price-deposit strong {
    font-weight: 500;
    color: var(--lv2-primary);
}

.lv2-prop .lv2-prop-roomtype__price-rent {
    font-size: 16px;
    font-weight: 400;
    color: var(--lv2-secondary);
}

.lv2-prop .lv2-prop-roomtype__price-rent del {
    color: var(--lv2-secondary);
    font-size: 12px;
    margin-right: 4px;
}

.lv2-prop .lv2-prop-roomtype__price-rent strong {
    font-weight: 500;
    font-size: 16px;
    color: var(--lv2-primary);
}

/* --- 조건별 가격 테이블 --- */
.lv2-prop .lv2-price-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.lv2-prop .lv2-price-table__row {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lv2-prop .lv2-price-table__row:last-child {
    border-bottom: none;
}

.lv2-prop .lv2-price-table__period {
    flex-shrink: 0;
    width: 90px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lv2-secondary, #555);
    padding-top: 2px;
    line-height: 1.8;
}

.lv2-prop .lv2-price-table__values {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.lv2-prop .lv2-price-table__value {
    font-size: 15px;
    color: var(--lv2-secondary, #555);
    line-height: 1.8;
}

.lv2-prop .lv2-price-table__value strong {
    font-weight: 600;
    color: var(--lv2-primary, #222);
}

.lv2-prop .lv2-prop-roomtype__room-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lv2-prop .lv2-prop-roomtype__room-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 165px;
    font-family: var(--lv2-font-kr);
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--lv2-radius-sm);
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

.lv2-prop .lv2-prop-roomtype__room-btn--dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 165px;
    background: var(--lv2-primary);
    color: var(--lv2-white);
    font-family: var(--lv2-font-kr);
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--lv2-radius-sm);
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}

.lv2-prop .lv2-prop-roomtype__room-btn--dark:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: var(--lv2-white);
}

.lv2-prop .lv2-prop-roomtype__room-btn--light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 165px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--lv2-primary);
    font-family: var(--lv2-font-kr);
    font-size: 18px;
    font-weight: 700;
    border: 1px solid var(--lv2-primary);
    border-radius: var(--lv2-radius-sm);
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}

.lv2-prop .lv2-prop-roomtype__room-btn--light:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-roomtype {
        padding: 80px 40px;
    }

    .lv2-prop .lv2-prop-roomtype__heading {
        font-size: 48px;
    }

    .lv2-prop .lv2-prop-roomtype__tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 0 12px;
    }

    .lv2-prop .lv2-prop-roomtype__tab {
        flex: 1 1 auto;
        min-width: 120px;
    }

    .lv2-prop .lv2-prop-roomtype__desc {
        font-size: 16px;
    }

    .lv2-prop .lv2-prop-roomtype__desc-inner--mo {
        display: none;
    }

    .lv2-prop .lv2-prop-roomtype__desc-inner--pc {
        display: block;
    }

    .lv2-prop .lv2-prop-roomtype__body {
        flex-direction: row;
        gap: 40px;
    }

    .lv2-prop .lv2-prop-roomtype__slider-wrap {
        flex: 0 0 500px;
        max-width: 500px;
    }

    .lv2-prop .lv2-prop-roomtype__slider {
        height: 400px;
    }

    .lv2-prop .lv2-prop-roomtype__slider-badge {
        bottom: 16px;
        left: 16px;
    }

    .lv2-prop .lv2-prop-roomtype__slider-counter {
        bottom: 16px;
        right: 16px;
        padding: 6px 14px;
    }

    .lv2-prop .lv2-prop-roomtype__detail {
        flex: 1;
        justify-content: center;
        gap: 12px;
    }

    .lv2-prop .lv2-prop-roomtype__room-name {
        font-size: 24px;
    }

    .lv2-prop .lv2-prop-roomtype__price {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .lv2-prop .lv2-prop-roomtype__price-deposit {
        color: var(--lv2-primary);
    }

    .lv2-prop .lv2-prop-roomtype__price-deposit strong {
        font-weight: 700;
    }

    .lv2-prop .lv2-prop-roomtype__price-rent del {
        font-size: 14px;
    }

    .lv2-prop .lv2-prop-roomtype__price-rent strong {
        font-weight: 700;
        font-size: 18px;
        color: var(--lv2-primary);
    }

    .lv2-prop .lv2-price-table__period {
        width: 100px;
        font-size: 15px;
    }

    .lv2-prop .lv2-price-table__value {
        font-size: 16px;
    }

    .lv2-prop .lv2-price-table__value strong {
        font-weight: 700;
    }
}

/* ============================================================
   4. Floor Guide
   ============================================================ */
.lv2-prop .lv2-prop-floorguide {
    background: var(--lv2-white);
    padding: 60px 16px;
}

.lv2-prop .lv2-prop-floorguide__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.lv2-prop .lv2-prop-floorguide__text {
    display: flex;
    flex-direction: column;
}

.lv2-prop .lv2-prop-floorguide__heading {
    font-family: var(--lv2-font-kr);
    font-size: 28px;
    font-weight: 700;
    color: var(--lv2-primary);
    margin-top: 12px;
    margin-bottom: 12px;
}

.lv2-prop .lv2-prop-floorguide__desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--lv2-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.lv2-prop .lv2-prop-floorguide__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 0 24px;
}

.lv2-prop .lv2-prop-floorguide__amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    user-select: none;
}

.lv2-prop .lv2-prop-floorguide__amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lv2-brand-2);
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.lv2-prop .lv2-prop-floorguide__amenity-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--lv2-secondary);
    text-align: center;
    white-space: nowrap;
}

.lv2-prop .lv2-prop-floorguide__amenity:hover .lv2-prop-floorguide__amenity-icon {
    background: var(--lv2-brand-1-light, #FBE7DB);
}

.lv2-prop .lv2-prop-floorguide__amenity:hover .lv2-prop-floorguide__amenity-label {
    color: var(--lv2-primary);
}

.lv2-prop .lv2-prop-floorguide__amenity--active .lv2-prop-floorguide__amenity-icon {
    background: var(--lv2-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.lv2-prop .lv2-prop-floorguide__amenity--active .lv2-prop-floorguide__amenity-label {
    color: var(--lv2-primary);
}

.lv2-prop .lv2-prop-floorguide__image {
    width: 100%;
    border-radius: var(--lv2-radius-md);
    overflow: hidden;
}

.lv2-prop .lv2-prop-floorguide__image img {
    width: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-floorguide {
        padding: 80px 40px;
    }

    .lv2-prop .lv2-prop-floorguide__inner {
        flex-direction: row;
        gap: 60px;
    }

    .lv2-prop .lv2-prop-floorguide__text {
        flex: 1.4;
        min-width: 0;
    }

    .lv2-prop .lv2-prop-floorguide__heading {
        font-size: 48px;
    }

    .lv2-prop .lv2-prop-floorguide__desc {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .lv2-prop .lv2-prop-floorguide__image {
        flex: 1;
        min-width: 0;
    }

    .lv2-prop .lv2-prop-floorguide__image img {
        height: auto;
    }

    .lv2-prop .lv2-prop-floorguide__amenities {
        gap: 20px;
        justify-content: flex-start;
        padding: 0;
    }
}

/* ============================================================
   5. Facility
   ============================================================ */
.lv2-prop .lv2-prop-facility {
    background: var(--lv2-white);
    padding: 60px 16px;
}

.lv2-prop .lv2-prop-facility__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.lv2-prop .lv2-prop-facility__carousel {
    display: block;
}

.lv2-prop .lv2-prop-facility__heading {
    font-family: var(--lv2-font-kr);
    font-size: 28px;
    font-weight: 700;
    color: var(--lv2-primary);
    text-align: center;
    margin-bottom: 40px;
}

.lv2-prop .lv2-prop-facility__main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.lv2-prop .lv2-prop-facility__info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    order: 1;
    padding: 8px;
}

.lv2-prop .lv2-prop-facility__3d {
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
}

.lv2-prop .lv2-prop-facility__3d-img {
    height: 72px;
    width: 130px;
    object-fit: contain;
    filter: drop-shadow(0px 10px 32px rgba(70, 46, 20, 0.16));
}

.lv2-prop .lv2-prop-facility__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--lv2-primary);
    margin-bottom: 4px;
    text-align: center;
}

.lv2-prop .lv2-prop-facility__desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--lv2-secondary);
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
    word-break: keep-all;
}

.lv2-prop .lv2-prop-facility__info-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lv2-prop .lv2-prop-facility__nav-btn--inline {
    display: flex;
}

.lv2-prop .lv2-prop-facility__nav-btn--desktop {
    display: none;
}

.lv2-prop .lv2-prop-facility__nav {
    display: none;
}

.lv2-prop .lv2-prop-facility__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--lv2-white);
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.lv2-prop .lv2-prop-facility__nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.lv2-prop .lv2-prop-facility__nav-btn svg {
    width: 32px;
    height: 32px;
}

.lv2-prop .lv2-prop-facility__image {
    order: 2;
    width: 100%;
    border-radius: var(--lv2-radius-md);
    overflow: hidden;
    border: 1px solid var(--lv2-stroke);
}

.lv2-prop .lv2-prop-facility__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* --- Thumbnails --- */
.lv2-prop .lv2-prop-facility__thumbs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.lv2-prop .lv2-prop-facility__thumbs::-webkit-scrollbar {
    display: none;
}

.lv2-prop .lv2-prop-facility__thumb {
    flex: 1 0 0;
    min-width: 0;
    height: 80px;
    border-radius: var(--lv2-radius-sm);
    overflow: hidden;
    background: none;
    border: 1px solid var(--lv2-stroke);
    padding: 0;
    cursor: pointer;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.6;
}

.lv2-prop .lv2-prop-facility__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv2-prop .lv2-prop-facility__thumb:hover {
    opacity: 0.9;
}

.lv2-prop .lv2-prop-facility__thumb--active {
    border-color: var(--lv2-primary);
    opacity: 1;
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-facility {
        padding: 80px 40px;
    }

    .lv2-prop .lv2-prop-facility__heading {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .lv2-prop .lv2-prop-facility__carousel {
        display: grid;
        grid-template-columns: 380px minmax(0, 1fr);
        grid-template-rows: auto auto;
        grid-template-areas:
            "info image"
            "info thumbs";
        column-gap: 40px;
        row-gap: 16px;
        align-items: stretch;
    }

    .lv2-prop .lv2-prop-facility__main {
        display: contents;
    }

    .lv2-prop .lv2-prop-facility__info {
        grid-area: info;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 0;
        height: 100%;
    }

    .lv2-prop .lv2-prop-facility__3d {
        justify-content: flex-start;
        margin-bottom: 12px;
    }

    .lv2-prop .lv2-prop-facility__3d-img {
        height: 130px;
        width: auto;
    }

    .lv2-prop .lv2-prop-facility__name {
        text-align: center;
    }

    .lv2-prop .lv2-prop-facility__desc {
        font-size: 14px;
        text-align: center;
        margin-bottom: 16px;
    }

    .lv2-prop .lv2-prop-facility__nav-btn--inline {
        display: flex;
    }

    .lv2-prop .lv2-prop-facility__nav-btn--desktop,
    .lv2-prop .lv2-prop-facility__nav {
        display: none;
    }

    .lv2-prop .lv2-prop-facility__nav-btn {
        width: 40px;
        height: 40px;
        background: none;
        border: 1px solid var(--lv2-stroke);
        color: var(--lv2-primary);
    }

    .lv2-prop .lv2-prop-facility__nav-btn:hover {
        background: var(--lv2-brand-2);
        border-color: var(--lv2-secondary);
    }

    .lv2-prop .lv2-prop-facility__nav-btn svg {
        width: 40px;
        height: 40px;
    }

    .lv2-prop .lv2-prop-facility__image {
        grid-area: image;
        min-width: 0;
        border: none;
    }

    .lv2-prop .lv2-prop-facility__image img {
        height: 400px;
    }

    .lv2-prop .lv2-prop-facility__thumbs {
        grid-area: thumbs;
        gap: 8px;
        width: 100%;
    }

    .lv2-prop .lv2-prop-facility__thumb {
        height: 80px;
        border: 2px solid transparent;
    }

    .lv2-prop .lv2-prop-facility__thumb--active {
        border-color: var(--lv2-primary);
    }
}

/* ============================================================
   6. Stay Banner
   ============================================================ */
.lv2-prop .lv2-prop-stay {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.lv2-prop .lv2-prop-stay__link {
    display: block;
    position: relative;
    width: 100%;
    height: 119px;
}

.lv2-prop .lv2-prop-stay__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lv2-prop .lv2-prop-stay__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv2-prop .lv2-prop-stay__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.lv2-prop .lv2-prop-stay__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 16px;
}

.lv2-prop .lv2-prop-stay__text {
    text-align: center;
}

.lv2-prop .lv2-prop-stay__title {
    font-family: var(--lv2-font-kr);
    font-size: 22px;
    font-weight: 700;
    color: var(--lv2-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lv2-prop .lv2-prop-stay__arrow {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.lv2-prop .lv2-prop-stay__subtitle {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-stay__link {
        height: 151px;
    }

    .lv2-prop .lv2-prop-stay__title {
        font-size: 28px;
    }

    .lv2-prop .lv2-prop-stay__subtitle {
        font-size: 16px;
    }
}

/* ============================================================
   7. Location
   ============================================================ */
.lv2-prop .lv2-prop-location {
    background: var(--lv2-white);
    padding: 60px 16px;
}

.lv2-prop .lv2-prop-location__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.lv2-prop .lv2-prop-location__heading {
    font-family: var(--lv2-font-kr);
    font-size: 28px;
    font-weight: 700;
    color: var(--lv2-primary);
    margin-bottom: 8px;
    text-align: center;
}

.lv2-prop .lv2-prop-location__meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lv2-prop .lv2-prop-location__meta-left {
    flex: 1;
}

.lv2-prop .lv2-prop-location__address {
    font-size: 16px;
    font-weight: 400;
    color: var(--lv2-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* --- Subway --- */
.lv2-prop .lv2-prop-location__subway {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.lv2-prop .lv2-prop-location__subway-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lv2-prop .lv2-prop-location__subway-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--lv2-white);
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 1;
}

/* Seoul Subway Line 1 */
.lv2-prop .lv2-prop-location__subway-badge--line1 {
    background: #0052A4;
}
/* Seoul Subway Line 2 */
.lv2-prop .lv2-prop-location__subway-badge--line2 {
    background: #009D3E;
}
/* Seoul Subway Line 3 */
.lv2-prop .lv2-prop-location__subway-badge--line3 {
    background: #EF7C1C;
}
/* Seoul Subway Line 4 */
.lv2-prop .lv2-prop-location__subway-badge--line4 {
    background: #00A5DE;
}
/* Seoul Subway Line 5 */
.lv2-prop .lv2-prop-location__subway-badge--line5 {
    background: #8950A0;
}
/* Seoul Subway Line 6 */
.lv2-prop .lv2-prop-location__subway-badge--line6 {
    background: #CD7C2F;
}
/* Seoul Subway Line 7 */
.lv2-prop .lv2-prop-location__subway-badge--line7 {
    background: #747F00;
}
/* Seoul Subway Line 8 */
.lv2-prop .lv2-prop-location__subway-badge--line8 {
    background: #E6186C;
}
/* Seoul Subway Line 9 */
.lv2-prop .lv2-prop-location__subway-badge--line9 {
    background: #B7C452;
}
/* Seoul Shinbundang Line */
.lv2-prop .lv2-prop-location__subway-badge--shinbundang {
    background: #D4003B;
}
/* Seoul Gyeongui–Jungang Line */
.lv2-prop .lv2-prop-location__subway-badge--gyeongui {
    background: #77C4A3;
}
/* Seoul Airport Railroad */
.lv2-prop .lv2-prop-location__subway-badge--airport {
    background: #0090D2;
}
/* Seoul Gyeongchun Line */
.lv2-prop .lv2-prop-location__subway-badge--gyeongchun {
    background: #0C8E72;
}
/* Seoul Suin–Bundang Line */
.lv2-prop .lv2-prop-location__subway-badge--bundang {
    background: #F5A200;
}
/* Seoul Seohae Line */
.lv2-prop .lv2-prop-location__subway-badge--seohae {
    background: #8FC31F;
}
/* Seoul Ui LRT */
.lv2-prop .lv2-prop-location__subway-badge--ui {
    background: #B7C452;
}
/* Seoul Sillim Line */
.lv2-prop .lv2-prop-location__subway-badge--sillim {
    background: #6789CA;
}

.lv2-prop .lv2-prop-location__subway-badge--shinrim {
    background: #A71D31;
    border-radius: var(--lv2-radius-full);
    padding: 0 8px;
    font-size: 11px;
}

.lv2-prop .lv2-prop-location__subway-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--lv2-primary);
}

.lv2-prop .lv2-prop-location__subway-time {
    font-size: 14px;
    font-weight: 500;
    color: var(--lv2-secondary);
}

.lv2-prop .lv2-prop-location__direction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 120px;
    background: var(--lv2-primary);
    color: var(--lv2-white);
    font-family: var(--lv2-font-kr);
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--lv2-radius-sm);
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}

.lv2-prop .lv2-prop-location__direction-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: var(--lv2-white);
}

.lv2-prop .lv2-prop-location__map {
    width: 100%;
    height: 320px;
    border-radius: var(--lv2-radius-md);
    overflow: hidden;
    background: var(--lv2-bg-gray);
    border: 1px solid var(--lv2-stroke);
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-location {
        padding: 80px 40px;
    }

    .lv2-prop .lv2-prop-location__inner {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }

    .lv2-prop .lv2-prop-location__heading {
        font-size: 48px;
        text-align: center;
    }

    .lv2-prop .lv2-prop-location__meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .lv2-prop .lv2-prop-location__direction-btn {
        width: auto;
        padding: 0 32px;
        font-size: 16px;
    }

    .lv2-prop .lv2-prop-location__map {
        flex: none;
        width: 100%;
        min-width: 0;
        height: 480px;
        border: none;
    }
}

/* ============================================================
   8. FAQ
   ============================================================ */
.lv2-prop .lv2-prop-faq {
    background: var(--lv2-white);
    padding: 60px 16px;
}

.lv2-prop .lv2-prop-faq__inner {
    max-width: var(--lv2-max-w-sm);
    margin: 0 auto;
}

.lv2-prop .lv2-prop-faq__heading {
    font-family: var(--lv2-font-en);
    font-size: 28px;
    font-weight: 700;
    color: var(--lv2-primary);
    text-align: center;
    margin-bottom: 40px;
}

.lv2-prop .lv2-prop-faq__item {
    border-bottom: 1px solid var(--Stroke, #DFE4EA);
}

.lv2-prop .lv2-prop-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background: none;
    font-family: var(--lv2-font-kr);
    font-size: 16px;
    font-weight: 700;
    color: var(--lv2-primary);
    text-align: left;
    cursor: pointer;
    gap: 12px;
}

.lv2-prop .lv2-prop-faq__question span {
    flex: 1;
}

.lv2-prop .lv2-prop-faq__chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--lv2-secondary);
}

.lv2-prop .lv2-prop-faq__item--open .lv2-prop-faq__chevron {
    transform: rotate(180deg);
}

.lv2-prop .lv2-prop-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.lv2-prop .lv2-prop-faq__answer p {
    font-size: 14px;
    font-weight: 400;
    color: var(--lv2-secondary);
    line-height: 1.7;
    padding-bottom: 16px;
}

.lv2-prop .lv2-prop-faq__item--open .lv2-prop-faq__answer {
    max-height: 300px;
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-faq {
        padding: 80px 40px;
    }

    .lv2-prop .lv2-prop-faq__heading {
        font-size: 48px;
        margin-bottom: 60px;
    }
}

/* ============================================================
   9. Other Locations
   ============================================================ */
.lv2-prop .lv2-prop-others {
    background: var(--lv2-primary);
    padding: 48px 20px;
}

.lv2-prop .lv2-prop-others__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.lv2-prop .lv2-prop-others__heading {
    font-family: var(--lv2-font-kr);
    font-size: 24px;
    font-weight: 700;
    color: var(--lv2-white);
    text-align: center;
    margin-bottom: 24px;
}

.lv2-prop .lv2-prop-others__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lv2-prop .lv2-prop-others__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--lv2-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--lv2-stroke);
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 80px;
}

.lv2-prop .lv2-prop-others__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.lv2-prop .lv2-prop-others__card-img {
    position: relative;
    flex: 0 0 96px;
    height: 80px;
    overflow: hidden;
}

.lv2-prop .lv2-prop-others__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.lv2-prop .lv2-prop-others__card-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    gap: 8px;
    min-width: 0;
}

.lv2-prop .lv2-prop-others__card-text {
    min-width: 0;
}

.lv2-prop .lv2-prop-others__card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--lv2-primary);
    margin-bottom: 4px;
}

.lv2-prop .lv2-prop-others__card-desc {
    font-size: 11px;
    font-weight: 400;
    color: var(--lv2-primary);
    opacity: 0.82;
    line-height: 1.4;
}

.lv2-prop .lv2-prop-others__card-arrow {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 50%;
}

.lv2-prop .lv2-prop-others__card-arrow img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-others {
        padding: 64px 40px;
    }

    .lv2-prop .lv2-prop-others__heading {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .lv2-prop .lv2-prop-others__cards {
        flex-direction: row;
        gap: 18px;
    }

    .lv2-prop .lv2-prop-others__card {
        flex: 1;
        border: none;
        min-height: 88px;
    }

    .lv2-prop .lv2-prop-others__card-img {
        flex: 0 0 100px;
        height: 88px;
    }

    .lv2-prop .lv2-prop-others__card-img img {
        min-height: 88px;
    }

    .lv2-prop .lv2-prop-others__card-content {
        padding: 10px 20px;
        gap: 12px;
    }

    .lv2-prop .lv2-prop-others__card-name {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .lv2-prop .lv2-prop-others__card-desc {
        font-size: 12px;
        color: var(--lv2-secondary);
        opacity: 1;
    }

    .lv2-prop .lv2-prop-others__card-arrow {
        width: 32px;
        height: 32px;
        background: #000;
        border-radius: 50%;
    }

    .lv2-prop .lv2-prop-others__card-arrow img {
        width: 16px;
        height: 16px;
        filter: brightness(0) invert(1);
    }
}

/* ============================================================
   10. Reviews
   ============================================================ */
.lv2-prop .lv2-prop-reviews {
    background: var(--lv2-brand-2);
    padding: 60px 16px;
}

.lv2-prop .lv2-prop-reviews__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.lv2-prop .lv2-prop-reviews__heading {
    font-family: var(--lv2-font-kr);
    font-size: 28px;
    font-weight: 700;
    color: var(--lv2-primary);
    text-align: center;
    margin-bottom: 32px;
}

.lv2-prop .lv2-prop-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.lv2-prop .lv2-prop-reviews__card {
    background: var(--lv2-white);
    border-radius: var(--lv2-radius-sm);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lv2-prop .lv2-prop-reviews__quote {
    font-family: var(--lv2-font-en);
    font-size: 16px;
    font-weight: 700;
    color: var(--lv2-accent);
    line-height: 1;
    flex-shrink: 0;
}

.lv2-prop .lv2-prop-reviews__card-header {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.lv2-prop .lv2-prop-reviews__card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--lv2-primary);
    text-decoration: none;
    text-underline-offset: 0;
    margin-bottom: 0;
    flex: 1;
    text-align: center;
}

.lv2-prop .lv2-prop-reviews__card-body {
    font-size: 12px;
    font-weight: 400;
    color: var(--lv2-primary);
    line-height: 1.5;
    flex: 1;
    padding: 4px;
}

.lv2-prop .lv2-prop-reviews__card-date {
    font-size: 12px;
    font-weight: 400;
    color: #9CA3AF;
    margin-top: 0;
    padding: 2px 4px;
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-reviews {
        padding: 80px 40px;
    }

    .lv2-prop .lv2-prop-reviews__heading {
        font-size: 48px;
        margin-bottom: 48px;
    }

    .lv2-prop .lv2-prop-reviews__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .lv2-prop .lv2-prop-reviews__card {
        border-radius: var(--lv2-radius-md);
        padding: 24px;
        gap: 0;
    }

    .lv2-prop .lv2-prop-reviews__quote {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .lv2-prop .lv2-prop-reviews__card-title {
        font-size: 16px;
        text-decoration: underline;
        text-underline-offset: 3px;
        margin-bottom: 8px;
        text-align: left;
    }

    .lv2-prop .lv2-prop-reviews__card-body {
        font-size: 14px;
        color: var(--lv2-secondary);
        line-height: 1.6;
        padding: 0;
    }

    .lv2-prop .lv2-prop-reviews__card-date {
        color: var(--lv2-secondary);
        margin-top: 12px;
        padding: 0;
    }
}

/* ============================================================
   11. CTA
   ============================================================ */
.lv2-prop .lv2-prop-cta {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 40px;
}

.lv2-prop .lv2-prop-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lv2-prop .lv2-prop-cta__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv2-prop .lv2-prop-cta__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.lv2-prop .lv2-prop-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: var(--lv2-max-w);
    margin: 0 auto;
}

.lv2-prop .lv2-prop-cta__heading {
    font-family: var(--lv2-font-kr);
    font-size: 28px;
    font-weight: 700;
    color: var(--lv2-white);
    line-height: 1.4;
    margin-bottom: 32px;
}

.lv2-prop .lv2-prop-cta__btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-cta {
        padding: 74px 40px;
    }

    .lv2-prop .lv2-prop-cta__heading {
        font-size: 48px;
    }

    .lv2-prop .lv2-prop-cta__btns {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        width: auto;
    }
}

/* ============================================================
   CTA Button Mobile Overrides
   ============================================================ */
.lv2-prop .lv2-prop-cta .lv2-btn-accent,
.lv2-prop .lv2-prop-cta .lv2-btn-secondary {
    width: 189px;
    height: 50px;
    font-size: 18px;
}

@media (min-width: 768px) {
    .lv2-prop .lv2-prop-cta .lv2-btn-accent,
    .lv2-prop .lv2-prop-cta .lv2-btn-secondary {
        width: 190px;
        height: 60px;
        font-size: 20px;
    }
}
