/* Property Hotspots — full reference card */
.property-hotspots-section {
    background: #fff;
    border-top: 1px solid #eef2f6;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.hotspot-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    padding: 1.2rem 1.15rem 1.15rem;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 20px;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hotspot-card:hover {
    border-color: #d7e3ee;
    box-shadow: 0 10px 28px rgba(74, 158, 207, 0.08);
}

.hotspot-card__pin {
    position: absolute;
    top: -0.15rem;
    right: 0.55rem;
    width: 4.6rem;
    height: 4.6rem;
    pointer-events: none;
    z-index: 0;
}

.hotspot-card__pin-mark {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.hotspot-card__pin-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #c8e4f6;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.hotspot-card__pin-mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.35rem;
    height: 1.35rem;
    margin: -1.1rem 0 0 -0.68rem;
    background: #fff;
    border-radius: 50%;
    transform: rotate(45deg);
}

.hotspot-card__badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-self: flex-start;
    padding: 0.34rem 0.72rem;
    margin-bottom: 0.7rem;
    border-radius: 8px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5ba4d4;
    background: #eaf6fc;
    line-height: 1;
}

.hotspot-card__title {
    position: relative;
    z-index: 1;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f2744;
    margin: 0 0 0.22rem;
    letter-spacing: -0.02em;
    padding-right: 3.25rem;
}

.hotspot-card__tagline {
    position: relative;
    z-index: 1;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5ba4d4;
    margin: 0 0 0.95rem;
    line-height: 1.35;
}

.hotspot-card__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    margin-bottom: 0.9rem;
    padding: 0;
}

.hotspot-card__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    min-width: 0;
}

.hotspot-card__stat-label {
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
    line-height: 1.2;
}

.hotspot-card__stat-value {
    font-weight: 600;
    color: #5ba4d4;
    line-height: 1.1;
}

.hotspot-card__stat-value--count {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
}

.hotspot-card__stat-value--price {
    font-size: 1.05rem;
    line-height: 1.2;
    word-break: break-word;
}

.hotspot-card__price-amount {
    font-size: 1.05rem;
    font-weight: 600;
}

.hotspot-card__price-suffix {
    font-size: 0.78rem;
    font-weight: 500;
    color: #7eb8dc;
}

.hotspot-card__insight {
    position: relative;
    z-index: 1;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotspot-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: auto;
    padding: 0.78rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: #0d6efd;
    border: 1px solid #0d6efd;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.22);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hotspot-card__cta:hover {
    color: #fff;
    background: #0b5ed7;
    border-color: #0b5ed7;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(13, 110, 253, 0.28);
}

.hotspot-card__cta i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.hotspot-card__cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 767.98px) {
    .hotspot-card {
        padding: 1rem 0.95rem 1rem;
        border-radius: 16px;
    }

    .hotspot-card__title {
        font-size: 1.12rem;
    }

    .hotspot-card__stat-value--count {
        font-size: 1.5rem;
    }
}
