/**
 * Bilgi Merkezi Widget - Stil Dosyası
 * Dosya: bilgi-merkezi-style.css
 * Tema dizinine koyun: /wp-content/themes/tema-adiniz/bilgi-merkezi-style.css
 *
 * Yönetim panelinden "Özel CSS" alanına da yazabilirsiniz.
 */

/* ─────────────────────────────────────────────
   WRAPPER
───────────────────────────────────────────── */
.bm-widget-wrap {
    font-family: inherit;
    margin: 0;
    padding: 0;
}

/* ─────────────────────────────────────────────
   ÜST KARTLAR
───────────────────────────────────────────── */
.bm-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .bm-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .bm-cards-grid {
        grid-template-columns: 1fr;
    }
}

.bm-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e4edf8;
    border-radius: 25px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
    box-shadow: 0 1px 4px rgba(20, 80, 180, 0.06);
}

.bm-card:hover {
    box-shadow: 0 6px 24px rgba(20, 80, 180, 0.13);
    transform: translateY(-3px);
    border-color: #c2d8f5;
    text-decoration: none;
}

/* İkon kutusu */
.bm-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #eef4ff;
    border-radius: 12px;
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

/* Başlık */
.bm-card-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #1565c0;
    line-height: 1.35;
}

/* Açıklama */
.bm-card-desc {
    margin: 0;
    font-size: 13px;
    color: #556b85;
    line-height: 1.55;
}

/* ─────────────────────────────────────────────
   ALT ETİKET BÖLÜMÜ
───────────────────────────────────────────── */
.bm-tags-section {
    background: #f0f5fb;
    border-radius: 25px;
    padding: 30px;
}

.bm-tags-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 16px;
}

.bm-tags-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #1565c0;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}

.bm-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bm-tag {
    display: inline-block;
    padding: 7px 17px;
    border: 1.5px solid #cddcee;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #1a3a5c;
    background: #ffffff;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.bm-tag:hover {
    background: #1565c0;
    color: #ffffff!important;
    border-color: #1565c0;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   RENK ÖZELLEŞTİRME (CSS Custom Properties)
   Yönetim paneli "Özel CSS" ile override edebilirsiniz:

   .bm-widget-wrap {
       --bm-primary: #0d6efd;
       --bm-icon-bg: #e8f0fe;
       --bm-tag-bg: #f8f9fa;
   }
───────────────────────────────────────────── */
