body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

.layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Sections (left) */
.left {
  flex: 1;
  max-width: 200px;
  background: #f9f9f9;     /* light background */
  padding: 15px;
  border: 1px solid #ccc;   /* subtle border */
  border-radius: 8px;
}

/* Main text (middle) */
.middle {
  flex: 2;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: left; /* ensure normal reading alignment */
}

/* Comic (right) */
.right {
  flex: 1;
  text-align: center;
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.right img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ---------------- Header ---------------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center; /* center whole block */
  gap: 20px;
  padding: 15px;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
}

.site-header .logo img {
  width: 50px;
  height: 50px;
}

.site-header .title {
  text-align: center;
}

.site-header .title h1 {
  margin: 0;
  font-size: 2rem;
}

.site-header .title p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}
