/* ===============================
   GLOBAL STYLES
================================ */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #1e1e1e;
  color: #f2f2f2;
}

a {
  color: #66ccff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===============================
   MAIN SITE LAYOUT (3 COLUMNS)
================================ */
.layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin: 40px;
}

/* LEFT COLUMN */
.side-column {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #262626;
  padding: 20px;
  border-radius: 12px;
}

/* RIGHT COLUMN */
.right-column {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #262626;
  padding: 20px;
  border-radius: 12px;
}

/* SIDE BOXES */
.side-box {
  background-color: #333;
  padding: 15px;
  border-radius: 8px;
}

/* MAIN CONTENT */
main {
  max-width: 800px;
  padding: 20px;
  background-color: #2b2b2b;
  border-radius: 12px;
}

/* ===============================
   SINGLE CENTERED PAGE (StaffList)
================================ */
.single-page {
  min-height: 100vh;
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
}

/* Reuse side-box styling, just size it */
.center-box {
  width: 400px;
  min-height: 400px;
  text-align: center;
}

/* ===============================
   CHARACTER PAGE TEMPLATE
================================ */

/* Big character box */
.character-box {
  width: 900px;
  max-width: 95%;
}

/* Name at the top */
.character-name {
  text-align: center;
  margin-top: 0;
  color: #ffcc66;
}

/* Two-column layout inside the box */
.character-layout {
  display: flex;
  gap: 20px;
}

/* Infobox (Fandom-style) */
.character-infobox {
  width: 260px;
  background-color: #262626;
  padding: 15px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Character image */
.character-infobox img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Info rows */
.info-item {
  margin-bottom: 8px;
}

.info-label {
  display: block;
  font-size: 0.85em;
  color: #aaa;
}

.info-value {
  font-weight: bold;
}

/* Main text area */
.character-content {
  flex: 1;
}

.character-content h2 {
  color: #ffcc66;
  margin-top: 0;
}

/* Cut Content category styling */
.center-box h2 {
  margin-top: 25px;
  margin-bottom: 8px;
  color: #ffcc66;
  font-size: 1.2em;
}

.center-box ul {
  margin-top: 0;
  padding-left: 20px;
}

/* ===============================
   CUT CONTENT ITEM BOXES
================================ */

/* Individual cut content item */
.cut-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: #262626;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  gap: 15px;
}

/* Text area */
.cut-text {
  flex: 1;
}

.cut-text h3 {
  margin: 0 0 5px;
  color: #ffcc66;
}

/* Image on the right */
.cut-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  background-color: #333;
}

/* Vertical divider between text and image */
.cut-item {
  position: relative;
}

/* The vertical line */
.cut-item::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 95px;              /* position before the image */
  width: 1px;
  background-color: #444;
}
