html, body {
  height: 100%;
    overflow-x: hidden;
}
.back-home-wrapper {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mini-header {
  width: 100%;
  background: #0a3d91;

  padding: 1rem 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Americana stripe */
.mini-header::after {
  content: "";

  display: block;

  width: 100%;
  height: 10px;

  background: repeating-linear-gradient(
    90deg,
    #c62828 0px,
    #c62828 20px,
    #ffffff 20px,
    #ffffff 40px
  );
}
.back-home-button {
  display: inline-block;
  padding: 0.5rem 1rem;

  border: 2px solid #0a3d91;
  border-radius: 6px;

  color: #0a3d91;
  background: white;

  text-decoration: none;
  font-weight: bold;

  transition: all 0.2s ease;
}

.back-home-button:hover {
  background: #0a3d91;
  color: white;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  font-family: Georgia, serif;
  background: #f8f5f0;
  color: #1d1d1d;
  line-height: 1.7;
}
/* Header */
.site-header {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #0a3d91;
  position: relative;
}

/* Americana stripes */
.site-header::before,
.site-header::after {
  content: "";
  display: block;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    #c62828 0px,
    #c62828 20px,
    #ffffff 20px,
    #ffffff 40px
  );
}

.site-header::before {
  margin-bottom: 1.5rem;
}

.site-header::after {
  margin-top: 1.5rem;
}

/* Site title */
.site-header h1 {
  margin: 0;
  font-size: 3rem;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Subtitle */
.site-header p {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  color: #ff8c00;
}

/* Main layout */
main {
  flex: 1;
}
.container {
  max-width: 850px;   /* wider than before */
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem; 
}
/* Post cards */
.post-card {
  background: #ffffff;
  padding: 1.75rem;
  margin-bottom: 1.75rem;
  border-left: 6px solid #0a3d91;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Post titles */
.post-card h3 {
  margin-top: 0;
}

.post-card h3 a {
  color: #c62828;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-card h3 a:hover {
  color: #0a3d91;
  text-decoration: underline;
}

/* Meta info */
.meta {
  color: #777;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Read more link */
.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: #0a3d91;
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Single post page */
.post h1 {
  color: #0a3d91;
  margin-top: 0;
}

/* Footer */
.site-footer,
footer {
  background: #0a3d91;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
  border: none;
}

/* Prevent theme wrapper issues */
.site-footer *,
footer * {
  background: transparent;
  color: white;
}

/* Footer text */
.site-footer p,
footer p {
  margin: 0;
}

/* Links */
a {
  color: #0a3d91;
}

a:hover {
  color: #c62828;
}
