/* This justifies both sides of the text */
.type-post
p {text-align: justify;
}
.type-page
p {text-align: justify;
}
/* This adjusts spacing between text paragraphs */
.entry-content p {
  margin-bottom: 14px;
  margin-top: 0;
}
/* These four remove the extra space above the banner */
body.blog div#page {
    padding-top: 0px;
}
body.page div#page {
    padding-top: 0px;
}
body.single div#page {
    padding-top: 0px;
}
body.search div#page {
    padding-top: 0px;
}
/* These are adjustments to headers */
h3 {
  font-size: 26px;
	margin: 30px 0px  15px  0px;
}
h4 {
  font-size: 20px;
	margin: 25px 0px  15px  0px;
}
/* This adjusts bullet points and lists */
ul {
  list-style-type: circle;
}
ol {
  list-style-type: numeric;
}
li { padding: 8px 0px 0px;
line-height: 22px; text-align: left;}
blockquote, q {
    line-height: 1.4;
}

figcaption {
    line-height: 1.5; /* Adjust this value as needed */
    font-size: 15px;  /* Optional: Adjust the font size */
    color: #555;      /* Optional: Change the text color */
    text-align: center; /* Optional: Align the text */
}
.has-text-align-center {
  text-align: center !important;
}



/This added by ChatGPT for Book
.tes-book-page {
  --tes-bg: #08111f;
  --tes-panel: #10233b;
  --tes-panel-2: #163252;
  --tes-text: #f7fbff;
  --tes-muted: #d7e2f0;
  --tes-line: rgba(255, 255, 255, 0.16);
  --tes-accent: #d6b06d;
  --tes-accent-2: #efd29b;
  --tes-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  background: var(--tes-bg);
  color: var(--tes-text);
  font-family: Georgia, "Times New Roman", serif;
}

.tes-book-page * {
  box-sizing: border-box;
}

.tes-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.tes-hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 176, 109, 0.12), transparent 28%),
    linear-gradient(180deg, #0c1728 0%, #08111f 100%);
  border-bottom: 1px solid var(--tes-line);
}

.tes-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.tes-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(239, 210, 155, 0.45);
  color: var(--tes-accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

.tes-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin: 0 0 10px;
  color: #ffffff;
}

.tes-hero h2 {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.35;
  margin: 0 0 22px;
  color: var(--tes-accent-2);
  font-weight: normal;
}

.tes-lead,
.tes-book-page p,
.tes-list li {
  color: var(--tes-text);
  line-height: 1.75;
}

.tes-section-head p,
.tes-meta,
.tes-order-copy p {
  color: var(--tes-muted);
}

.tes-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}

.tes-btn {
  display: inline-block;
  padding: 14px 22px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.tes-btn:hover {
  background: #e7c98f;
  color: #111111;
  border-color: #e7c98f;  
	background: rgba(255, 255, 255, 0.05);
}

.tes-btn-primary {
  background: #d6b06d;
  color: #16120d;
  border: 1px solid #d6b06d;
  border-radius: 6px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;  
	border: 1px solid rgba(255, 255, 255, 0.24);
}

.tes-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.tes-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tes-btn-large {
  padding: 16px 28px;
  font-size: 1.05rem;
}

.tes-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.92rem;
}

.tes-meta span {
  position: relative;
}

.tes-meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(239, 210, 155, 0.7);
  transform: translateY(-50%);
}

.tes-hero-book {
  display: flex;
  justify-content: center;
}

.tes-book-mockup,
.tes-card,
.tes-quote-box,
.tes-faq-item {
  background: linear-gradient(180deg, #163252 0%, #10233b 100%);
  border: 1px solid var(--tes-line);
  border-radius: 10px;
  box-shadow: var(--tes-shadow);
}

.tes-book-mockup {
  max-width: 360px;
  width: 100%;
  padding: 18px;
}

.tes-book-mockup img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.tes-proof {
  padding: 22px 0;
  background: #0d1a2b;
  border-bottom: 1px solid var(--tes-line);
}

.tes-proof-box {
  padding: 18px 22px;
  border-left: 3px solid var(--tes-accent);
  background: rgba(214, 176, 109, 0.08);
  color: var(--tes-text);
}

.tes-proof-box p {
  margin: 0;
}

.tes-section {
  padding: 64px 0;
}

.tes-section-dark {
  background: linear-gradient(180deg, #10233b 0%, #0b1a2c 100%);
  border-top: 1px solid var(--tes-line);
  border-bottom: 1px solid var(--tes-line);
}

.tes-section-head {
  margin-bottom: 28px;
}

.tes-section-head h3,
.tes-section h3 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  color: #ffffff;
}

.tes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tes-card {
  padding: 24px;
}

.tes-card h4,
.tes-faq-item h4 {
  margin: 0 0 12px;
  color: var(--tes-accent-2);
  font-size: 1.08rem;
}

.tes-card p,
.tes-faq-item p,
.tes-list li {
  margin: 0;
  color: var(--tes-text);
}

.tes-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.tes-list {
  margin: 16px 0 0;
  padding-left: 22px;
}

.tes-list li {
  margin-bottom: 12px;
}

.tes-quote-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 34px 28px;
  text-align: center;
}

.tes-quote {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.7;
  color: #ffffff;
}

.tes-order-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(214, 176, 109, 0.14), rgba(214, 176, 109, 0.06));
  border: 1px solid rgba(214, 176, 109, 0.35);
  border-radius: 10px;
  box-shadow: var(--tes-shadow);
}

.tes-order-action {
  text-align: right;
  min-width: 220px;
}

.tes-price {
  margin-bottom: 14px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--tes-accent-2);
}

.tes-faq-items {
  display: grid;
  gap: 16px;
}

.tes-faq-item {
  padding: 22px;
}

@media (max-width: 900px) {
  .tes-hero-grid,
  .tes-cards,
  .tes-two-col,
  .tes-order-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .tes-order-action {
    text-align: left;
    min-width: 0;
  }

  .tes-hero {
    padding-top: 48px;
  }
}

@media (max-width: 640px) {
  .tes-wrap {
    width: min(100% - 24px, 1120px);
  }

  .tes-btn {
    width: 100%;
    text-align: center;
  }

  .tes-cta-row {
    flex-direction: column;
  }
}
.tes-book-page,
.tes-book-page p,
.tes-book-page li,
.tes-book-page span,
.tes-book-page div,
.tes-book-page h1,
.tes-book-page h2,
.tes-book-page h3,
.tes-book-page h4,
.tes-book-page strong,
.tes-book-page em,
.tes-book-page a {
  color: #ffffff !important;
}

.tes-book-page .tes-meta,
.tes-book-page .tes-section-head p,
.tes-book-page .tes-order-copy p {
  color: #dbe7f5 !important;
}

.tes-book-page .tes-btn-primary {
  color: #16120d !important;
}

.tes-book-page .tes-btn-secondary {
  color: #ffffff !important;
}