/* ===============================
   JANELTRIP PROPERTY MAPS
=============================== */
.jt-map-section {
    background: #fff;
    border: 1px solid #e3f4e9;
    border-radius: 26px;
    padding: 26px;
    margin: 34px 0;
    box-shadow: 0 14px 35px rgba(0,90,65,.08);
}

.jt-map-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.jt-map-eyebrow {
    display: inline-flex;
    background: #f1fbf4;
    color: #045d43;
    border: 1px solid #dceee4;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}

.jt-map-head h2 {
    color: #045d43;
    font-size: 28px;
    margin: 0 0 6px;
    font-weight: 800;
}

.jt-map-head p {
    color: #5f7469;
    margin: 0;
}

.jt-map-open {
    background: #ff385c;
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

.jt-map-frame {
    width: 100%;
    height: 330px;
    border-radius: 22px;
    overflow: hidden;
    background: #eef7f1;
}

.jt-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.jt-map-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.jt-map-notes div {
    background: #f7fbf8;
    border: 1px solid #e3f4e9;
    border-radius: 18px;
    padding: 16px;
}

.jt-map-notes strong {
    display: block;
    color: #045d43;
    margin-bottom: 5px;
}

.jt-map-notes span {
    color: #5f7469;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .jt-map-head {
        flex-direction: column;
    }

    .jt-map-open {
        width: 100%;
        text-align: center;
    }

    .jt-map-frame {
        height: 260px;
    }

    .jt-map-notes {
        grid-template-columns: 1fr;
    }
}
