@charset "UTF-8";

/* ==========================================================================
   PROPERTY LEASING INDEX SYSTEM
   ========================================================================== */

.p-landlord-index {
    width: 100%;
    background-color: #f7f6f3;
    color: #1a1a1a;
    padding-bottom: 120px;
}

.p-landlord-index-hero {
    background-color: var(--color-hero-navy);
    background-image: linear-gradient(180deg, var(--color-hero-navy) 0%, #08152c 100%);
    padding: 100px 0;
    color: #ffffff;
    margin-bottom: 70px;
}

.p-landlord-index-hero-inner {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding-inline: 40px;
}

.p-landlord-index-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-hero-gold);
    border: 1px solid var(--color-hero-gold);
    padding: 4px 12px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.p-landlord-index-main-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.p-landlord-index-sub-title {
    font-size: 16px;
    color: #a4b3c6;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   LANDLORD PANEL
   ========================================================================== */

.p-landlord-panel-section {
    padding: 0 0 100px;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.p-landlord-panel-section__inner {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding-inline: 40px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.p-landlord-showcase {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 30px 60px rgba(14, 34, 69, 0.05);
    position: relative;
    overflow: hidden;
}

.p-landlord-showcase__image-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.p-landlord-showcase__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p-landlord-showcase__overlay-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.p-landlord-showcase__main-content {
    width: 45%;
    background-color: #ffffff;
    padding: 60px 40px 48px 60px;
}

.p-landlord-showcase__header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.p-landlord-showcase__num {
    font-family: "Times New Roman", Georgia, serif;
    font-size: 64px;
    font-weight: 100;
    color: var(--color-hero-gold);
    line-height: 0.75;
}

.p-landlord-showcase__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-landlord-showcase__eng {
    font-family: "Times New Roman", Georgia, serif;
    font-size: 11px;
    color: var(--color-hero-gold);
    font-weight: 700;
    letter-spacing: 0.15em;
}

.p-landlord-showcase__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-hero-navy);
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.p-landlord-showcase__desc {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin: 0 0 32px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.p-landlord-showcase__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 1px solid var(--color-hero-gold);
    color: var(--color-hero-gold);
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    min-width: 260px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-landlord-showcase__btn:hover {
    background-color: var(--color-hero-gold);
    color: #ffffff;
}

.p-landlord-showcase__btn span:last-child {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.p-landlord-showcase__btn:hover span:last-child {
    transform: translateX(4px);
}

.p-landlord-showcase__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 90%;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.p-landlord-showcase__cell {
    border-right: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 12px;
    text-align: center;
    min-height: 120px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.p-landlord-showcase__cell:last-child {
    border-right: none;
}

.p-landlord-showcase__cell:hover {
    background-color: rgba(184, 158, 116, 0.06);
}

.p-landlord-showcase__cell span:first-child {
    font-size: 28px;
    color: var(--color-hero-gold);
    margin-bottom: 12px;
}

.p-landlord-showcase__cell-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-hero-navy);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

/* ==========================================================================
   LANDLORD STORIES
   ========================================================================== */

.p-landlord-stories {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 30px 60px rgba(14, 34, 69, 0.05);
    position: relative;
    display: grid;
    grid-template-columns: 34% 31% 35%;
    align-items: stretch;
    padding-bottom: 0;
}

.p-landlord-stories__top {
    display: contents;
}

.p-landlord-stories__main-content {
    padding: 50px 35px 50px 45px;
}

.p-landlord-stories__header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.p-landlord-stories__num {
    font-family: "Times New Roman", Georgia, serif;
    font-size: 64px;
    font-weight: 100;
    color: var(--color-hero-gold);
    line-height: 0.75;
}

.p-landlord-stories__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-landlord-stories__eng {
    font-family: "Times New Roman", Georgia, serif;
    font-size: 11px;
    color: var(--color-hero-gold);
    font-weight: 700;
    letter-spacing: 0.15em;
}

.p-landlord-stories__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-hero-navy);
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.p-landlord-stories__desc {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin: 0 0 32px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.p-landlord-stories__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 1px solid var(--color-hero-gold);
    color: var(--color-hero-gold);
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    min-width: 260px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-landlord-stories__btn:hover {
    background-color: var(--color-hero-gold);
    color: #ffffff;
}

.p-landlord-stories__btn span:last-child {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.p-landlord-stories__btn:hover span:last-child {
    transform: translateX(4px);
}

.p-landlord-stories__image-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.p-landlord-stories__fade-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
    z-index: 2;
}

.p-landlord-stories__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p-landlord-stories__slider-card {
    position: relative;
    margin-inline: 0;
    box-shadow: none;
    border: none;
    border-left: 1px solid #e5e5e5;
    height: 100%;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    background-color: #ffffff;
}

.p-landlord-stories__metrics {
    background-color: var(--color-hero-navy);
    color: #ffffff;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 16px;
}

.p-landlord-stories__metric-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.p-landlord-stories__metric-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-hero-gold);
    letter-spacing: 0.1em;
}

.p-landlord-stories__metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-landlord-stories__metric-sub {
    font-size: 11px;
    color: #a4b3c6;
    margin-bottom: 2px;
}

.p-landlord-stories__metric-val {
    font-size: 28px;
    font-weight: 700;
    font-family: "Times New Roman", serif;
    line-height: 1;
}

.p-landlord-stories__metric-val--after {
    color: var(--color-hero-gold);
    font-size: 22px;
    font-weight: 700;
}

.p-landlord-stories__metric-unit {
    font-size: 12px;
    margin-left: 2px;
}

.p-landlord-stories__metric-arrow {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.p-landlord-stories__circle {
    width: 60px;
    border: 1px solid var(--color-hero-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-hero-navy);
    box-shadow: 0 0 15px rgba(184, 158, 116, 0.2);
    aspect-ratio: 1/1;
}

.p-landlord-stories__circle-lbl {
    font-size: 10px;
    color: #ffffff;
    font-weight: 700;
    transform: scale(0.85);
}

.p-landlord-stories__circle-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-hero-gold);
    font-family: "Times New Roman", serif;
    line-height: 1;
}

.p-landlord-stories__circle-unit {
    font-size: 10px;
}

.p-landlord-stories__detail {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.p-landlord-stories__property {
    font-size: 16px;
    font-weight: 700;
    color: #888888;
    margin-bottom: 16px;
    display: block;
    line-height: 1.6;
}

.p-landlord-stories__text {
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    margin: 0 0 20px;
    font-weight: 500;
}

.p-landlord-stories__footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eeeeee;
    padding-top: 16px;
    width: 100%;
}

.p-landlord-stories__owner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-landlord-stories__owner span:first-child {
    font-size: 26px;
    color: var(--color-hero-navy);
}

.p-landlord-stories__owner-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-hero-navy);
}

