body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #2d3748; background-color: #f8f9fa; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .container { max-width: 900px; margin: 2rem auto; padding: 2rem; background-color: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); } h1, h2, h3, h4, h5, h6 { color: #1a202c; margin-top: 2rem; margin-bottom: 1rem; font-weight: 600; line-height: 1.3; } h1 { font-size: 2.5rem; } h2 { font-size: 2rem; margin-top: 0.5rem; margin-bottom: 0.5rem; } h3 { font-size: 1.75rem; } a { color: #4a90e2; text-decoration: none; transition: color 0.2s ease; outline: none; } a:hover, a:focus { color: #357abd; text-decoration: underline; } /* Blog List Styling */ header { text-align: center; padding: 2rem 0; border-bottom: 1px solid #e2e8f0; margin-bottom: 2rem; } .blog-list { list-style: none; padding: 0; margin: 0; } .blog-list li { margin-bottom: 2rem; padding: 1.5rem; border-radius: 8px; background-color: white; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; gap: 1.5rem; } .blog-list li:hover { transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); } .blog-content { flex: 1; } .blog-image { width: 150px; height: 150px; object-fit: cover; border-radius: 4px; } .date { display: inline-block; font-size: 0.9rem; color: #718096; margin-bottom: 0.5rem; font-weight: 500; } .blog-list h2 { margin-top: 0; } .blog-list p { margin-top: 0.5rem; color: #4a5568; } .read-more { display: inline-block; margin-top: 0.5rem; font-weight: 500; } @media (max-width: 768px) { body { padding: 0 1rem; } .container { padding: 1.5rem; margin: 1rem auto; } .blog-list li { flex-direction: column; } .blog-image { width: 100%; height: 200px; margin-bottom: 1rem; } } @media (prefers-color-scheme: dark) { body { background-color: #1a202c; color: #e2e8f0; } .container { background-color: #2d3748; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); } h1, h2, h3, h4, h5, h6 { color: #f7fafc; } a { color: #63b3ed; } a:hover, a:focus { color: #90cdf4; } .blog-list li { background-color: #2d3748; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); } .date { color: #a0aec0; } .blog-list p { color: #cbd5e0; } } /* Header and Logo Styling */ .header-container { display: flex; align-items: center; gap: 20px; margin-bottom: 1rem; } .lab-logo { max-height: 80px; width: auto; } .header-text { flex: 1; } @media (max-width: 768px) { .header-container { flex-direction: column; text-align: center; } .lab-logo { margin-bottom: 1rem; } } @media (prefers-color-scheme: dark) { /* Existing dark mode CSS */ body { background-color: #1a202c; color: #e2e8f0; } }