/* Blog sayfası tasarım revizyonu */
.blog-page {
    background: #f6f8fb;
    overflow: hidden;
}

.blog-hero {
    background: linear-gradient(120deg, rgba(13, 53, 95, .94), rgba(17, 69, 127, .88)), url(/images/smooth-dark-blue-background-scaled-copy-2.jpg);
    background-position: center;
    background-size: cover;
    padding: 72px 0 56px;
}

.blog-hero-inner {
    width: 1180px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    text-align: center;
}

.blog-hero .breadcrumb {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    margin: 0 0 18px;
    text-align: center;
}

.blog-hero .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.blog-hero .breadcrumb a:hover {
    color: #e3e51f;
}

.blog-hero-inner span {
    display: inline-block;
    color: #e3e51f;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blog-hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.blog-hero p {
    margin: 0 auto;
    max-width: 560px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.blog-list {
    width: 1180px;
    max-width: calc(100% - 40px);
    margin: -28px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 70px;
    position: relative;
    z-index: 2;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 16px 36px rgba(17, 69, 127, .1);
    border: 1px solid #e8eef5;
    transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(17, 69, 127, .18);
}

.blog-card-img {
    height: 230px;
    overflow: hidden;
    background: #d9e4f0;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #2e75c5;
    margin-bottom: 8px;
}

.blog-card h2 {
    margin: 0 0 10px;
    color: #11457f;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.blog-card p {
    margin: 0 0 18px;
    color: #5b6b7c;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.blog-card-more {
    display: inline-block;
    color: #11457f;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid rgba(17, 69, 127, .25);
    padding-bottom: 2px;
    width: fit-content;
}

.blog-card:hover .blog-card-more {
    color: #2e75c5;
    border-bottom-color: #e3e51f;
}

.blog-contact {
    width: 1180px;
    max-width: calc(100% - 40px);
    margin: 0 auto 80px;
}

.blog-page .hizli-iletisim {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

@media (max-width: 930px) {
    .blog-hero {
        padding: 48px 0 40px;
    }

    .blog-hero h1 {
        font-size: 28px;
    }

    .blog-hero-inner,
    .blog-list,
    .blog-contact {
        width: 92%;
        max-width: 92%;
    }

    .blog-list {
        grid-template-columns: 1fr;
        margin-top: 20px;
        gap: 16px;
        padding-bottom: 40px;
    }

    .blog-card-img {
        height: 200px;
    }

    .blog-contact {
        margin-bottom: 48px;
    }
}
