/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-color: #1a1a1a;
    --text-secondary: #4a4a4a;
    --bg-color: #fafafa;
    --bg-warm: #fafafa;
    --border-color: #e0e0e0;
    --link-color: #0066cc;
    --link-hover: #0052a3;
    --tag-bg: #f0f0f0;
    --tag-text: #1a1a1a;
    --accent-color: #1a1a1a;
    --max-width: 800px;
    --spacing: 2rem;
    --sidebar-width: 375px;
}

[data-theme="dark"] {
    --text-color: #dbeafe;
    --text-secondary: #93c5fd;
    --bg-color: #1e293b;
    --bg-warm: #1e293b;
    --border-color: #334155;
    --link-color: #60a5fa;
    --link-hover: #93c5fd;
    --tag-bg: #1e293b;
    --tag-text: #dbeafe;
    --accent-color: #60a5fa;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-warm) !important;
    font-size: 18px;
    font-weight: 400;
}

/* General paragraph styling */
p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Ensure all text elements are properly aligned */
h1, h2, h3, h4, h5, h6 {
    text-align: left !important;
}

li {
    text-align: left !important;
}

/* Ensure main content text is left-aligned */
.main-content {
    text-align: left !important;
}

.main-content * {
    text-align: left !important;
}

/* CV specific alignment */
.cv-content {
    text-align: left !important;
}

.cv-content * {
    text-align: left !important;
}

.cv-item h3 {
    text-align: left !important;
}

.cv-item h3 .cv-date {
    text-align: right !important;
}

.cv-item p {
    text-align: left !important;
}

.cv-item ul {
    text-align: left !important;
}

.cv-item ul li {
    text-align: left !important;
}

/* About page alignment */
.about-content {
    text-align: left !important;
}

.about-content * {
    text-align: left !important;
}

.about-content p {
    text-align: left !important;
}

/* Certifications page alignment */
.certifications-content {
    text-align: left !important;
}

.certifications-content * {
    text-align: left !important;
}

.certifications-description {
    text-align: left !important;
}

/* Blog content alignment */
.blog-post-excerpt {
    text-align: left !important;
}

.blog-post-body {
    text-align: left !important;
}

.blog-post-body * {
    text-align: left !important;
}

.blog-post-body p {
    text-align: left !important;
}

.blog-post-body ul,
.blog-post-body ol {
    text-align: left !important;
}

.blog-post-body li {
    text-align: left !important;
}

/* Experience items alignment */
.experience-item {
    text-align: left !important;
}

.experience-item * {
    text-align: left !important;
}

.experience-item p {
    text-align: left !important;
}

/* Hero section alignment */
.hero {
    text-align: left !important;
}

.hero * {
    text-align: left !important;
}

.hero h1 {
    text-align: left !important;
}

.hero-description {
    text-align: left !important;
}

/* Footer alignment */
.footer-content {
    text-align: left !important;
}

.footer-content * {
    text-align: left !important;
}

/* Sidebar content should remain centered */
.sidebar-content {
    text-align: center !important;
}

.sidebar-content * {
    text-align: center !important;
}

.sidebar-content .profile-bio {
    text-align: left !important;
}

/* Navigation alignment */
.nav-menu {
    text-align: left !important;
}

.nav-menu a {
    text-align: left !important;
}

/* Ensure all paragraphs are left-aligned */
p {
    text-align: left !important;
}

/* Override any center alignment in main content areas */
main {
    text-align: left !important;
}

main * {
    text-align: left !important;
}

section {
    text-align: left !important;
}

section * {
    text-align: left !important;
}

