/**
 * Ana sayfa kenar çubuğu — köy konumu (Google Haritalar gömülü harita).
 */

.home-location-card {
    position: relative;
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 58, 95, 0.92) 48%, rgba(15, 23, 42, 0.98) 100%);
    box-shadow:
        0 4px 18px rgba(12, 20, 40, 0.28),
        0 0 0 1px rgba(147, 197, 253, 0.12) inset;
}

.home-location-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(96, 165, 250, 0.2) 0%, transparent 42%),
        radial-gradient(circle at 88% 85%, rgba(56, 189, 248, 0.1) 0%, transparent 48%);
    pointer-events: none;
}

.home-location-card__inner {
    position: relative;
    z-index: 1;
    padding: 12px 14px 14px;
}

.home-location-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.home-location-card__title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-location-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(147, 197, 253, 0.95);
    font-size: 14px;
}

.home-location-card__title {
    margin: 0;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.96);
    line-height: 1.2;
}

.home-location-card__subtitle {
    margin: 2px 0 0;
    font-size: 11px;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.95);
    letter-spacing: 0.02em;
}

.home-location-card__map-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.6);
    /* ~600×450 önizleme oranı (4:3); dar sütunda tam genişlik */
    aspect-ratio: 4 / 3;
    min-height: 168px;
    max-height: 240px;
}

.home-location-card__map {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 168px;
    max-width: 100%;
    border: 0;
    vertical-align: top;
}

.home-location-card__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
}

.home-location-card__links a {
    color: rgba(147, 197, 253, 0.98);
    text-decoration: none;
    border-bottom: 1px solid rgba(147, 197, 253, 0.35);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.home-location-card__links a:hover,
.home-location-card__links a:focus {
    color: rgba(224, 242, 254, 1);
    border-bottom-color: rgba(224, 242, 254, 0.55);
}

.home-location-card__coord {
    margin-left: auto;
    font-size: 10px;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.85);
    font-variant-numeric: tabular-nums;
}

@media (max-width: 1199px) {
    .home-location-card__coord {
        width: 100%;
        margin-left: 0;
        margin-top: 2px;
    }
}
