/* ============================================
   BLOG.CSS — Blog sayfası özel stiller
   ============================================ */

.blog-main {
    padding-bottom: 80px;
}

/* Blog Hero */
.blog-hero {
    padding: 52px 0 28px;
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.blog-hero .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blog-hero .section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 10px;
}

.blog-hero-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
}

.blog-hero-desc a {
    color: var(--navy);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-hero-desc a:hover {
    color: var(--gold);
}

.blog-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.bhb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .2px;
    color: #111;
}

.bhb-soft {
    background: rgba(0, 0, 0, .03);
    color: #333;
}

/* Blog Grid */
.blog-section {
    padding: 34px 0 56px;
}

/* Liste Görünümü */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bl-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 10px 34px rgba(27, 43, 94, .06);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.bl-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(27, 43, 94, .10);
    border-color: rgba(0, 0, 0, .14);
}

.bl-img {
    border-radius: 12px;
    overflow: hidden;
    background: #f2f2f2;
    display: block;
    height: 110px;
}

.bl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}

.bl-item:hover .bl-img img {
    transform: scale(1.04);
}

.bl-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.bl-cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #111;
    background: #fff;
}

.bl-dot {
    color: #bbb;
}

.bl-date {
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 600;
}

.bl-title {
    font-size: 16px;
    font-weight: 900;
    color: #111;
    line-height: 1.4;
    margin-bottom: 8px;
}

.bl-title a:hover {
    color: var(--gold);
}

.bl-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 10px;
}

.bl-excerpt a {
    color: #111;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bl-excerpt a:hover {
    color: var(--gold);
}

.bl-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.bl-more {
    font-size: 13px;
    font-weight: 800;
    color: #111;
}

.bl-more:hover {
    color: var(--gold);
}

.bl-cta {
    font-size: 12px;
    font-weight: 900;
    color: #111;
    border: 1.5px solid #111;
    padding: 9px 12px;
    border-radius: 12px;
    transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}

.bl-cta:hover {
    background: #111;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(27, 43, 94, .10);
}

.blog-card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s;
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.04);
}

.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--navy);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .5px;
}

.blog-card-body {
    padding: 22px 24px 24px;
}

.blog-date {
    font-size: 12px;
    color: var(--muted);
    display: block;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: inherit;
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-card-excerpt {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.blog-card-excerpt a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-card-excerpt a:hover {
    color: var(--gold);
}

.blog-read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s, gap .2s;
}

.blog-read-more:hover {
    color: var(--gold);
    gap: 10px;
}

/* Sayfalama */
.blog-pagination {
    margin-top: 36px;
}

.bp-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.bp-mid span {
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 600;
}

.bp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.bp-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .bl-item {
        grid-template-columns: 1fr;
    }

    .bl-img {
        height: 180px;
    }

    .bl-actions {
        justify-content: flex-start;
    }
}

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

    .bp-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .bp-left,
    .bp-right {
        display: flex;
        justify-content: center;
    }
}
