/* === Blog Listeleme Sayfası === */
.blog-list-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.card-cover img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 15px 20px;
}

.card-title a {
    font-size: 1.4rem;
    font-weight: bold;
    color: #222;
    text-decoration: none;
}

.card-title a:hover {
    color: #0073e6;
}

.card-meta {
    font-size: 0.9rem;
    color: #777;
    margin: 8px 0 12px;
}

.card-summary {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
}

.read-more {
    font-weight: bold;
    color: #0073e6;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* === Blog Detay Sayfası === */
.blog-container {
    max-width: 850px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* Başlık */
.blog-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

/* Meta */
.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Kapak Fotoğrafı */
.blog-cover img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
}

/* İçerik */
.blog-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.blog-content p {
    margin-bottom: 18px;
}

/* Alt başlıklar */
.blog-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}

.blog-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #555;
}

/* Liste */
.blog-content ul, .blog-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

/* Alıntılar */
.blog-content blockquote {
    border-left: 4px solid #0073e6;
    padding-left: 15px;
    margin: 20px 0;
    color: #555;
    font-style: italic;
}
