.fpd-location-wrapper .fpd-location-wrapper {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 50px;
}

.fpd-location-wrapper .fpd-location-heading {
    font-size: 30px;
    font-weight: 300;
    font-family: 'Sofia Pro Light';
    text-align: center;
    color: #000;
    margin-bottom: 40px;
}

.fpd-location-wrapper hr {
    margin-bottom: 24px;
    margin-top: 24px;
}

.fpd-location-wrapper .fpd-location-grid {
    display: flex;
    justify-content: center;
    max-width: 1293px;
    margin: 0 auto;
}

.fpd-location-wrapper .fpd-location-left {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.fpd-location-wrapper .fpd-info-card {
    flex: 1; /* Takes remaining space */
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    min-height: 300px; /* Matches map height for visual balance */
}

.fpd-location-wrapper .fpd-info-card h4 {
    color:  rgba(39, 39, 39, 0.80);
    font-family: "Sofia Pro Light";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; 
    text-transform: uppercase;
}

.fpd-location-wrapper .fpd-info-card p {
    color: rgba(39, 39, 39, 0.80);
    font-family: "Crimson Text";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 160% */
}

.fpd-location-wrapper .fpd-cta {
    display: inline-block;
    margin-top: 20px;
    color: rgba(39, 39, 39, 0.80);
    font-weight: normal;
    text-decoration: underline;
    font-size: 15px;
    cursor: pointer;
}

/* Modal Overlay */
.fpd-location.fpd-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal Content */
.fpd-location .fpd-modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    animation: fadeIn 0.3s ease;
}

/* Close Button */
.fpd-location .fpd-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.fpd-location .fpd-modal-title {
    margin-bottom: 15px;
    font-family: "Sofia Pro Light";
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 29.95px;
    text-transform: uppercase;
}

/* Transit Section */
.fpd-location .fpd-transit-section {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.fpd-location .fpd-icon {
    font-size: 24px;
    min-width: 30px;
}

.fpd-location .fpd-transit-section strong {
    font-size: 16px;
}

.fpd-location .fpd-transit-section small {
    color: #777;
    display: block;
    margin-bottom: 5px;
}

.fpd-location .fpd-transit-section ol {
    margin: 0;
    padding-left: 0px;
    font-size: 14px;
}
.fpd-location .location-title {
    color:  rgba(39, 39, 39, 0.80);
    font-family: "Sofia Pro Light";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px; /* 160% */
    text-transform: uppercase;
}
/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fpd-location-wrapper .fpd-map {
    flex: 0 0 auto; /* Do not grow */
    width: 100%;
    max-width: 750px; /* Fixed max width for left column */
    border-radius: 6px;
    min-height: 450px;
    overflow: hidden;
}
/* Responsive */
@media (max-width: 768px) {
    .fpd-location.fpd-modal-content {
        width: 95%;
    }
    .fpd-location-wrapper .fpd-location-left {
        display: block !important;
    }
}