/* Extracted from global-footprint/location-page-template.php to reduce rendered HTML weight. */
.location-detail-page {
        background: #fff;
        color: #06131e;
    }

    .location-detail-hero {
        padding-top: 16rem;
        padding-bottom: 165px;
    }

    .location-detail-grid {
        display: grid;
        grid-template-columns: 1fr 440px;
        gap: 48px;
        align-items: center;
    }

    .location-detail-kicker {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: #fff;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .location-detail-kicker::before {
        content: "";
        width: 42px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, #7A76FF 0%, #CB46FA 50.14%, #FE881C 100%);
    }

    .breadcrumb-nav a,
    .breadcrumb-nav span {
        font-size: 14px;
        line-height: 22px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
    }

    .breadcrumb-nav a:hover {
        color: #CB46FA;
    }

    .breadcrumb-nav .sep {
        margin: 0 8px;
    }

    .breadcrumb-nav .current {
        color: #fff;
    }

    .location-gradient-text {
        background: linear-gradient(90deg, #7A76FF 0%, #CB46FA 50.14%, #FE881C 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .location-detail-heading {
        max-width: 860px;
        color: #fff;
        font-size: 58px;
        line-height: 1.08;
        font-weight: 400;
        margin-bottom: 20px;
        font-family: helveticaregular, Arial, sans-serif;
        letter-spacing: 0;
    }

    .location-detail-subtitle {
        max-width: 760px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 30px;
        line-height: 1.18;
        margin-bottom: 24px;
    }

    .location-detail-intro {
        max-width: 760px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 32px;
    }

    .location-hero-image-card {
        border-radius: 16px;
        padding: 3px;
        background: linear-gradient(90deg, #7A76FF 0%, #CB46FA 50.14%, #FE881C 100%);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    }

    .location-hero-image-card img {
        display: block;
        width: 100%;
        height: 430px;
        object-fit: cover;
        object-position: center;
        border-radius: 13px;
    }

    .location-section-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
        font-size: 18px;
        line-height: 26px;
        font-weight: 600;
    }

    .location-section-label::before {
        content: "";
        width: 34px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, #7A76FF 0%, #CB46FA 50.14%, #FE881C 100%);
    }

    .location-feature-card {
        border: 1px solid #e8e4ff;
        border-radius: 10px;
        background: #fff;
        padding: 28px;
        box-shadow: 0 14px 34px rgba(6, 19, 30, 0.06);
    }

    .location-dark-card {
        border-radius: 12px;
        background: #111113;
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 30px;
    }

    .location-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 13px 18px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid #e8e4ff;
        color: #06131e;
        font-size: 15px;
        line-height: 22px;
    }

    .location-pill::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: linear-gradient(135deg, #7A76FF 0%, #FE881C 100%);
        flex-shrink: 0;
    }

    .location-faq-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 24px 0;
    }

    .location-faq-item:last-child {
        border-bottom: 0;
    }

    @media (max-width: 1024px) {
        .location-detail-hero {
            padding-top: 10rem;
            padding-bottom: 90px;
        }

        .location-detail-grid {
            grid-template-columns: 1fr;
        }

        .location-detail-heading {
            font-size: 46px;
        }

        .location-detail-subtitle {
            font-size: 26px;
        }

        .location-hero-image-card img {
            height: 320px;
        }
    }

    @media (max-width: 640px) {
        .location-detail-hero {
            padding-top: 8.5rem;
            padding-bottom: 70px;
        }

        .location-detail-heading {
            font-size: 36px;
            line-height: 1.12;
        }

        .location-detail-subtitle {
            font-size: 22px;
        }

        .location-hero-image-card img {
            height: 240px;
        }
    }
