* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 800px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 4%;
    padding: 20px;
    margin: 80px auto 0; /* Added top margin to accommodate fixed header */
    overflow-y: auto;
    flex-grow: 1;
}

/* Scrollbar styles */
.container::-webkit-scrollbar {
    width: 8px;
}

.container::-webkit-scrollbar-track {
    background: #e6f2ff;
}

.container::-webkit-scrollbar-thumb {
    background: hsl(var(--hue-color), 89%, 60%);
    border-radius: 10px;
}

.container::-webkit-scrollbar-thumb:hover {
    background: #0066cc;
}

.blog-post {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 4px solid #eee;
}

.blog-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.blog-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.blog-image-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-image-container:hover .blog-image {
    transform: scale(1.05);
}

.blog-description {
    margin-top: 15px;
    margin-bottom: 35px;
    color: #34495e;
}

/* Ensure the header is visible and fixed */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav__link.active {
    color: hsl(var(--hue-color), 89%, 60%); /* Example color: Blue */
    font-weight: bold;
}
