.project-details-page .project-details-hero {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.project-details-page .project-details-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-details-page .project-details-wrapper {
    max-width: 1200px;
    margin: 110px auto 100px;
    padding: 0 20px;
}

.project-details-page .project-details-wrapper .heading .title {
    letter-spacing: 0.4px;
}

.project-details-page .content p {
    margin-bottom: 14px;
    line-height: 1.7;
    color: #555;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 26px 0 18px;
}

.project-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.project-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(111, 171, 64, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6fab40;
    font-size: 18px;
    flex-shrink: 0;
}

.project-feature-title {
    margin: 0 0 6px;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.project-feature-text {
    margin: 0;
    color: #6b6b6b;
    line-height: 1.6;
}

.project-share .prague-share-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.project-share .prague-share-label {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #0f1f2d;
}

.project-share .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e6e6;
    background: #fff;
    color: #6fab40;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.project-share .icon:hover {
    background: #6fab40;
    color: #fff;
    transform: translateY(-2px);
}

.project-visual-fallback {
    border-radius: 12px;
    overflow: hidden;
    background: #f6f6f6;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.project-visual-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}


.project-location-section {
    padding: 40px 0 70px;
}

.project-location-section .gh-container {
    max-width: 1200px;
    padding: 0 20px;
}

.project-location-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 1.3fr;
    gap: 24px;
    align-items: center;
}

.project-location-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-location-title {
    margin: 0;
    font-size: 26px;
    letter-spacing: 0.6px;
    color: #0f1f2d;
}

.project-location-address {
    margin: 0;
    color: #54606f;
    line-height: 1.6;
}

.project-location-link {
    color: #6fab40;
    font-weight: 600;
    text-decoration: none;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-location-link::after {
    content: '→';
    font-size: 12px;
}

.project-location-link:hover {
    text-decoration: underline;
}

.gh-map__frame {
    width: 100%;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.gh-map__embed {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .project-details-page .project-details-wrapper {
        margin: 80px auto 70px;
    }

    .project-feature-card {
        padding: 14px;
    }

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

@media (max-width: 767px) {
    .project-details-page .project-details-wrapper {
        padding: 0 15px;
    }

    .project-feature-card {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }

    /* Mobile hero height adjustments */
    .project-details-page .project-details-hero {
        min-height: 50vh !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .project-details-page .project-details-hero img {
        object-fit: cover;
        object-position: center;
    }
}
