/* ===============================
   Tharendell – General Page Layout
   =============================== */

.th-page--general .th-page-inner {
  max-width: 1100px;
  margin: 60px auto 80px;
  padding: 0 20px;
}

/* Main card */
.th-general-card {
  position: relative;
  background: #14100b;
  border-radius: 16px;
  padding: 28px 30px 34px;
  border: 1px solid rgba(244,207,116,0.45);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.85),
    0 20px 38px rgba(0,0,0,0.65);
}

/* Inner dashed border */
.th-general-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  border: 1px dashed rgba(244,207,116,0.25);
  pointer-events: none;
}

/* Title */
.th-general-header {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.th-general-title {
  margin: 0;
  font-family: "Cinzel Decorative", serif;
  color: var(--th-gold);
  letter-spacing: 1px;
  font-size: 2.2rem;
}

/* Body content */
.th-general-body {
  position: relative;
  z-index: 1;
  color: #e5d8b0;
  font-size: 1rem;
  line-height: 1.6;
}

.th-general-body p {
  margin-bottom: 1rem;
}

.th-general-body a {
  color: var(--th-gold);
  text-decoration: underline;
}

.th-general-body a:hover {
  color: #ffe7a8;
}

/* Basic list tweaks */
.th-general-body ul,
.th-general-body ol {
  margin-left: 1.5rem;
}
