/* =============== 
   SURPRISE BLOG STYLING
   =============== */

/* Page background with a light gradient */
.blog {
  background: linear-gradient(to right, #f2f2f2, #e6f7ff);
  padding: 2rem;
}

/* Each post container (hentry/post) */
.blog .hentry {
  background-color: #fff;
  border: 2px solid #22A3FF;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.blog .hentry:hover {
  transform: scale(1.02);
}

/* Post title */
.blog .entry-title a {
  font-family: "Saira", sans-serif; /* or any bold, wide font */
  color: #13267A;
  font-size: 1.8rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog .entry-title a:hover {
  color: #2c3e50;
}

/* Excerpt/summary styling */
.blog .entry-summary {
  background-color: #d0e8ff; /* soft blue background */
  padding: 1rem;
  font-family: "Open Sans", sans-serif; /* or any preferred font */
  line-height: 1.6;
  margin-top: 1rem;
}

/* "Read More" button styling */
.blog a.more-link {
  display: inline-block;
  background: #4ca1af;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-top: 1rem;
  transition: background 0.3s ease;
}
.blog a.more-link:hover {
  background: #2c3e50;
}



/* Single Entries _______________________________________________________________________
 * ______________________________________________________________________________________*/

/* =============== 
   SURPRISE SINGLE POST STYLING
   =============== */

/* Overall background for single post pages */
.single {
  background: linear-gradient(to bottom, #ffffff, #f0f0f0);
  padding: 2rem 0;
}

/* Post container styling */
.single .hentry {
  background-color: #fff;
  border: 2px solid #22A3FF;
  border-radius: 10px;
  padding: 2rem;
  margin: 0 auto 2rem;
  max-width: 800px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Post title styling */
.single .entry-title {
  font-family: "Oswald", sans-serif;
  color: #13267A;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Post meta (date, author) styling */
.single .entry-meta {
  font-family: "Open Sans", sans-serif;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Main content styling */
.single .entry-content {
  font-family: "Open Sans", sans-serif;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
}

/* Images within the content */
.single .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 1rem 0;
}

/* Blockquotes styling */
.single .entry-content blockquote {
  border-left: 5px solid #e67e22;
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  background: #f9f9f9;
}

/* Links within the content */
.single .entry-content a {
  color: #e67e22;
  text-decoration: underline;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .single .hentry {
    padding: 1.5rem;
    margin: 1rem;
  }
  .single .entry-title {
    font-size: 2rem;
  }
}

/*____________________________________________________*/
/* Reset heading styles on single post pages for H1, H3, H4 */
.single h1,
.single h3,
.single h4 {
  font-weight: normal;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* H2 with reduced top margin and new color */
.single h2 {
  font-weight: normal;
  margin-top: 0.25em; /* reduced top margin */
  margin-bottom: 0.5em;
  font-size: 1.75em;
  color: #13267A;
}

/* Define font sizes for other headings */
.single h1 { font-size: 2em; }
.single h3 { font-size: 1.5em; }
.single h4 { font-size: 1.25em; }