.blog-hero {
    margin-bottom: 24px;
}
.blog-hero h1 {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 1.2rem + 2vw, 2.4rem);
    margin: 6px 0 10px;
    color: var(--ink);
}
.blog-hero p {
    max-width: 100%;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 10px;
    text-align: justify;
    text-justify: inter-word;
}
.blog-hero p:last-child {
    margin-bottom: 0;
}
.blog-hero a {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.blog-hero a:hover {
    color: var(--accent);
}
.blog-empty {
    color: var(--muted);
    padding: 24px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 8px;
}
.blog-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
    overflow: hidden;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(20, 40, 90, 0.08);
}
.blog-card-link {
    display: block;
    color: inherit;
}
.blog-card-cover {
    width: 100%;
    height: 168px;
    object-fit: cover;
    display: block;
    background: var(--chip);
}
.blog-card-body {
    padding: 16px 18px 18px;
}
.blog-card-body time {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--accent-dark);
}
.blog-card-body h2 {
    font-size: 1.1rem;
    line-height: 1.35;
    margin: 6px 0 8px;
    color: var(--ink);
}
.blog-card-body p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-more {
    font-weight: 700;
    font-size: .85rem;
    color: var(--accent);
}
.blog-pagination {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}
.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 6px 12px;
    margin: 2px;
    border-radius: 8px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}
.blog-pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Tekil yazı */
.blog-article {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.blog-article-head h1 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 1.2rem + 2.6vw, 2.7rem);
    line-height: 1.12;
    margin: 6px 0 12px;
    color: var(--editorial-ink);
}
.blog-article-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 600;
}
.blog-article-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--line);
    margin: 20px 0;
}
.blog-article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--editorial-ink);
}
.blog-article-body h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin: 28px 0 10px;
}
.blog-article-body h3 {
    font-size: 1.2rem;
    margin: 22px 0 8px;
}
.blog-article-body p {
    margin: 0 0 16px;
}
.blog-article-body a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.blog-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.blog-article-foot {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}
.blog-back-link {
    font-weight: 700;
    color: var(--accent-dark);
}
.blog-back-link:hover {
    color: var(--accent);
}
