/* Extracted from Views/Blog/Index.cshtml. */
    .blog-index-page {
        color: #e5e7eb;
    }

    .blog-page-wrap {
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 24px;
        
        box-shadow: 0 18px 55px rgba(0,0,0,.28);
    }

    .blog-header {
        max-width: 820px;
        margin: 0 auto 2rem;
        text-align: center;
    }

    .blog-badge {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        margin-bottom: .85rem;
        padding: .4rem .75rem;
        border: 1px solid rgba(16,163,127,.25);
        border-radius: 999px;
        background: rgba(16,163,127,.08);
        color: #b4b4b4;
        font-size: .85rem;
        font-weight: 700;
    }

    .blog-title {
        margin-bottom: .6rem;
        color: #ececec;
        font-size: clamp(1.9rem, 4vw, 2.7rem);
        font-weight: 900;
        letter-spacing: -.035em;
    }

        .blog-title span {
            color: #b4b4b4;
        }

    .blog-sub {
        margin: 0 auto;
        max-width: 680px;
        color: #b4b4b4;
        font-size: 1rem;
        line-height: 1.75;
    }

    .blog-hr {
        width: 90px;
        height: 3px;
        margin: .95rem auto 1rem;
        border: 0;
        border-radius: 999px;
        opacity: 1;
        background: linear-gradient(90deg, #10a37f, #10a37f);
    }

    .blog-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .blog-post-card {
        display: grid;
        grid-template-columns: 240px minmax(0, 1fr);
        overflow: hidden;
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 18px;
        background: rgba(33,33,33,.72);
        box-shadow: 0 10px 28px rgba(0,0,0,.18);
        transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }

        .blog-post-card:hover {
            transform: translateY(-2px);
            border-color: rgba(16,163,127,.28);
            background: rgba(33,33,33,.88);
        }

    .blog-cover {
        display: block;
        height: 100%;
        min-height: 185px;
        background: rgba(23,23,23,.35);
    }

    .blog-kapak-gorsel {
        width: 100%;
        height: 100%;
        min-height: 185px;
        object-fit: cover;
        display: block;
    }

    .blog-card-body {
        padding: 1.15rem 1.25rem;
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .blog-post-title {
        margin-bottom: .55rem;
        font-size: 1.25rem;
        line-height: 1.35;
        font-weight: 850;
        letter-spacing: -.015em;
    }

    .blog-link {
        color: #ececec;
        text-decoration: none;
    }

        .blog-link:hover {
            color: #b4b4b4;
        }

    .blog-meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: .45rem;
        margin-bottom: .75rem;
        color: #94a3b8;
        font-size: .88rem;
    }

        .blog-meta i {
            color: #b4b4b4;
        }

    .blog-tags {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem;
        margin-bottom: .85rem;
    }

    .blog-tag {
        display: inline-flex;
        align-items: center;
        padding: .27rem .55rem;
        border-radius: 999px;
        background: rgba(255,255,255,.06);
        color: #b4b4b4;
        font-size: .76rem;
        font-weight: 700;
    }

    .blog-excerpt {
        margin-bottom: 1rem;
        color: #b4b4b4;
        font-size: .96rem;
        line-height: 1.72;
    }

    .blog-read-more {
        width: fit-content;
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        margin-top: auto;
        color: #b4b4b4;
        font-size: .9rem;
        font-weight: 800;
        text-decoration: none;
    }

        .blog-read-more:hover {
            color: #10a37f;
        }

    .blog-empty {
        padding: 2rem;
        border: 1px dashed rgba(255,255,255,.18);
        border-radius: 18px;
        background: rgba(255,255,255,.04);
        color: #b4b4b4;
        text-align: center;
    }

    .blog-no-image {
        grid-template-columns: 1fr;
    }

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

        .blog-cover,
        .blog-kapak-gorsel {
            min-height: 210px;
            max-height: 240px;
        }

        .blog-card-body {
            padding: 1rem;
        }

        .blog-post-title {
            font-size: 1.15rem;
        }

        .blog-meta {
            font-size: .84rem;
        }
    }
