:root {
  --bg: #eef6fa;
  --paper: #fff;
  --line: #d7e1e6;
  --text: #29313d;
  --muted: #7a8a97;
  --link: #2388d8;
  --yellow: #ffc400;
  --orange: #f6ad42;
  --blue: #2f40d8;
  --green: #54bd52;
  --deep: #2f3988;
}

/* =========================
   Base Styles
========================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

a {
  color: #248bd5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-width {
  width: min(1100px, calc(100% - 38px));
  margin: 0 auto;
}

/* =========================
   WordPress Admin Bar
========================= */

.adminbar {
  height: 28px;
  background: #1d2226;
  color: #cfd6dc;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
}

.adminbar a {
  color: #f1f1f1;
  margin-right: 16px;
}

.admin-left,
.admin-right {
  display: flex;
  align-items: center;
}

.wp-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #9aa4aa;
  margin-right: 8px;
  font-family: Georgia;
}

.avatar {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 2px;
  margin-left: 8px;
}

/* =========================
   Header
========================= */

.top-contact {
  height: 32px;
  background: #25262a;
  color: #e4e4e4;
  font-size: 13px;
}

.top-contact .site-width {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-contact .socials {
  margin-left: auto;
}

.main-header {
  background: #303a88;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-row {
  height: 83px;
  display: flex;
  align-items: center;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #1f2542;
  margin-right: auto;
}

.brand:hover {
  text-decoration: none;
}

.brand strong {
  color: #13172c;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.primary-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.menu-toggle {
  display: none;
  background: #fff;
  border: 0;
  padding: 8px 10px;
  border-radius: 3px;
}

.blank-head {
  height: 52px;
  background: #fff;
}

/* =========================
   Page Hero
========================= */

.page-hero {
  min-height: 214px;
  background: linear-gradient(108deg, #dd3357 0%, #a53677 48%, #3a398c 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.page-hero::before {
  width: 460px;
  height: 460px;
  left: 26%;
  top: -180px;
}

.page-hero::after {
  width: 540px;
  height: 540px;
  right: 7%;
  top: -70px;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 35px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 850px;
}

/* =========================
   Layout
========================= */

.page-layout {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 48px 0 70px;
}

.content-col {
  flex: 1;
  min-width: 0;
}

/* =========================
   Posts
========================= */

.post-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px 31px;
  margin: 0 auto;
  max-width: 1200px;
}

.post-card h2 {
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.post-card h3 {
  font-size: 26px;
  line-height: 1.2;
  margin: 28px 0 8px;
}

.post-card p {
  font-size: 13px;
  color: #354350;
  margin: 0 0 14px;
}

.post-card ul {
  font-size: 13px;
}

.meta {
  font-size: 12px;
  color: #8ea2ae;
  margin: 0 0 18px;
}

.post-img {
  width: 100%;
  margin: 16px 0 18px;
}

.post-img.narrow {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.post-tags {
  border-top: 1px solid #e8edf0;
  margin-top: 28px;
  padding-top: 15px;
}

.post-tags a {
  display: inline-block;
  background: #f3f6f8;
  color: #8b9ba7;
  border: 1px solid #dfe8ed;
  text-transform: uppercase;
  font-size: 10px;
  padding: 3px 8px;
  margin-right: 4px;
}

.post-nav {
  border-top: 1px solid #e2e9ee;
  margin-top: 28px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

/* =========================
   Buttons
========================= */

.btn-yellow,
.btn-orange,
.btn-blue,
.btn-green,
.btn-outline {
  display: inline-block;
  border-radius: 2px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.btn-yellow {
  background: var(--yellow);
  color: #1d1d1d;
  padding: 10px 24px;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  padding: 10px 24px;
}

.btn-blue {
  background: #2f44d7;
  color: #fff;
  padding: 18px 52px;
  border-radius: 6px;
  font-size: 26px;
  letter-spacing: 0.07em;
}

.btn-blue.small {
  font-size: 14px;
  padding: 12px 28px;
}

.btn-green {
  background: #58bd58;
  color: #fff;
  padding: 11px 25px;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 24px;
  padding: 10px 28px;
  margin-left: 20px;
}

.center {
  text-align: center;
}

.center-text {
  text-align: center;
}

.center-block {
  display: block;
  width: max-content;
  margin: 24px auto;
}

/* =========================
   Sidebar
========================= */

.sidebar {
  width: 170px;
  flex: 0 0 170px;
}

.widget {
  background: #fff;
  border: 1px solid var(--line);
  padding: 15px;
  margin-bottom: 12px;
}

.widget.search {
  padding: 12px;
}

.widget input {
  width: 100%;
  border: 1px solid #dce7ee;
  padding: 9px;
  color: #9baab4;
}

.widget h3 {
  font-size: 11px;
  letter-spacing: 0.16em;
  margin: 0 0 12px;
  color: #29313d;
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget li {
  border-top: 1px solid #edf2f5;
  padding: 7px 0;
  font-size: 12px;
}

.tag-cloud {
  line-height: 1.35;
}

.tag-cloud a {
  display: inline-block;
  margin: 0 4px 4px 0;
  color: #248bd5;
  font-weight: 600;
}

/* =========================
   Footer
========================= */

.footer {
  height: 76px;
  background: #fff;
  border-top: 1px solid #acbbcb;
  color: #a0aab2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* =========================
   Home Page
========================= */

.home-hero {
  padding: 105px 0 55px;
  background: #eef6fa;
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #333;
  text-transform: uppercase;
}

.home-copy h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 16px 0;
  color: #31363f;
}

.home-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 16px;
}

.mark-photo {
  width: 520px;
  height: 520px;
  object-fit: cover;
}

.home-details {
  padding: 30px 0 90px;
  text-align: center;
}

.home-details hr {
  border: 0;
  border-top: 1px solid #222;
  margin-bottom: 35px;
}

.home-details h2 {
  font-size: 34px;
}

.home-details h3 {
  font-size: 26px;
  font-weight: 400;
}

.two-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
  max-width: 900px;
  margin: 30px auto;
}

.two-list li {
  font-size: 17px;
  margin-bottom: 10px;
}

/* =========================
   Book Page
========================= */

.book-hero {
  background-image:
    linear-gradient(100deg, rgba(194, 52, 104, 0.8), rgba(48, 45, 128, 0.85)),
    url("../img/home-training-photo.jpg");
  background-size: cover;
  background-position: center;
  height: 720px;
  color: #fff;
}

.book-overlay {
  height: 100%;
  display: flex;
  align-items: center;
}

.book-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 90px;
  align-items: center;
}

.book-hero h1 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 300;
  margin: 0 0 25px;
}

.book-hero p {
  font-size: 18px;
}

.book-hero img {
  box-shadow:
    -20px 20px 0 transparent,
    -26px 26px 0 rgba(255, 255, 255, 0.65);
  border: 0;
}

.book-page {
  padding: 95px 0 110px;
}

.book-intro {
  background: #fff;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 25px;
  align-items: center;
  padding: 10px 135px;
}

.book-intro h2 {
  font-size: 25px;
  line-height: 1.35;
  margin-top: 0;
}

.book-intro ul {
  font-weight: 700;
}

.book-feature {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 45px;
  align-items: start;
  margin-top: 18px;
}

.book-feature h2 {
  text-align: center;
  font-size: 32px;
  line-height: 1.05;
}

.book-feature aside {
  text-align: center;
}

.book-feature aside img {
  margin-bottom: 20px;
}

.large {
  font-size: 18px;
  padding: 16px 56px;
}

/* =========================
   Trading Mentorship Page
========================= */

.mentor-sales {
  background: #eef6fa;
}

.mentor-top {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 35px;
  padding: 50px 0;
}

.mentor-top h2 {
  font-size: 34px;
  text-align: center;
}

/* YouTube video replacement for old image.video */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.price-card {
  background: #fff;
  padding: 30px 20px;
}

.price-card h2 {
  font-size: 30px;
  text-align: left;
}

.price-card h3 {
  font-size: 28px;
  border-top: 2px solid #ebb000;
  padding-top: 28px;
}

.price-card ul {
  padding-left: 20px;
}

.price-card .btn-yellow {
  border: 3px solid #000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
  padding: 20px 25px;
}

.mentor-types {
  background: #fff url("../img/HackingMoney_product-bg.jpg");
  background-size: cover;
  padding: 45px 0;
  border-top: 4px solid #ffc400;
  border-bottom: 4px solid #ffc400;
}

.mentor-types .ap h2 {
  color: #000;
  text-align: left;
}

.mentor-types .site-width {
  background: rgba(255, 255, 255, 0.85);
  padding: 25px 50px;
}

.mentor-types h2 {
  text-align: center;
  color: #10a51c;
  font-size: 28px;
}

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

/* =========================
   FAQ
========================= */

.faq {
  padding: 45px 0 70px;
}

.faq h2 {
  text-align: center;
  font-size: 28px;
}

.faq-item {
  border-bottom: 1px solid #dce5ea;
  padding: 8px 0;
}

.faq-item button {
  background: transparent;
  border: 0;
  font-weight: 700;
  font-size: 14px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 10px 0;
}

.faq-item div {
  display: none;
}

.faq-item.open div {
  display: block;
}

/* =========================
   Stock Trading Course Page
========================= */

.stock-page {
  padding: 75px 0 90px;
  max-width: 1200px;
}

.stock-page h2 {
  text-align: center;
  font-size: 32px;
  line-height: 1.1;
}

.float-section {
  clear: both;
  margin: 35px 0;
  min-height: 210px;
}

.float-section p {
  font-size: 15px;
}

.float-section img {
  width: 280px;
  margin: 0 0 20px 24px;
}

.float-section img.left {
  float: left;
  margin: 0 30px 20px 0;
}

.float-section img.right {
  float: right;
}

/* =========================
   Category / Blog Layout
========================= */

.category-layout {
  align-items: flex-start;
}

.category-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--line);
}

