/* Center site title + tagline */
.site-title,
.site-description {
  text-align: center !important;
  display: block;
}

/* Make blog title bigger + bold */
.site-title {
  font-size: 1.5em !important;   /* adjust size as needed */
  font-weight: 700;
  margin-bottom: 0.2em;        /* tighten spacing with tagline */
}

/* Style tagline as subtitle */
.site-description {
  font-size: 1em !important;
  font-style: italic;
  color: #999999;  /* Fog grey for subtle, moody look */
}
/* Base title style */
.site-title a {
  color: #B30000; /* Blood Red */
  text-decoration: none;
  transition: color 0.4s ease;
}

/* Flicker animation on hover */
.site-title a:hover {
  color: #FFD966; /* Candle Glow */
  animation: flicker 1.5s infinite alternate;
  text-shadow: 0 0 5px #FFD966, 0 0 10px #FF3333, 0 0 20px #FFD966;
}

/* Flicker keyframes */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 0 0 5px #FFD966, 0 0 10px #FF3333, 0 0 20px #FFD966;
  }
  20%, 22%, 24%, 55% {
    opacity: 0.6;
    text-shadow: none;
  }
}
/* Base menu link style */
.main-navigation a {
  color: #F5F5F5; /* Bone White */
  text-decoration: none;
  transition: color 0.4s ease;
}

/* Hover effect with flicker */
.main-navigation a:hover {
  color: #FFD966; /* Candle Glow */
  animation: flicker 1.5s infinite alternate;
  text-shadow: 0 0 5px #FFD966, 0 0 10px #FF3333, 0 0 20px #FFD966;
}

/* Flicker keyframes (reuse same as site title) */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 0 0 5px #FFD966, 0 0 10px #FF3333, 0 0 20px #FFD966;
  }
  20%, 22%, 24%, 55% {
    opacity: 0.6;
    text-shadow: none;
  }
}
.review-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5rem;
  line-height: 1.65;
  font-family: Georgia, serif;
}

.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.hook {
  border-left: 4px solid #b11226;
  padding-left: 1rem;
  color: #333;
  margin: 1.5rem 0;
}

.fact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  background: #0f0f0f;
  color: #f5f5f5;
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.95rem;
}

.fact-item {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fact-item:last-child {
  border-bottom: none;
}

.fact-label {
  font-weight: 700;
  text-transform: uppercase;
  color: #b11226;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.fact-value {
  line-height: 1.4;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .fact-card {
    grid-template-columns: 1fr;
    font-size: 1rem;
    padding: 1rem;
  }
  .fact-item {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
}

.cta {
  margin-top: 2rem;
  font-weight: 600;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}
