/* ============================================================
   Basın & Medya Sayfası — bn- scope
   Light theme | #E91E63 accent | Nunito font
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.bn-hero {
    background: #fff;
    padding: 140px 0 72px;
    position: relative;
    overflow: hidden;
}
.bn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(233,30,99,.055) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* ── Stats Strip ──────────────────────────────────────────── */
.bn-stats {
    background: #1d1d1f;
    padding: 44px 0;
}
.bn-stats__row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.bn-sstat { text-align: center; flex: 1 1 130px; }
.bn-sstat__icon { font-size: 20px; color: #E91E63; margin-bottom: 6px; }
.bn-sstat__num {
    font-size: 28px; font-weight: 900; line-height: 1;
    letter-spacing: -1px;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.bn-sstat__lbl {
    font-size: 12px; font-weight: 600; margin-top: 4px;
    color: rgba(255,255,255,.5) !important;
    -webkit-text-fill-color: rgba(255,255,255,.5) !important;
}
.bn-sstat-sep {
    width: 1px; height: 40px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
}

/* ── Section Labels ─────────────────────────────────────────── */
.bn-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #E91E63;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.bn-section-h2 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 14px;
}
.bn-section-lead {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.75;
}

/* ── Haberler Section ────────────────────────────────────────── */
.bn-news { background: #f9fafb; padding: 88px 0; }

.bn-news-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.bn-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.bn-news-card__top {
    padding: 28px;
    position: relative;
    flex-shrink: 0;
}
.bn-news-card__top i {
    font-size: 32px;
    color: rgba(255,255,255,.9);
}
.bn-news-card__body {
    padding: 24px;
    flex: 1;
}
.bn-news-card__title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.4;
}
.bn-news-card__text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ── Medya Kiti Section ─────────────────────────────────────── */
.bn-kit { background: #fff; padding: 88px 0; }

.bn-kit-card {
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.bn-kit-card:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,.09);
}
.bn-kit-card__icon {
    width: 60px; height: 60px;
    background: rgba(233,30,99,.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E63;
    font-size: 24px;
    margin-bottom: 18px;
    flex-shrink: 0;
    transition: background .2s ease;
}
.bn-kit-card:hover .bn-kit-card__icon {
    background: rgba(233,30,99,.15);
}
.bn-kit-card__title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}
.bn-kit-card__text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 22px;
}
.bn-kit-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E91E63;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    padding: 10px 22px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
    flex-shrink: 0;
}
.bn-kit-card__btn:hover {
    background: #C2185B;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transform: translateY(-1px);
    text-decoration: none;
}

/* ── Basın İletişim CTA ─────────────────────────────────────── */
.bn-contact {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.bn-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.bn-contact__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.bn-contact__eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9) !important;
    -webkit-text-fill-color: rgba(255,255,255,.9) !important;
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.bn-contact__title {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 800;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    letter-spacing: -1px;
    margin-bottom: 14px;
}
.bn-contact__sub {
    font-size: 16px;
    color: rgba(255,255,255,.85) !important;
    -webkit-text-fill-color: rgba(255,255,255,.85) !important;
    line-height: 1.65;
    margin-bottom: 36px;
}
.bn-contact__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.bn-contact-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #E91E63 !important;
    -webkit-text-fill-color: #E91E63 !important;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: all .2s ease;
}
.bn-contact-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    color: #C2185B !important;
    -webkit-text-fill-color: #C2185B !important;
    text-decoration: none;
}
.bn-contact-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.5);
    transition: all .2s ease;
}
.bn-contact-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── Hero Primary Button ──────────────────────────────────── */
.bn-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E91E63;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: all .2s ease;
}
.bn-btn-primary:hover {
    background: #C2185B;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233,30,99,.3);
    text-decoration: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
    .bn-hero { padding: 120px 0 52px; }
    .bn-news, .bn-kit, .bn-contact { padding: 64px 0; }
    .bn-sstat-sep { display: none; }
    .bn-contact__btns { flex-direction: column; align-items: center; }
    .bn-contact-btn-solid, .bn-contact-btn-ghost {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}