.cat-card.large {
  grid-column: 1 / 3;
}

.cat-card div {
  padding: 22px;
}

.cat-card h2 {
  font-size: 25px;
  line-height: 1.1;
  margin: 0;
}

.cat-card.large h2 {
  font-size: 30px;
}

.cat-card p {
  font-size: 14px;
  color: #596875;
}

.cat-card time {
  font-size: 12px;
  color: #a0aab2;
}

.cat-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.cat-card:not(.large) img {
  height: 230px;
}

.readmore {
  font-weight: 700;
}

/* =========================
   Simple Page
========================= */

.simple-page {
  background: #fff;
  border: 1px solid var(--line);
  padding: 45px;
  margin-top: 50px;
  margin-bottom: 80px;
}

/* =========================
   Product Page
========================= */

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.product-row article {
  border: 1px solid #e2e9ee;
  padding: 22px;
  text-align: center;
}

.product-row img {
  height: 220px;
  object-fit: contain;
  margin: 0 auto 14px;
}

/* =========================
   Responsive Styles
========================= */

@media (max-width: 900px) {
  .primary-nav {
    display: none;
    position: absolute;
    top: 143px;
    left: 0;
    right: 0;
    background: #303a88;
    padding: 10px 20px;
    z-index: 9;
  }

  .primary-nav.open {
    display: block;
  }

  .primary-nav ul {
    display: block;
  }

  .primary-nav li {
    padding: 8px 0;
  }

  .menu-toggle {
    display: block;
  }

  .home-grid,
  .book-hero-grid,
  .book-intro,
  .book-feature,
  .mentor-top,
  .two-col,
  .product-row {
    grid-template-columns: 1fr;
  }

  .page-layout {
    display: block;
  }

  .sidebar {
    width: auto;
    margin-top: 25px;
  }

  .post-card {
    max-width: none;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .home-copy h1 {
    font-size: 36px;
  }

  .btn-blue {
    font-size: 20px;
    padding: 14px 30px;
  }

  .mark-photo {
    width: 100%;
    height: auto;
  }

  .book-intro {
    padding: 25px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .cat-card.large {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .adminbar {
    font-size: 10px;
  }

  .page-hero {
    min-height: 165px;
  }

  .page-hero h1 {
    font-size: 22px;
  }

  .post-card {
    padding: 20px;
  }

  .post-card h2 {
    font-size: 25px;
  }

  .post-card h3 {
    font-size: 21px;
  }

  .float-section img,
  .float-section img.left,
  .float-section img.right {
    float: none;
    width: 100%;
    margin: 0 0 16px;
  }

  .two-list {
    grid-template-columns: 1fr;
  }

  .book-hero h1 {
    font-size: 38px;
  }
}

.intro-note {
      font-weight: 700;
      font-style: italic;
    }

     .quote-wrap {
      margin: 0 0 28px;
      color: #9aa5b5;
      font-style: italic;
    }

    .quote-mark {
      font-size: 44px;
      line-height: 1;
      color: #c4ccd6;
      font-weight: 700;
      margin-right: 18px;
      vertical-align: top;
    }

    .quote-text {
      display: inline-block;
      padding-top: 12px;
    }

    .section {
      margin-top: 52px;
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 10px;
    }

    .plus {
      color: green;
      font-size: 34px;
      line-height: 1;
      font-weight: 700;
    }

    .section-content {
      margin-left: 42px;
      max-width: 690px;
    }

    .small-quote {
      margin: 22px 0 28px;
      color: #9aa5b5;
      font-style: italic;
    }

    .small-quote .quote-mark {
      font-size: 34px;
      margin-right: 18px;
    }

    .small-quote .quote-text {
      max-width: 620px;
      padding-top: 4px;
    }
    .cta-box {
      background-color: #fff9c9;
      text-align: center;
      max-width: 520px;
      margin: 0 auto;
      padding: 18px 28px;
      font-weight: 700;
      line-height: 1.5;
    }

     .benefit {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin: 46px 0 34px;
    }

    .number {
      color: #ffc107;
      font-size: 40px;
      line-height: 1;
      font-weight: 700;
      min-width: 22px;
    }

    .content h3 {
      font-size: 16px;
      letter-spacing: 1px;
      margin: 0 0 14px;
      font-weight: 700;
    }

    .content p {
      margin: 0;
      max-width: 690px;
    }
  .investment {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin: 0 0 42px;
    }