/* ========================================
   手机端自适应（768px 以下）
   ======================================== */
@media screen and (max-width: 768px) {
    .container {
       
    }

    .nav-wrapper {
        padding: 10px;
        display: block;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 100;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: var(--bg-color);
        border: none;
        cursor: pointer;
        padding: 10px;
        border-radius: 4px;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 5px;
        background: rgba(10, 10, 10, 0.95);
        min-width: 200px;
        padding: 10px;
        border-radius: 4px;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-list li:last-child {
        border-bottom: none;
    }

    .mobile-nav-list li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        color: white;
        padding: 12px 5px;
        font-size: 0.9rem;
    }

    .mobile-nav-list li a span:first-child {
        font-weight: 600;
        letter-spacing: 0.05em;
    }

    .mobile-nav-list li a span:last-child {
        font-size: 0.75rem;
        opacity: 0.8;
    }

    .banner-nav {
        flex-wrap: wrap;
        padding: 0;
        gap: 5px;
        margin: 0;
    }

    .banner-nav .nav-item {
        flex: 0 0 calc(33.333% - 5px);
        max-width: none;
        padding: 8px 5px;
    }

    .hero-banner {
        margin: 0 !important;
        padding-top: 190px;
    }

    .hero-img {
       
        width: 100%;
        height: auto;
    }

    section {
        padding: 5px 0;
    }

    .section-title-img .title-img {
        max-width: 70%;
    }

    .campaign-wrapper {
        padding-top: 0px;
    }

    .title-line{
        top: -28px;
    }
    .campaign-inner{
        padding: 8px;
    }
    .campaign-inner2{
        padding: 8px;
    }

    .flow-left{
        width: 60px;
        left: -15px;
        bottom: -10px;
    }
    .flow-bottom{
        width: 100px;
        bottom: -7px;
    }

    .news-list {
        max-height: 300px;
    }

    .news-item {
        flex-wrap: wrap;
    }

    .news-tag {
        min-width: auto;
    }

    .news-text {
        width: 100%;
    }

    .therapist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .therapist-img {
        height: 200px;
    }

    .therapist-name {
        font-size: 0.95rem;
    }

    .therapist-age,
    .therapist-size {
        font-size: 0.7rem;
    }

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

    .access-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-container iframe {
        height: 200px;
    }

    .footer-nav {
        width: 86%;
    margin: auto;
        gap: 5px;
    }

    .footer-nav-item {
        flex: 0 0 calc(50% - 5px);
        padding: 3px;
    }

    .footer-phone {
        font-size: 1rem;
    }

    .footer-slogan {
        font-size: 0.8rem;
    }
}

/* ========================================
   中等屏幕自适应（769px - 1024px）
   ======================================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .therapist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
