/* ═══════════════════════════════════════════════
   Bölgesel Hava Durumu — 7 Region Grid
   ═══════════════════════════════════════════════ */

.bolge-widget {
    margin-bottom: 24px;
}

.bolge-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.bolge-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bolge-title i {
    color: var(--accent-blue);
    font-size: 18px;
}

.bolge-tum-turkiye {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.bolge-tum-turkiye:hover {
    color: var(--accent-blue);
}

.bolge-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.bolge-empty,
.bolge-region-empty {
    font-size: 14px;
    color: var(--text-muted);
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.bolge-empty a,
.bolge-region-empty a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
}

.bolge-empty a:hover,
.bolge-region-empty a:hover {
    text-decoration: underline;
}

.bolge-region-empty {
    margin-bottom: 0;
    margin-top: 8px;
}

/* ─── Bölge Bölümü ─── */
.bolge-section {
    margin-bottom: 20px;
}

.bolge-section:last-child {
    margin-bottom: 0;
}

.bolge-region-name {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bolge-region-link {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.bolge-region-link:hover {
    color: var(--accent-cyan);
}

.bolge-region-tag {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ─── Şehir Grid ─── */
.bolge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

/* ─── Tek Şehir Kartı ─── */
.bolge-city {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.bolge-city:hover {
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

.bolge-city:focus-visible {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

.bolge-city-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bolge-city-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.bolge-city-temp {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
    letter-spacing: -0.5px;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .bolge-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .bolge-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .bolge-desc {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .bolge-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .bolge-city {
        padding: 8px 10px;
    }

    .bolge-city-name {
        font-size: 12px;
    }

    .bolge-city-icon {
        font-size: 16px;
    }

    .bolge-city-temp {
        font-size: 13px;
    }

    .bolge-title {
        font-size: 17px;
    }

    .bolge-region-name {
        font-size: 12px;
    }

    .bolge-tum-turkiye {
        font-size: 12px;
    }
}