body {
    font-family: 'Karla', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #26251f;
    background-color: #e5f5f6;
    font-smooth:subpixel-antialiased;
}


main {
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0 none;
}

.homepage-layout {
    display: flex;
    flex-direction: row;
    gap: 60px;
    padding: 60px;
    min-height: 100vh;
    box-sizing: border-box;
    
    max-width: 1440px;
    margin: 0 auto;
}

.sidebar {
    background: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex-shrink: 0;
    width: 300px;
}

.blog-name {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 64px;
    font-weight: 400;
    color: #26251f;
    margin: 0;
    line-height: 76px;
}

.blog-tagline {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #525252;
    font-size: 15px;
    margin: 0;
    line-height: normal;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    min-width: 0;
}

.articles-container {
    display: flex;
    flex-direction: column;
    background: #1d1c1c;
    border-radius: 0;
    padding: 60px;
}

.article-card {
    border-bottom: 1px solid #E5F5F6;
    padding-bottom: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.article-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}


.article-card h2 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 54px;
    text-transform: capitalize;
}

.article-card h2 a {
    color: #28c881;
    text-decoration: none;
}

.article-card h2 a:hover {
    color: #20a06b;
}

.article-meta {
    color: #F0EFEF;
}

.article-excerpt {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    font-size: 24px;
    line-height: normal;
    margin: 0;
}

.article-tags {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tag {
    background: none;
    color: #28c881;
    padding: 0;
    border-radius: 0;
    font-size: 15px;
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    margin: 0;
    text-decoration: none;
}

.tag:hover {
    color: #20a06b;
}

/* Sidebar Styles */
.sidebar .header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-section {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.search-label {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    color: #525252;
    font-weight: 400;
}

.search-input {
    position: relative;
}

.search-input input {
    width: 100%;
    height: 38px;
    background: #ffffff;
    border: 1px solid #565656;
    border-radius: 4px;
    padding: 0 10px;
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    color: #7c7c7c;
    box-sizing: border-box;
}

.search-input input::placeholder {
    color: #7c7c7c;
}

.categories-section {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.category-item {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    color: #676767;
    font-weight: 400;
}

.category-item a {
    color: #676767;
    text-decoration: none;
}

.category-item a:hover {
    color: #28c881;
}

.nav-section {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.nav-item {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    color: #525252;
    font-weight: 400;
    cursor: pointer;
}

.nav-item:hover {
    color: #28c881;
}

.nav-item a {
    color: inherit;
    text-decoration: none;
}

/* Navigation Section */
.navigation-section {
    background: #1d1c1c;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-previous,
.nav-home,
.nav-next {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    cursor: pointer;
}

.nav-text {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    color: #28c881;
    font-weight: 400;
}

.nav-arrow {
    font-family: 'Karla', 'Noto Sans Math', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    color: #28c881;
    font-weight: 400;
}

.nav-previous:hover .nav-text,
.nav-previous:hover .nav-arrow,
.nav-home:hover .nav-text,
.nav-next:hover .nav-text,
.nav-next:hover .nav-arrow {
    color: #20a06b;
}

/* Shared Content Styles */
.content-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    min-width: 0;
}

.content-section {
    background: #1d1c1c;
    padding: 60px;
    border-radius: 0;
}

.content-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 54px;
    margin: 0;
    text-transform: capitalize;
}

.content-title--category {
    color: #4ade80;
    margin-bottom: 16px;
}

.content-title--article {
    color: #33f49f;
}

.content-meta {
    display: flex;
    gap: 6px;
    align-items: center;
}

.content-date {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #f0efef;
    font-size: 15px;
    font-weight: 400;
}

.content-text {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.content-text--large {
    font-size: 24px;
    line-height: normal;
    font-weight: 400;
}

.content-text--meta {
    font-size: 14px;
    color: #888888;
}

/* Rich content formatting for content-text--large */
.content-text--large {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-text--large h1 {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #f0efef;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.content-text--large h2 {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #f0efef;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.content-text--large h3 {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #f0efef;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.content-text--large p {
    margin: 0;
    color: #f0efef;
    font-size: 24px;
    line-height: normal;
}

.content-text--large ul,
.content-text--large ol {
    margin: 0;
    padding-left: 24px;
    color: #f0efef;
    font-size: 24px;
    line-height: normal;
}

.content-text--large li {
    margin-bottom: 4px;
    color: #f0efef;
}

.content-text--large blockquote {
    border-left: 4px solid #33f49f;
    padding-left: 16px;
    margin: 0;
    color: #f0efef;
    font-style: italic;
}

.content-text--large code {
    background: #333333;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #33f49f;
}

.content-text--large pre {
    background: #333333;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 0;
}

.content-text--large pre code {
    background: none;
    padding: 0;
}

.content-text--large a {
    color: #f0efef;
    text-decoration: underline;
}

.content-text--large a:hover {
    color: #33f49f;
}

/* Single Post Styles */
/* .article-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    min-width: 0;
}

.article-header {
    background: #1d1c1c;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.article-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 54px;
    color: #33f49f;
    margin: 0;
    width: 100%;
}

.article-published-date {
    display: flex;
    gap: 6px;
    align-items: center;
}

.article-date {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #f0efef;
    font-size: 15px;
    font-weight: 400;
}

.article-body {
    background: #1d1c1c;
    width: 100%;
    flex: 1;
}

.article-content {
    padding: 60px;
    color: #f0efef;
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.article-content h1 {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #f0efef;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.article-content h2 {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #f0efef;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.article-content h3 {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #f0efef;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.article-content p {
    margin: 0;
    color: #f0efef;
    font-size: 24px;
    line-height: normal;
}

.article-content ul, .article-content ol {
    margin: 0;
    padding-left: 24px;
    color: #f0efef;
    font-size: 24px;
    line-height: normal;
}

.article-content li {
    margin-bottom: 4px;
    color: #f0efef;
}

.article-content blockquote {
    border-left: 4px solid #33f49f;
    padding-left: 16px;
    margin: 0;
    color: #f0efef;
    font-style: italic;
}

.article-content code {
    background: #333333;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #33f49f;
}

.article-content pre {
    background: #333333;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 0;
}

.article-content pre code {
    background: none;
    padding: 0;
}

.article-content a {
    color: #f0efef;
    text-decoration: underline;
}

.article-content a:hover {
    color: #33f49f;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #F0EFEF;
}

p {
    color: #F0EFEF;
}

a {
    color: #28c881;
}

a:hover {
    color: #20a06b;
}

@media (max-width: 768px) {
    .homepage-layout {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .sidebar {
        gap: 30px;
    }

    .content-column {
        gap: 30px;
    }

    .content-section {
        padding: 30px;
    }

    .blog-name {
        font-size: 32px;
        line-height: 38px;
    }

    .content-title {
        font-size: 24px;
        line-height: 27px;
    }

    .article-card h2 {
        font-size: 24px;
        line-height: 27px;
    }

    .article-excerpt {
        font-size: 18px;
    }

    .content-text--large {
        font-size: 18px;
    }

    .navigation-section {
        padding: 30px;
        /* margin-top: 30px; */
    }

    .nav-text,
    .nav-arrow {
        font-size: 18px;
    }

    .article-card {
        max-width: none;
    }
}