/* Content Area */
        .content-area {
            flex: 1;
            padding: 3rem 2rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .page-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid rgba(62, 61, 58, 0.1);
        }

        .page-title {
            font-size: 3rem;
            color: #3E3D3A;
            font-weight: 300;
            letter-spacing: 0.02em;
            margin-bottom: 1rem;
        }

        .page-subtitle {
            font-size: 1.125rem;
            color: #5A5A57;
            font-weight: 400;
            font-style: italic;
        }

        /* Featured Post */
        .featured-post {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            margin-bottom: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .featured-image {
            width: 100%;
            height: 100%;
            min-height: 400px;
            object-fit: cover;
            background: linear-gradient(135deg, #E8E3DB 0%, #D4C9BE 100%);
        }

        .featured-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-badge {
            display: inline-block;
            background: #C0735C;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 2px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            margin-bottom: 1.5rem;
            width: fit-content;
        }

        .featured-title {
            font-size: 2.25rem;
            color: #3E3D3A;
            margin-bottom: 1rem;
            font-weight: 300;
            line-height: 1.2;
        }

        .featured-excerpt {
            color: #5A5A57;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1.0625rem;
        }
        .blog-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            color: #8B8985;
        }

        .blog-category {
            color: #C0735C;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.75rem;
        }

        .blog-date {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .blog-card {
            background: rgba(255, 255, 255, 0.85);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .blog-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            background: linear-gradient(135deg, #E8E3DB 0%, #D4C9BE 100%);
        }

        .blog-content {
            padding: 1.75rem;
        }

        .blog-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            color: #8B8985;
        }

        .blog-category {
            color: #C0735C;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.75rem;
        }

        .blog-date {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .blog-title {
            font-size: 1.5rem;
            color: #3E3D3A;
            margin-bottom: 0.75rem;
            font-weight: 400;
            line-height: 1.3;
        }
          .blog-excerpt {
            color: #5A5A57;
            line-height: 1.6;
            margin-bottom: 1rem;
            font-size: 0.9375rem;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #C0735C;
            font-weight: 500;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: gap 0.3s ease;
        }

        .blog-card:hover .read-more {
            gap: 0.75rem;
        }

        .read-more svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }


        @media (max-width: 768px) {
            .content-area {
                padding: 2rem 1rem 3rem;
            }

            .page-title {
                font-size: 2rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .featured-post {
                grid-template-columns: 1fr;
            }

            .featured-image {
                min-height: 250px;
            }

            .featured-content {
                padding: 2rem 1.5rem;
            }

            .featured-title {
                font-size: 1.75rem;
            }}