@media (max-width: 768px) {
    body {
        min-width: 0;
    }

    .inner {
        max-width: none;
        width: 100%;
        padding: 0 20px;
    }

    #header .inner {
        height: 64px;
    }

    .logo a {
        font-size: 20px;
    }

    .gnb {
        display: none;
    }

    .inquiry-btn {
        height: 38px;
        padding: 0 16px;
        font-size: 13px;
        border-radius: 9px;
    }

    .gnb,
    .header-auth-btn,
    .header-right .inquiry-btn {
        display: none;
    }


    .mobile-menu-btn {
        width: 42px;
        height: 42px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;

        background: transparent;
        border-radius: 0;

        position: relative;
        z-index: 10000;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        border-radius: 999px;
        background: #1d3557;

        transition: transform 0.25s ease,
        opacity 0.2s ease;
    }

    body.mobile-menu-open .mobile-menu-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.mobile-menu-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }

    body.mobile-menu-open .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    .mobile-menu-panel {
        position: fixed;
        top: 64px;
        right: 0;
        z-index: 9999;
        width: 100%;
        height: calc(100vh - 64px);
        padding: 24px;
        background: #fff;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.28s ease;
    }

    body.mobile-menu-open .mobile-menu-dim {
        opacity: 1;
        visibility: visible;
    }

    body.mobile-menu-open .mobile-menu-panel {
        transform: translateX(0);
    }

    .mobile-menu-head {
        display: none;
    }

    .mobile-menu-head strong {
        font-size: 20px;
        font-weight: 800;
        color: #1d3557;
    }

    .mobile-menu-close {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: #f3f6fb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #1d3557;
    }

    .mobile-gnb {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-gnb a {
        padding: 17px 4px;
        border-bottom: 1px solid #edf1f6;
        font-size: 18px;
        font-weight: 600;
        color: #111827;
    }

    .mobile-inquiry-btn {
        height: 52px;
        margin-top: auto;
        border-radius: 14px;
        background: #1d3557;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 800;
    }

    .hero {
        background: linear-gradient(
                180deg,
                rgba(247, 249, 252, 0.96) 0%,
                rgba(247, 249, 252, 0.92) 20%,
                rgba(247, 249, 252, 0.8) 40%,
                rgba(247, 249, 252, 0) 100%),
        url('../img/hero.png');

        background-size: auto 100%;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .hero-inner {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;

        display: block;
    }

    .hero-content {
        max-width: none;
    }

    .hero-label {
        height: 34px;
        padding: 0 14px;
        font-size: 12px;
    }

    .hero-title {
        margin-top: 22px;
        font-size: 26px;
        line-height: 1.28;
    }

    .hero-desc-m {
        display: block;
        color: #6b7280;
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-desc {
        display: none;
    }

    .hero-buttons {
        display: none;
    }

    .hero-btn {
        flex: 1;
        height: 50px;
        padding: 0 18px;
        font-size: 14px;
        border-radius: 12px;
    }

    .hero-visual {
        margin-top: 42px;
        display: block;
    }

    .quick-menu {
        width: 100%;
        padding: 16px;
        gap: 12px;
        border-radius: 26px;
        backdrop-filter: blur(2px);
    }

    .quick-item {
        min-height: 138px;
        padding: 20px 10px;
        border-radius: 20px;
    }

    .quick-icon {
        font-size: 26px;
    }

    .quick-item strong {
        margin-top: 12px;
        font-size: 18px;
    }

    .quick-item span {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.5;
        text-align: center;
    }

    .feature-section {
        padding: 36px 0;
    }

    .feature-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }

    .feature-card {
        min-height: 180px;
        padding: 18px 16px;
        border-radius: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .feature-icon i {
        font-size: 28px;
    }

    .feature-card h3 {
        font-size: 19px;
    }

    .feature-card p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.55;
    }

    .preview-section {
        padding: 24px 0 48px;
    }

    .preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .preview-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .preview-head {
        margin-bottom: 20px;
    }

    .preview-head h3 {
        font-size: 22px;
    }

    .preview-head p {
        font-size: 14px;
        letter-spacing: -0.9px;
    }

    .vacancy-list,
    .community-list {
        margin: 14px 0 18px;
        gap: 12px;
    }

    .vacancy-item,
    .community-item {
        height: auto;
        min-height: 112px;
    }

    .vacancy-item {
        grid-template-columns: 96px 1fr;
        grid-template-rows: auto auto;
        gap: 8px 14px;
        padding: 14px;
    }

    .vacancy-thumb {
        grid-row: 1 / 3;
        align-self: center;

        width: 96px;
        height: 76px;
    }

    .vacancy-info {
        grid-column: 2;
        grid-row: 1;
    }

    .vacancy-info strong {
        font-size: 20px;
    }

    .vacancy-info p {
        font-size: 16px;
    }

    .vacancy-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .vacancy-meta span {
        margin-top: 0;
    }


    .status {
        font-size: 14px;
    }

    .badge {
        width: 72px;
        height: 34px;
        font-size: 13px;
        border-radius: 9px;
    }

    .community-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        gap: 12px;
        padding: 18px 0;
        overflow: hidden;
    }

    .community-content {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .community-content strong {
        display: block;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 17px;
    }

    .community-meta {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .community-meta > span:first-child {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .preview-card,
    .community-list {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .preview-bottom {
        height: 52px;
        font-size: 15px;
        border-radius: 14px;
    }

    /* ==============================
   Tenant Slider Mobile
============================== */

    .tenant-section {
        padding: 48px 0;
    }

    .tenant-section .inner {
        width: 100%;
        max-width: none;
        padding: 0 20px;
    }

    .tenant-slider-wrap {
        position: relative;
        width: 100%;
        min-width: 0;
    }

    .tenant-slider-viewport {
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .tenant-slider-track {
        display: flex;
        width: 100%;
        gap: 0;
    }

    .tenant-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .tenant-card {
        display: block;
        overflow: hidden;
        width: 100%;
        border-radius: 20px;
    }

    .tenant-image {
        width: 100%;
        height: 210px;
    }

    .tenant-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .tenant-info {
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr) auto;
        align-items: center;
        width: 100%;
        min-width: 0;
        min-height: 96px;
        padding: 18px;
        gap: 14px;
    }

    .tenant-logo {
        width: 54px;
        height: 54px;
        border-radius: 12px;
        font-size: 26px;
    }

    .tenant-info > div:nth-child(2) {
        min-width: 0;
    }

    .tenant-info h3 {
        margin: 0;
        overflow: hidden;
        color: #111827;
        font-size: 19px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .tenant-info p {
        margin-top: 4px;
        overflow: hidden;
        color: #64748b;
        font-size: 14px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .tenant-info > i {
        flex-shrink: 0;
    }

    /* 모바일 이전·다음 버튼 */
    .tenant-slider-btn {
        position: absolute;
        top: 105px;
        z-index: 10;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
        color: #1d3557;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tenant-slider-btn.prev {
        left: 10px;
    }

    .tenant-slider-btn.next {
        right: 10px;
    }

    .tenant-slider-btn:disabled {
        opacity: 0.35;
        cursor: default;
    }

    /* 슬라이드 점 */
    .tenant-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-top: 20px;
    }

    .tenant-dots button {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: #cbd5e1;
        transition: width 0.2s ease, background 0.2s ease;
    }

    .tenant-dots button.active {
        width: 22px;
        background: #1d3557;
    }

    .consult-banner-section {
        padding: 42px 0 54px;
    }

    .consult-banner {
        padding: 30px 22px;
        border-radius: 24px;

        grid-template-columns: 1fr;
        gap: 30px;

        background-position: center;
    }

    .consult-left h3 {
        font-size: 26px;
    }

    .consult-left p {
        font-size: 15px;
        line-height: 1.7;
    }

    .consult-btn {
        width: auto;
        height: 50px;
        margin-top: 24px;
        font-size: 16px;
        border-radius: 12px;
    }

    .consult-items {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .consult-item {
        min-height: auto;
        padding: 22px 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .consult-item:first-child {
        border-top: 0;
    }

    .consult-item i {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .consult-item strong {
        font-size: 18px;
    }

    .consult-item span {
        font-size: 14px;
    }

    #footer {
        padding: 34px 0;
    }

    .footer-inner,
    .footer-left {
        display: block;
    }

    .footer-logo strong {
        font-size: 22px;
    }

    .footer-info {
        margin-top: 20px;
    }

    .footer-info p {
        font-size: 13px;
        line-height: 1.8;
    }

    .footer-right {
        margin-top: 22px;
        font-size: 13px;
    }

    .floating-top-btn {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }


    .sub-visual {
        padding: 28px 0;
    }

    .sub-visual .inner {
        padding: 0 18px;
        text-align: center;
    }

    .sub-visual .sub-label {
        margin-bottom: 8px;
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .sub-visual h1 {
        margin-bottom: 10px;
        font-size: 28px;
        line-height: 1.3;
    }

    .sub-visual p {
        font-size: 14px;
        line-height: 1.6;
    }

    .section-title-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .section-title-row h2 {
        margin-bottom: 2px;
        font-size: 24px;
        line-height: 1.3;
    }

    .section-title-row p {
        font-size: 14px;
        line-height: 1.6;
    }

    .empty {
        padding: 50px 18px;
        border-radius: 16px;
        font-size: 14px;
        line-height: 1.7;
    }


    /* ==============================
       Location Mobile
    ============================== */
    .location-page {
        padding: 44px 0 70px;
    }

    .location-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-map-card,
    .location-info-card {
        border-radius: 18px;
    }

    .kakao-map {
        height: 300px;
    }

    .location-info-card {
        padding: 22px 18px;
    }

    .location-info-card h3 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .location-info-list {
        gap: 14px;
    }

    .location-info-list div {
        padding-bottom: 14px;
    }

    .location-info-list dt {
        margin-bottom: 6px;
        font-size: 13px;
    }

    .location-info-list dd {
        font-size: 15px;
        line-height: 1.6;
    }

    .location-btns {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .location-btn {
        height: 44px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* 교통안내 */
    .traffic-section {
        margin-top: 40px;
    }

    .traffic-section h3 {
        margin-bottom: 18px;
        font-size: 24px;
    }

    .traffic-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .traffic-card {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .traffic-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 16px;
        border-radius: 12px;
        font-size: 20px;
    }

    .traffic-card h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .traffic-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* 복사 토스트 */
    .copy-toast {
        left: 16px;
        right: 16px;
        bottom: 20px;
        transform: translateY(20px);
        width: auto;
        padding: 12px 16px;
        font-size: 14px;
        text-align: center;
    }

    .copy-toast.show {
        transform: translateY(0);
    }

}