/* Top Header */
.top-header {
    width: 100%;
    background-color: var(--bg-warm) !important;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-left {
    flex: 0 0 auto;
}

.site-title-header {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}

.site-title-header:hover {
    color: var(--link-color);
}

.header-right {
    flex: 0 0 auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Page Layout */
.page-wrapper {
    display: flex;
    min-height: calc(100vh - 60px);
    width: 100%;
    box-sizing: border-box;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-warm) !important;
    padding: 2rem 2rem 2rem 1.5rem;
    position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    flex-shrink: 0;
    order: 2;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-image-circle {
    margin-bottom: 1.5rem;
}

.profile-image-circle img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.profile-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.profile-email {
    font-size: 1rem;
    color: var(--link-color);
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.profile-email:hover {
    text-decoration: underline;
}

.profile-bio {
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.profile-location-short {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.profile-location-full {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.sidebar-divider {
    width: 100%;
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

.sidebar-social {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.github-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
}

.github-link svg {
    width: 24px;
    height: 24px;
}

.github-link:hover {
    opacity: 0.7;
}

.linkedin-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
}

.linkedin-link svg {
    width: 24px;
    height: 24px;
}

.linkedin-link:hover {
    opacity: 0.7;
}

/* Main Layout */
.main-layout {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-warm) !important;
    min-width: 0;
    order: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation - now in header */
.navbar {
    display: none;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.2s;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--link-color);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: color 0.2s;
    margin-left: 1rem;
}

.theme-toggle:hover {
    color: var(--link-color);
}

.theme-icon {
    width: 20px;
    height: 20px;
    transition: opacity 0.2s, transform 0.2s;
}

.theme-icon.moon-icon {
    display: none;
}

[data-theme="dark"] .theme-icon.sun-icon {
    display: none;
}

[data-theme="dark"] .theme-icon.moon-icon {
    display: block;
}

/* Main Content */
.main-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing) 1.5rem;
    background-color: var(--bg-warm) !important;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    margin-bottom: 3rem;
}

.hero-blog-link {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-blog-link a {
    color: var(--link-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.hero-blog-link a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.name-highlight {
    color: var(--link-color);
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: left;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-align: left;
}

.hero-description a {
    color: var(--link-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.hero-description a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.hero-cta {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Blog Preview */
.blog-preview {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blog-post-card {
    padding-bottom: 2rem;
}

.blog-post-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: left;
}

.blog-post-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.blog-post-header h2 a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.2s;
}

.blog-post-header h2 a:hover {
    color: var(--link-color);
}

.blog-post-header time {
    color: var(--text-secondary);
    font-size: 1rem;
    white-space: nowrap;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--tag-bg);
    color: var(--tag-text);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
}

.blog-post-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: left;
}

.read-more {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.read-more:hover {
    color: var(--link-hover);
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 2rem 0;
    background-color: var(--bg-warm);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.footer-content a {
    color: var(--link-color);
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Blog Page */
.blog-page-header {
    margin-bottom: 3rem;
}

.blog-page-header h1 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* About Page */
.about-content {
    max-width: 700px;
}

.about-content h1 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
}

.experience-item {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.experience-item h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.experience-item p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
}

.experience-images-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.experience-image {
    flex: 1;
    min-width: 280px;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-image img {
    width: 100%;
    max-width: 100%;
    max-height: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .experience-images-container {
        flex-direction: column;
    }
    
    .experience-image {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Certifications Page */
.certifications-content {
    max-width: 700px;
}

.certifications-content h1 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.certifications-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    text-align: left;
}

.credly-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.2s ease;
}

.credly-link:hover {
    color: var(--accent-color-hover, var(--accent-color));
    border-bottom-color: transparent;
    opacity: 0.8;
}

.kubestronaut-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    width: 100%;
}

.kubestronaut-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

.experience-image img {
    max-width: 100%;
    height: auto;
}

.certifications-list {
    list-style-type: disc;
    padding-left: 2rem;
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 2;
    color: var(--text-color);
}

.certifications-list li {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .certifications-list {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
    
    .certification-image-wrapper {
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* CV Page */
.cv-content {
    max-width: 700px;
}

.cv-content h1 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.cv-section {
    margin-bottom: 3rem;
}

.cv-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.cv-item {
    margin-bottom: 2rem;
}

.cv-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    text-align: left;
    width: 100%;
}

.cv-item h3 .cv-date {
    font-weight: bold;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-left: auto;
}

.cv-item .date {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cv-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: left;
}

.cv-item p strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.cv-item ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: left;
}

.cv-item ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
}

.cv-item ul li a {
    color: var(--link-color);
    text-decoration: underline;
}

.cv-item ul li a:hover {
    opacity: 0.7;
}

/* Blog Post Content */
.blog-post-content {
    max-width: 700px;
}

.blog-post-content .blog-post-header {
    margin-bottom: 1rem;
}

.blog-post-content .blog-post-header h1 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-post-content .blog-post-header time {
    color: var(--text-secondary);
    font-size: 1rem;
}

.blog-post-content .blog-post-tags {
    margin-bottom: 2rem;
}

.blog-post-body {
    line-height: 1.7;
    color: var(--text-secondary);
}

.blog-post-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.blog-post-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.blog-post-body p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: left;
    color: var(--text-secondary);
}

.blog-post-body pre {
    background-color: var(--tag-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-body code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

.blog-post-body a {
    color: var(--link-color);
    text-decoration: none;
}

.blog-post-body a:hover {
    text-decoration: underline;
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .main-content {
        padding: var(--spacing) 1.5rem;
    }
}

@media (max-width: 1024px) {
    .page-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 2rem 1.5rem;
        order: 1;
    }

    .main-layout {
        order: 2;
    }

    .sidebar-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .profile-image-circle img {
        width: 150px;
        height: 150px;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .header-nav {
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .main-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }
    
    .top-header {
        padding: 0.75rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    .header-left {
        margin-bottom: 0.5rem;
    }
    
    .header-right {
        width: 100%;
    }
    
    .header-nav {
        width: 100%;
        justify-content: space-between;
        gap: 0.75rem;
    }
    
    .nav-menu {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .site-title-header {
        font-size: 0.95rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }

    .blog-post-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-post-header h2 {
        font-size: 1.35rem;
    }
    
    .main-content {
        padding: 1.5rem 1rem;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .main-content h3 {
        font-size: 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        padding: 0 1rem;
    }
    
    .sidebar {
        padding: 1.5rem 1rem;
    }
    
    .profile-name {
        font-size: 1.35rem;
    }
    
    .cv-item h3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cv-item h3 .cv-date {
        margin-left: 0;
    }
    
    .experience-images-container {
        flex-direction: column;
    }
    
    .experience-image {
        min-width: 100%;
        max-width: 100%;
    }
    
    .kubestronaut-image-wrapper {
        margin: 2rem 0;
    }
    
    .kubestronaut-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .top-header {
        padding: 0.5rem 0;
    }
    
    .header-container {
        padding: 0 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .header-left {
        margin-bottom: 0;
    }
    
    .header-right {
        width: 100%;
    }
    
    .header-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.5rem;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.25rem 0;
        font-size: 15px;
    }
    
    .theme-toggle {
        align-self: flex-end;
        margin-top: -2.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }

    .main-content {
        padding: 1.25rem 0.75rem;
    }
    
    .main-content h1 {
        font-size: 1.75rem;
    }
    
    .main-content h2 {
        font-size: 1.35rem;
    }
    
    .main-content h3 {
        font-size: 1.15rem;
    }
    
    .blog-post-header h2 {
        font-size: 1.25rem;
    }
    
    .blog-post-header time {
        font-size: 0.9rem;
    }

    .profile-image-circle img {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 1.25rem;
    }
    
    .profile-title,
    .profile-email,
    .profile-location-full {
        font-size: 0.95rem;
    }
    
    .sidebar {
        padding: 1.25rem 0.75rem;
    }
    
    .footer-content {
        padding: 0 0.75rem;
        font-size: 13px;
    }
    
    .tag {
        font-size: 0.9rem;
        padding: 0.2rem 0.6rem;
    }
    
    .read-more {
        font-size: 0.95rem;
    }
    
    .cv-item h3 {
        font-size: 1.15rem;
    }
    
    .cv-item p,
    .cv-item ul,
    .cv-item ul li {
        font-size: 0.95rem;
    }
    
    .cv-item p strong {
        font-size: 0.95rem;
    }
    
    .cv-item h3 .cv-date,
    .cv-item .date {
        font-size: 0.95rem;
    }
    
    .about-content p,
    .certifications-description {
        font-size: 0.95rem;
    }
    
    .kubestronaut-image {
        max-width: 200px;
    }
    
    .experience-images-container {
        gap: 1rem;
    }
    
    .blog-post-tags {
        gap: 0.4rem;
    }
    
    .tag {
        font-size: 0.85rem;
        padding: 0.15rem 0.5rem;
    }
}

