#MainBody .info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #380000;
  color: var(--color-text);
  border: 1px solid #990000;
  border-radius: 8px;
  overflow: hidden;                            /* rounds the outer corners */
  table-layout: fixed;                         /* clean wrapping */
  font: 1rem/1.5 Arial, Helvetica, sans-serif; /* match Index page */
}

/* Header */
#MainBody .info-table thead th {
  text-align: center;
  padding: 10px 12px;
  background: linear-gradient(#5a0000, #380000);
  color: #FFD9B3;
  font-weight: bold;
  border-bottom: 1px solid #660000;
}

/* Body cells */
/* Base TD styling for all article tables */
#MainBody .info-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px;
  border-top: 1px solid #660000;
  word-wrap: break-word;
}

/* Odd-numbered tables: #3A0000 */
#MainBody .info-table:nth-of-type(odd) > tbody > tr > td {
  background: #3A0000;
}

/* Even-numbered tables: #320000 */
#MainBody .info-table:nth-of-type(even) > tbody > tr > td {
  background: #320000;
}

/* Keep explicit .synopsis-row override — it still works */
#MainBody .info-table .synopsis-row td {
  background: #320000;
}

#MainBody .Synopsis p + p {
  margin-top: 14px;
}

#MainBody .Synopsis h3 {
  text-transform: uppercase;
}

.info-table + .info-table {
  margin-top: 2rem;
}

/* Float the article image with text wrapping around it */
#MainBody .article-image {
  float: left;
  margin: 0 1.2rem 1rem 0;
  max-width: 45%;
  height: auto;
  border-radius: 6px;
  box-shadow: 4px 4px 15px rgba(0,0,0,0.7);
}

/* Let the article be normal flow text so it wraps under the float */
#MainBody .Synopsis {
  font: 1rem/1.5 Arial, Helvetica, sans-serif;
  color: var(--color-text);
  text-align: justify;
  text-justify: inter-word;
  min-width: 0;
}

#MainBody .affiliate {
  font: 13px Arial, Helvetica, sans-serif;
  color: var(--color-text);
  text-align: justify;
  font-style: italic;
  min-width: 0;
}

/* --- Auxiliary buttons --- */
.community-aux {
  text-align: center;
  margin-top: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.community-aux .ep-btn {
  display: inline-block;
  background: #3A0000;
  color: #C0C0C0;
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid #660000;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.community-aux .ep-btn:hover,
.community-aux .ep-btn:focus {
  background: #990000;
  color: #FFFFFF;
  text-decoration: underline;
  box-shadow: 0 0 10px rgba(255, 200, 150, 0.35);
}
.community-aux .sep {
  display: inline-block;
  color: #C0C0C0;
  margin: 0 12px;
  font-weight: normal;
  vertical-align: middle;
}

/* Mobile tweaks */
@media (max-width:700px) {
  #MainBody .info-table {
    font-size: 0.95rem;
  }
  #MainBody .info-table thead th,
  #MainBody .info-table td {
    padding: 10px;
  }
}

@media (max-width:700px) {
  .community-aux {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .community-aux .sep { display: none; }
  .community-aux .ep-btn {
    width: 80%;
    text-align: center;
  }
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ov-title {
  text-align: center;
  margin: 20px 0;
}

.ov-title img {
  display: inline-block;
  border: none;
  max-width: 100%;
  height: auto;
}

/* Mobile tweaks for the article image */
@media (max-width:700px) {
  #MainBody .article-image {
    float: none;
    display: block;
    margin: 0 auto 16px;
    max-width: 100%;
    height: auto;
  }

  #MainBody .Synopsis {
    width: 100%;
    text-align: left;
  }
}