.p-landlord-stories__next-trigger {
    display: none;
}

.p-landlord-stories__nav {
    display: none;
}

.p-landlord-stories__dot {
    width: 8px;
    height: 8px;
    background-color: #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.p-landlord-stories__dot.is-active {
    background-color: var(--color-hero-gold);
}

/* ==========================================================================
   RESPONSIVE CONTROL
   ========================================================================== */

@media screen and (max-width: 1024px) {
    .p-landlord-index {
        padding-bottom: 90px;
    }

    .p-landlord-index-hero {
        padding: 80px 0 140px;
    }

    .p-landlord-index-hero-inner {
        padding-inline: 32px;
    }

    .p-landlord-index-main-title {
        font-size: 36px;
    }

    .p-landlord-panel-section {
        padding-bottom: 80px;
    }

    .p-landlord-panel-section__inner {
        padding-inline: 32px;
        gap: 40px;
    }

    .p-landlord-showcase__image-box {
        position: relative;
        width: 100%;
        height: 300px;
        order: 1;
    }

    .p-landlord-showcase__overlay-container {
        display: flex;
    }

    .p-landlord-showcase__main-content {
        width: 100%;
        padding: 40px 32px;
        order: 0;
    }

    .p-landlord-showcase__grid {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        order: 2;
    }

    .p-landlord-showcase__cell {
        border-right: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .p-landlord-showcase__cell:nth-child(3n) {
        border-right: none;
    }

    .p-landlord-showcase__cell:nth-last-child(-n+3) {
        border-bottom: none;
    }

    .p-landlord-stories {
        display: block;
        padding-bottom: 36px;
    }

    .p-landlord-stories__top {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 32px;
    }

    .p-landlord-stories__main-content {
        padding: 40px 32px;
    }

    .p-landlord-stories__image-box {
        height: 320px;
    }

    .p-landlord-stories__img {
        height: 100%;
    }

    .p-landlord-stories__slider-card {
        grid-template-columns: 220px 1fr;
        margin-inline: 32px;
        box-shadow: 0 15px 40px rgba(14, 34, 69, 0.06);
        border: 1px solid #e5e5e5;
    }

    .p-landlord-stories__metrics {
        padding: 32px 20px;
        gap: 24px;
    }

    .p-landlord-stories__metric-val {
        font-size: 32px;
    }

    .p-landlord-stories__circle {
        width: 68px;
    }

    .p-landlord-stories__detail {
        padding: 36px 32px;
    }

    .p-landlord-stories__nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 32px;
    }

    .p-landlord-stories__next-trigger {
        display: inline-flex;
        font-size: 28px;
        color: var(--color-hero-gold);
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .p-landlord-stories__next-trigger:hover {
        transform: translateX(4px);
    }
}

@media screen and (max-width: 768px) {
    .p-landlord-index {
        padding-bottom: 64px;
    }

    .p-landlord-index-hero {
        padding: 56px 0 96px;
    }

    .p-landlord-index-hero-inner {
        padding-inline: 20px;
    }

    .p-landlord-index-badge {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .p-landlord-index-main-title {
        font-size: 28px;
        line-height: 1.35;
    }

    .p-landlord-index-sub-title {
        font-size: 13px;
        line-height: 1.8;
    }

    .p-landlord-panel-section {
        padding-bottom: 56px;
    }

    .p-landlord-panel-section__inner {
        padding-inline: 20px;
        gap: 32px;
    }

    .p-landlord-showcase,
    .p-landlord-stories {
        border-radius: 8px;
    }

    .p-landlord-showcase__main-content,
    .p-landlord-stories__main-content {
        padding: 32px 22px;
    }

    .p-landlord-showcase__header,
    .p-landlord-stories__header {
        gap: 16px;
        margin-bottom: 20px;
    }

    .p-landlord-showcase__num,
    .p-landlord-stories__num {
        font-size: 48px;
    }

    .p-landlord-showcase__eng,
    .p-landlord-stories__eng {
        font-size: 10px;
    }

    .p-landlord-showcase__title,
    .p-landlord-stories__title {
        font-size: 20px;
    }

    .p-landlord-showcase__desc,
    .p-landlord-stories__desc {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .p-landlord-showcase__btn,
    .p-landlord-stories__btn {
        width: 100%;
        min-width: 0;
        padding: 14px 18px;
        font-size: 16px;
    }

    .p-landlord-showcase__image-box,
    .p-landlord-stories__image-box {
        height: 220px;
    }

    .p-landlord-showcase__grid {
        grid-template-columns: 1fr;
    }

    .p-landlord-showcase__cell {
        min-height: auto;
        padding: 18px 16px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .p-landlord-showcase__cell:nth-child(3n) {
        border-right: none;
    }

    .p-landlord-showcase__cell:nth-last-child(-n+3) {
        border-bottom: 1px solid #e5e5e5;
    }

    .p-landlord-showcase__cell:last-child {
        border-bottom: none;
    }

    .p-landlord-showcase__cell span:first-child {
        margin-bottom: 0;
        font-size: 26px;
    }

    .p-landlord-showcase__cell-label {
        font-size: 16px;
    }

    .p-landlord-stories {
        padding-bottom: 28px;
    }

    .p-landlord-stories__slider-card {
        grid-template-columns: 1fr;
        margin-inline: 20px;
    }

    .p-landlord-stories__metrics {
        flex-direction: row;
        padding: 24px 18px;
        gap: 16px;
    }

    .p-landlord-stories__metric-box {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        width: auto;
        flex-wrap: wrap;
    }

    .p-landlord-stories__metric-arrow {
        transform: rotate(90deg);
    }

    .p-landlord-stories__detail {
        padding: 24px 20px;
    }

    .p-landlord-stories__property,
    .p-landlord-stories__text,
    .p-landlord-stories__owner-name {
        font-size: 16px;
    }

    .p-landlord-stories__footer-row {
        align-items: flex-start;
        gap: 12px;
    }
}