/* Hide author avatar on blog posts */
.entry-meta .avatar,
.author-avatar,
.post-author .avatar,
.byline img,
.entry-footer .avatar,
.entry-header .avatar {
    display: none !important;
}

/* Hide author information but keep dates */
.entry-meta .author,
.entry-meta .byline,
.entry-meta .by-author,
.post-author,
.entry-author {
    display: none !important;
}

/* Hide tags but NOT the entire footer */
.entry-content .tags,
.post-tags,
.entry-footer .cat-tags-links,
.entry-footer .tags {
    display: none !important;
}

.entry-content {
    width: 100% !important;
    margin: 0 !important;
}

/* LinkedIn button styling */
.main-navigation a[href="https://www.linkedin.com/in/stratcommunications/"] {
    background-color: #0077b5 !important;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;
    margin-left: 10px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.main-navigation a[href="https://www.linkedin.com/in/stratcommunications/"]:hover {
    background-color: #005885 !important;
}

/* X/Twitter button styling */
.main-navigation a[href*="x.com"],
.main-navigation a[href*="twitter.com"] {
    background-color: #000000 !important;
    color: white !important;
    padding: 8px 12px !important;
    border-radius: 20px !important;
    margin-left: 5px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.main-navigation a[href*="x.com"]:hover,
.main-navigation a[href*="twitter.com"]:hover {
    background-color: #333333 !important;
}

/* Hide unwanted footer content but keep date */
.entry-footer .author,
.entry-footer .byline,
.entry-footer .cat-links,
.entry-footer .tags-links,
.entry-footer .cat-tags-links,
.entry-footer .edit-link,
.entry-footer .comments-link,
.entry-footer .entry-meta .author,
.posted-by,
.by-author,
.categories-links,
.post-categories,
.post-tags,
.entry-footer .tags,
.entry-footer .categories {
    display: none !important;
}

/* Hide the "Posted on" text but keep the date */
.entry-footer .posted-on::before,
.entry-footer .entry-date::before {
    content: '' !important;
}

/* Hide "Categories", "Tags", "Leave a comment", "Edit" text */
.entry-footer a[href*="category"],
.entry-footer a[href*="tag"],
.entry-footer a[href*="edit"],
.entry-footer a[href*="comment"] {
    display: none !important;
}

/* Move the date above the title, not behind it */
.entry-footer .entry-date {
    position: absolute !important;
    top: -30px !important;
    left: 0 !important;
    color: #666 !important;
    font-size: 14px !important;
    z-index: 10 !important;
    background: white !important;
    padding: 5px 0 !important;
}

/* Add minimal space at the top to accommodate the date */
.entry-header,
.entry-title {
    margin-top: 15px !important;
    padding-top: 5px !important;
}

/* Make sure the post container allows absolute positioning */
.entry,
.post,
article {
    position: relative !important;
    margin-top: 5px !important;
}

/* Blog Post Dividers - Back to original with more space before red line */
.hentry, .post, article {
    padding-bottom: 20px; /* Back to original */
    margin-bottom: 60px;
}

.hentry::after, .post::after, article::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: #d23b39;
    margin: 80px auto 0 auto; /* Increased top margin for space before the line */
}

.hentry:last-child::after, .post:last-child::after, article:last-child::after {
    display: none;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .hentry, .post, article {
        padding-bottom: 15px; /* Back to original */
        margin-bottom: 45px;
    }
    
    .hentry::after, .post::after, article::after {
        width: 70%;
        margin: 60px auto 0 auto; /* Increased top margin for mobile */
    }
}/* Force all images in sidebar/widgets to display */
#secondary img,
.sidebar img,
.widget img,
.widget-area img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100% !important;
    height: auto !important;
}
/* Make only sidebar headers the correct brand red color */
.widget h1,
.widget h2,
.widget h3,
.widget h4,
.widget strong,
.widget b,
#secondary h1,
#secondary h2,
#secondary h3,
#secondary h4,
#secondary strong,
#secondary b {
    color: #d23b39 !important;
}
This targets only the sidebar/widget area (#secondary and .widget) instead of affecting your entire website.
If "Content Creation" still doesn't change, let's try this even more specific approach:
css/* Target sidebar content specifically */
.widget h1,
.widget h2,
.widget h3,
.widget h4,
.widget strong,
.widget b,
.widget p strong,
#secondary h1,
#secondary h2,
#secondary h3,
#secondary h4,
#secondary strong,
#secondary b,
#secondary p strong,
.sidebar h1,
.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar strong,
.sidebar b {
    color: #d23b39 !important;
} 
/* Make all H1 and H2 headings the correct brand red color */
h2 {
    color: #d23b39 !important;
}
/* Simple fix - just add space after Continue reading link */
.more-link {
    margin-bottom: 25px !important;
    display: inline-block !important;
}

/* Adjust the red line margin to account for the new space */
.hentry::after, .post::after, article::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: #d23b39;
    margin: 40px auto 0 auto;
}
/* Reduce space below the red divider line */
.hentry, .post, article {
    padding-bottom: 20px;
    margin-bottom: 20px !important;  /* Reduced from 60px to 20px */
}

.hentry::after, .post::after, article::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: #d23b39;
    margin: 40px auto 0 auto;
}

/* Make sure the next post starts closer to the line */
.entry,
.post,
article {
    position: relative !important;
    margin-top: 0 !important;  /* Remove any top margin that creates space */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .hentry, .post, article {
        padding-bottom: 15px;
        margin-bottom: 15px !important;  /* Reduced for mobile too */
    }
    
    .hentry::after, .post::after, article::after {
        width: 70%;
        margin: 30px auto 0 auto;
    }
}/* System font stack for optimal performance and readability */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6; /* Improves readability */
}

/* Headers - you can keep these serif if you want personality, or use sans-serif for consistency */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.3; /* Tighter line height for headers */
}

/* Ensure all text elements use the system font */
p, li, span, div, a, button, input, textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Optional: Improve text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
cssarticle h2 {
  line-height: 1.2;
  color: #D94235;
}
cssarticle h2 {
  line-height: 1.2;
  color: #D94235;
}