/* Custom styles for the blog */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.badge {
    font-size: 0.85em;
}

.pagination {
    margin-top: 2rem;
}

/* Post content styling */
article img {
    max-width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

article h1, article h2, article h3, article h4, article h5, article h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

article p {
    margin-bottom: 1rem;
}

article ul, article ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

article blockquote {
    padding: 0.5rem 1rem;
    margin: 0 0 1rem;
    font-size: 1.25rem;
    border-left: 0.25rem solid #eceeef;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-img-top {
        height: 200px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}