/* =========================
   BLOG SAYFA GENEL
========================= */

.blog-container {
    width: 92%;
    max-width: 860px;
    margin: 150px auto 120px; /* navbar + footer net ayrım */
    background: #ffffff;
    padding: 55px 60px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
    position: relative;
}

/* =========================
   BLOGA DÖN BUTONU
========================= */

.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 30px;
    padding: 10px 18px;
    background: rgba(255,122,0,.12);
    color: #ff7a00;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s ease, transform .2s ease;
}

.blog-back:hover {
    background: rgba(255,122,0,.2);
    transform: translateY(-1px);
}

/* =========================
   BAŞLIK & META
========================= */

.blog-title {
    font-size: 30px;
    text-align: center;
    color: #0b1c2d;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-meta {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-bottom: 45px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

/* =========================
   BLOG İÇERİK ALANI
========================= */

.blog-content {
    max-width: 720px;
    margin: 0 auto;
}

/* ALT BAŞLIKLAR */

.blog-content h2 {
    margin-top: 50px;
    margin-bottom: 18px;
    font-size: 22px;
    color: #ff7a00;
    text-align: center;
    position: relative;
}

/* h2 alt çizgi efekti */
.blog-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ff7a00;
    margin: 14px auto 0;
    border-radius: 2px;
}

/* PARAGRAFLAR */

.blog-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 22px;
    text-align: center;
}

/* LİSTELER */

.blog-content ul {
    margin: 30px auto 35px;
    padding: 25px 30px;
    background: #f9fafb;
    border-radius: 14px;
    max-width: 600px;
    box-shadow: inset 0 0 0 1px #eee;
}

.blog-content ul li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
    color: #444;
    position: relative;
    padding-left: 22px;
}

/* custom bullet */
.blog-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff7a00;
    font-size: 14px;
}

/* LINK & STRONG */

.blog-content a {
    color: #ff7a00;
    font-weight: 600;
}

.blog-content strong {
    font-weight: 600;
    color: #000;
}

/* =========================
   BLOG CTA
========================= */

.blog-cta {
    margin-top: 70px;
    padding: 45px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0b1c2d, #132f4c);
    color: #fff;
    text-align: center;
}

.blog-cta h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.blog-cta p {
    font-size: 15px;
    opacity: .9;
}

.blog-cta a {
    display: inline-block;
    margin-top: 22px;
    background: #25d366;
    padding: 14px 30px;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease;
}

.blog-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,211,102,.35);
}

/* =========================
   MOBİL
========================= */

@media (max-width: 768px) {

    .blog-container {
        margin: 120px auto 80px;
        padding: 35px 25px;
    }

    .blog-title {
        font-size: 26px;
    }

    .blog-content h2 {
        font-size: 20px;
    }

    .blog-content p {
        font-size: 15px;
    }

    .blog-content ul {
        padding: 22px;
    }
}
