.post .entry-content ul,
.post .entry-content ol {
  list-style-position: outside;
  padding-left: 1.5em;
  text-indent: -1.6em;
}

.post .entry-content .wprm-recipe-container ul,
.post .entry-content .wprm-recipe-container ol {
  list-style-position: initial; /* Reset list-style-position within recipe block */
  padding-left: 0 ; /* Remove extra padding */
  text-indent: 0 ;
	margin-bottom: /* Remove any unwanted text indent */
}


/* Add top margin to h2 headings in posts */
.entry-content h3 {
  margin-top: 20px;
	margin-bottom: 10px;/* Adjust the top margin as needed */
  font-family: 'Roboto Condensed', sans-serif; /* Ensure font is set */
}
/* Add top margin to h2 headings in posts */
.entry-content h2 {
  margin-top: 40px;
	margin-bottom: 10px;/* Adjust the top margin as needed */
  font-family: 'Roboto Condensed', sans-serif; /* Ensure font is set */
}

/* Add top margin to h2 headings in posts */
.entry-content h4 {
  margin-top: 20px;
	margin-bottom: 10px;/* Adjust the top margin as needed */
  font-family: 'Roboto Condensed', sans-serif; /* Ensure font is set */
}
	
	/* Change bottom line color when not hovering over the tag */
.tag_list a:after {
  background-color: #d1e1e6; /* Dusty blue color for the bottom line */
}

/* Change background color and bottom line color on hover */
.tag_list a:hover {
  background-color: #d1e1e6; /* Lighter dusty blue background on hover */
  color: #3a4e59; /* Darker dusty blue text color on hover */
}

/* Reset transition for tag links */
.tag_list a {
  transition: none !important; /* Remove any transition effects */
}

/* Increase the padding between the post content and sidebar */
.main-content {
  display: flex; /* Ensure that the content and sidebar are aligned properly */
}

.site-sidebar {
  padding-left: 20px;
	padding-right: 20px;/* Increase the padding on the left side of the sidebar */
}


/* Target featured image on single posts */
.single-post .post-thumb img {
  max-width: 90%; /* Adjust the percentage to make the image smaller */
  aspect-ratio: 3/4;
	object-fit: cover;
  margin: 0 auto; /* Center the image */
  display: block; /* Ensure the image is displayed as a block-level element */
}

.wprm-recipe-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Align WPRM recipe image to the right of the title */
.wprm-recipe-header {
  display: flex;
  align-items: center;
}

.wprm-recipe-image {
  margin-right: 25px; /* Add space between the title and image */
  max-width: 300px; /* Adjust the image size as needed */
  flex-shrink: 0; /* Prevent the image from shrinking */
}

.wprm-recipe-header h2 {
  margin: 0; /* Remove default margins from the title */
}

.single-post .entry-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.single-post .entry-header {
  background-color: #f5f5f5; /* Replace with your desired color */
  padding:10px;
  border-radius: 10px;
}

/* Style the post excerpt text to black */
.entry-summary {
  color: #000000;
}

/* Style the post metadata to black */
.entry-meta {
  color: #000000
;
}

/* Ensure post metadata links are also black */
.entry-meta a {
  color: #000000;
  text-decoration: none;
}

.entry-meta a:hover {
  color: #555555; /* Optional: Slightly lighter color on hover */
}

.home .entry-title {
    display: none;
}

/* General link styling */
a {
  color: #2894c6; /* Default link color */
}

.wp-block-group {
    margin-bottom: 30px; /* Adjust spacing */
}

.entry-excerpt {
    font-size: 16px;  /* Adjust font size */
    color: #000000;  /* Set text color */
    margin-bottom: 15px; 
	margin-left: 20px;
	margin-right: 20px;/* Adds space below the excerpt */
    line-height: 1.5;
	font-style:italic/* Improves readability */
		
		
