.featured-post-container {
            display: flex;
            width: 100%;
            max-width: 1200px; /* Adjust as needed */
            margin: 0 auto;
            flex-wrap: wrap;
            background: #fff; /* Optional: background color */
        }
        .featured-post-image {
            width: 50%;
            height: 300px; /* Fixed height, adjust as needed */
            background-size: cover;
            background-position: center;
        }
        .featured-post-content {
            width: 50%;
            padding: 20px;
            box-sizing: border-box;
        }
        .featured-post-category {
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
        }
        .featured-post-title {
            font-size: 24px;
            margin: 10px 0;
        }
        .featured-post-excerpt {
            font-size: 16px;
            color: #333;
        }
        .featured-post-button {
            display: inline-block;
            padding: 10px 20px;
            background: #0073aa; /* WordPress blue, change as desired */
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
        }
        .featured-post-button:hover {
            background: #005d87;
        }
        @media (max-width: 768px) {
            .featured-post-image,
            .featured-post-content {
                width: 100%;
            }
        }
        