.blog-container {
    min-height: 80vh;
    padding: 30px 20px 40px;
    max-width: 1000px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

.post-container {
    max-width: 800px;
}

.page-title,
.post-title {
    color: #000;
    font-weight: 800;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.post-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.blog-card {
    background: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 145, 255, 0.15);
    border-color: #1491ff;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #dfdfdf;
}

.blog-card .author-avatar {
    height: 30px;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    color: #000;
    font-size: 1.3rem;
    margin: 0 0 12px;
    font-weight: bold;
    line-height: 1.4;
}

.blog-card-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #dfdfdf;
}

.blog-card-date {
    color: #1491ff;
    font-size: 0.85rem;
    font-weight: bold;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-weight: bold;
    font-size: 0.9rem;
}

.author-avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
}

.post-stats {
    display: flex;
    gap: 10px;
}

.stat-pill {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: bold;
    background: #1491ff;
    color: #fff;
}

.views-pill {
    background: #fff;
    color: #000;
    border: 1px solid #dfdfdf;
}