:root {
  --paper: #f6efe5;
  --paper-strong: #fffaf3;
  --sand: #ead9c1;
  --mist: #e8e0d2;
  --ink: #122725;
  --ink-soft: #415551;
  --forest: #173a35;
  --forest-soft: #234b45;
  --copper: #b96f3f;
  --copper-deep: #90512b;
  --gold: #d7b67b;
  --line: rgba(18, 39, 37, 0.1);
  --line-strong: rgba(18, 39, 37, 0.18);
  --shadow: 0 26px 70px rgba(18, 39, 37, 0.12);
  --shadow-strong: 0 38px 90px rgba(18, 39, 37, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215, 182, 123, 0.28), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(35, 75, 69, 0.12), transparent 18%),
    linear-gradient(180deg, #f9f4eb 0%, #efe4d3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 250, 243, 0.46), transparent 16%),
    radial-gradient(circle at 85% 58%, rgba(255, 250, 243, 0.34), transparent 18%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  position: relative;
  overflow-x: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.45;
}

.site-shell::before {
  top: 4rem;
  left: -8rem;
  background: rgba(185, 111, 63, 0.16);
}

.site-shell::after {
  right: -6rem;
  bottom: 12rem;
  background: rgba(35, 75, 69, 0.14);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(18, 39, 37, 0.06);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 18px 32px rgba(18, 39, 37, 0.06);
  color: var(--forest);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  box-shadow: 0 0 0 5px rgba(185, 111, 63, 0.09);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(249, 244, 235, 0.82);
  border-bottom: 1px solid rgba(18, 39, 37, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 111, 63, 0.28), transparent);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand__name {
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(1.9rem, 2vw, 2.35rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.brand__tag {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav__link {
  padding: 0.86rem 1rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.88);
  box-shadow: 0 12px 26px rgba(18, 39, 37, 0.08);
  transform: translateY(-1px);
}

.site-nav__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.28rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-nav__cta,
.button--primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  color: #fff8ef;
  box-shadow: 0 18px 34px rgba(144, 81, 43, 0.22);
}

.site-nav__cta:hover,
.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(144, 81, 43, 0.28);
}

.button--ghost {
  border: 1px solid rgba(18, 39, 37, 0.1);
  background: rgba(255, 250, 243, 0.82);
  color: var(--ink);
  box-shadow: 0 14px 26px rgba(18, 39, 37, 0.05);
}

.button--ghost:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 14px;
  padding: 0.72rem 0.92rem;
  background: rgba(255, 250, 243, 0.84);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(18, 39, 37, 0.08);
}

.hero {
  padding: 5.5rem 0 3rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.86fr);
  gap: 2rem;
  align-items: stretch;
}

.hero__content,
.hero__panel,
.page-hero__panel,
.card,
.highlight-panel,
.table-card,
.post-card,
.faq-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(18, 39, 37, 0.08);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: clamp(1.65rem, 4vw, 3.3rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(248, 241, 231, 0.92)),
    var(--paper-strong);
}

.hero__content::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 182, 123, 0.35), transparent 72%);
  pointer-events: none;
}

.hero__content::after {
  content: "01";
  position: absolute;
  right: 1.4rem;
  bottom: 1rem;
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(4rem, 7vw, 6rem);
  color: rgba(18, 39, 37, 0.08);
  line-height: 1;
  pointer-events: none;
}

.hero__panel {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1.05rem;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(23, 58, 53, 0.98), rgba(15, 33, 31, 0.98)),
    var(--forest);
  color: rgba(255, 250, 243, 0.94);
  min-height: 100%;
}

.hero__panel::before {
  content: "Οδηγός";
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: rgba(255, 250, 243, 0.06);
  pointer-events: none;
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 48%, rgba(255, 255, 255, 0.03) 48% 49%, transparent 49% 100%),
    radial-gradient(circle at top right, rgba(215, 182, 123, 0.16), transparent 24%);
  pointer-events: none;
}

.hero h1,
.page-hero h1,
.section-heading,
.rich-copy h2 {
  margin: 0.95rem 0 1rem;
  font-family: "Noto Serif Display", Georgia, serif;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 6.8vw, 6rem);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.section-heading {
  max-width: 13ch;
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
}

.hero__lead,
.page-hero__lead,
.section-intro,
.footer-note,
.table-note,
.stack p,
.rich-copy p,
.card p,
.post-card p,
.faq-card p {
  color: var(--ink-soft);
  line-height: 1.84;
}

.hero__lead,
.page-hero__lead {
  max-width: 60ch;
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.stat-card {
  position: relative;
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.74);
  border: 1px solid rgba(18, 39, 37, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.hero__panel-label {
  position: relative;
  z-index: 1;
  color: rgba(255, 250, 243, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__checklist,
.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__checklist {
  position: relative;
  z-index: 1;
  display: grid;
}

.hero__checklist li {
  position: relative;
  padding: 1rem 0 1rem 1.7rem;
  border-top: 1px solid rgba(255, 250, 243, 0.12);
  font-size: 1rem;
  line-height: 1.65;
}

.hero__checklist li:first-child {
  border-top: 0;
}

.hero__checklist li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  box-shadow: 0 0 0 6px rgba(215, 182, 123, 0.08);
}

.bullet-list li {
  position: relative;
  padding-left: 1.45rem;
  line-height: 1.8;
}

.bullet-list li + li {
  margin-top: 0.8rem;
}

.feature-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero__panel-note {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 250, 243, 0.12);
  background: rgba(255, 250, 243, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero__panel-note p {
  margin: 0;
  color: rgba(255, 250, 243, 0.8);
}

.hero__panel .meta-badge {
  background: rgba(255, 250, 243, 0.12);
  color: #fff4dc;
}

.feature-strip__item {
  min-height: 100%;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.08);
  border: 1px solid rgba(255, 250, 243, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-strip__item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff8ef;
}

.feature-strip__item span {
  color: rgba(255, 250, 243, 0.78);
  line-height: 1.65;
}

main > section {
  position: relative;
  padding: 3.3rem 0;
}

main > section:not(.hero):not(.page-hero):nth-of-type(odd) {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.22), transparent);
}

main > section:not(.hero):not(.page-hero):nth-of-type(even) {
  background: linear-gradient(180deg, rgba(18, 39, 37, 0.03), transparent);
}

.cards-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.cards-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.highlight-panel,
.table-card,
.post-card,
.faq-card,
.contact-card {
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(248, 241, 231, 0.88)),
    var(--paper-strong);
}

.card::before,
.highlight-panel::before,
.table-card::before,
.post-card::before,
.faq-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--copper), var(--gold), transparent 82%);
}

.card::after,
.highlight-panel::after,
.post-card::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 182, 123, 0.18), transparent 68%);
  pointer-events: none;
}

.cards-grid--four .card:nth-child(2),
.cards-grid--four .card:nth-child(4) {
  transform: translateY(1.35rem);
}

.cards-grid:not(.cards-grid--four) .card:nth-child(2) {
  transform: translateY(1rem);
}

.card h3,
.post-card h3,
.faq-card h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.18;
}

.card__badge,
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.76rem;
  border-radius: 999px;
  background: rgba(185, 111, 63, 0.08);
  color: var(--copper-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stack {
  display: grid;
  gap: 1rem;
}

.page-hero {
  padding: 4.8rem 0 1.2rem;
}

.page-hero__panel {
  padding: clamp(1.7rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(246, 239, 227, 0.9)),
    var(--paper-strong);
}

.page-hero__panel::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 182, 123, 0.18), transparent 70%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.breadcrumbs span {
  opacity: 0.64;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 1.25rem;
}

.split-grid > .highlight-panel {
  margin-top: 4.2rem;
}

.highlight-panel {
  min-height: 100%;
}

.highlight-panel p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.table-card {
  overflow-x: auto;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(244, 236, 224, 0.92)),
    var(--paper-strong);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid rgba(18, 39, 37, 0.08);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--copper-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 39, 37, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(247, 240, 230, 0.9)),
    var(--paper-strong);
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--copper-deep);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__body {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
  line-height: 1.84;
}

.post-card {
  display: flex;
  flex-direction: column;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.rich-copy {
  display: grid;
  gap: 1.25rem;
}

.rich-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 250, 243, 0.12);
  background:
    linear-gradient(135deg, rgba(23, 58, 53, 0.98), rgba(28, 67, 61, 0.98)),
    var(--forest);
  color: rgba(255, 250, 243, 0.95);
  box-shadow: var(--shadow-strong);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -2rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 182, 123, 0.18), transparent 66%);
}

.cta-band p {
  max-width: 64ch;
  color: rgba(255, 250, 243, 0.78);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
}

.contact-list a,
.contact-list strong {
  display: block;
}

.site-footer {
  padding: 3rem 0 3.4rem;
}

.site-footer__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.76fr);
  gap: 1.5rem;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 250, 243, 0.12);
  background:
    linear-gradient(135deg, rgba(23, 58, 53, 0.99), rgba(15, 33, 31, 0.98)),
    var(--forest);
  color: rgba(255, 250, 243, 0.94);
  box-shadow: var(--shadow-strong);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.site-footer__links a {
  color: rgba(255, 250, 243, 0.82);
}

.site-footer__links a:hover {
  color: #fff;
}

.footer-note {
  color: rgba(255, 250, 243, 0.7);
}

.muted {
  color: var(--ink-soft);
}

.align-start {
  align-items: start;
}

.spacer-top {
  margin-top: 1.2rem;
}

.reveal {
  animation: riseIn 0.72s ease both;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero__grid,
  .split-grid,
  .site-footer__panel {
    grid-template-columns: 1fr;
  }

  .split-grid > .highlight-panel {
    margin-top: 0;
  }

  .cards-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .site-nav__menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.82rem;
    border-radius: 20px;
    border: 1px solid rgba(18, 39, 37, 0.08);
    background: rgba(255, 250, 243, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav__menu[data-open="true"] {
    display: flex;
  }

  .site-nav__link,
  .site-nav__cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero__stats,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .cards-grid--four .card:nth-child(2),
  .cards-grid--four .card:nth-child(4),
  .cards-grid:not(.cards-grid--four) .card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .cards-grid,
  .cards-grid--four,
  .post-grid,
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .site-header__bar {
    min-height: 84px;
  }

  .hero__content,
  .hero__panel,
  .page-hero__panel,
  .card,
  .highlight-panel,
  .table-card,
  .post-card,
  .faq-card,
  .contact-card,
  .site-footer__panel,
  .cta-band {
    padding: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4.35rem);
  }

  .page-hero h1,
  .section-heading {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }
}

/* Elementor homepage: structured guide experience */
body.home.wp-theme-blocksy .site-main {
  padding-top: 0;
}

body.home.wp-theme-blocksy .ct-container-full[data-content="normal"] {
  width: 100%;
}

body.home .entry-content,
body.home .elementor,
body.home .elementor-element,
body.home .elementor-widget,
body.home .elementor-widget-container,
body.home .e-con {
  min-width: 0;
  max-width: 100%;
}

body.home .elementor-widget-heading h1,
body.home .elementor-widget-heading h2,
body.home .elementor-widget-heading h3,
body.home .elementor-widget-text-editor p {
  margin-block-start: 0;
}

.sl-home-section {
  width: min(calc(100% - 2rem), 1220px);
  margin: 1.2rem auto 0;
}

.sl-kicker,
.sl-section-kicker,
.sl-dark-kicker,
.sl-cta-kicker,
.sl-panel-kicker {
  width: fit-content;
}

.sl-kicker p,
.sl-section-kicker p,
.sl-dark-kicker p,
.sl-cta-kicker p,
.sl-panel-kicker p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sl-kicker,
.sl-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(18, 39, 37, 0.08);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 250, 243, 0.78);
}

.sl-kicker::before,
.sl-section-kicker::before {
  content: "";
  flex: 0 0 auto;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 5px rgba(185, 111, 63, 0.1);
}

.sl-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.23fr) minmax(310px, 0.77fr);
  align-items: stretch;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(18, 39, 37, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 6%, rgba(215, 182, 123, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.98), rgba(239, 230, 216, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sl-hero-main {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: clamp(1.25rem, 4vw, 3.65rem);
}

.sl-hero-title h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(3.45rem, 6.5vw, 6.45rem);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 0.91;
  color: #102321;
  text-wrap: balance;
}

.sl-hero-lead p {
  max-width: 66ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.75;
}

.sl-button-row {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.sl-button-primary .elementor-button,
.sl-button-secondary .elementor-button,
.sl-button-outline .elementor-button,
.sl-button-light .elementor-button,
.sl-button-ghost-light .elementor-button,
.sl-panel-link .elementor-button {
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sl-button-primary .elementor-button {
  border: 1px solid transparent;
  color: #fff8ef;
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  box-shadow: 0 18px 32px rgba(144, 81, 43, 0.23);
}

.sl-button-secondary .elementor-button,
.sl-button-outline .elementor-button {
  border: 1px solid rgba(18, 39, 37, 0.12);
  color: var(--ink);
  background: rgba(255, 250, 243, 0.76);
}

.sl-button-primary .elementor-button:hover,
.sl-button-secondary .elementor-button:hover,
.sl-button-outline .elementor-button:hover,
.sl-button-light .elementor-button:hover,
.sl-button-ghost-light .elementor-button:hover,
.sl-panel-link .elementor-button:hover {
  transform: translateY(-2px);
}

.sl-trust-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  padding-top: 0.4rem;
}

.sl-trust-item {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(18, 39, 37, 0.07);
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.64);
}

.sl-trust-item p {
  display: grid;
  gap: 0.18rem;
  margin: 0;
}

.sl-trust-item strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.sl-trust-item span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.sl-hero-panel {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 28px;
  color: #fff8ef;
  background:
    radial-gradient(circle at 100% 0, rgba(215, 182, 123, 0.18), transparent 35%),
    linear-gradient(155deg, #1b443e, #102a27);
  box-shadow: 0 26px 60px rgba(18, 39, 37, 0.2);
}

.sl-panel-kicker,
.sl-dark-kicker,
.sl-cta-kicker {
  color: var(--gold);
}

.sl-hero-panel h2 {
  max-width: 12ch;
  margin: 0;
  color: #fff8ef;
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(2rem, 3.1vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.sl-checklist ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sl-checklist li {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(255, 250, 243, 0.12);
  color: rgba(255, 250, 243, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.sl-checklist li:last-child {
  border-bottom: 0;
}

.sl-checklist li span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.sl-panel-link .elementor-button {
  width: 100%;
  border: 1px solid rgba(255, 250, 243, 0.16);
  color: #fff8ef;
  background: rgba(255, 250, 243, 0.1);
}

.sl-path-section,
.sl-topic-section,
.sl-faq-section,
.sl-blog-section {
  padding: clamp(1.4rem, 4vw, 3.2rem);
  border: 1px solid rgba(18, 39, 37, 0.08);
  border-radius: 32px;
  background: rgba(255, 250, 243, 0.78);
}

.sl-section-heading {
  display: flex !important;
  flex-direction: column;
  gap: 0.8rem;
}

.sl-section-title h2,
.sl-method-title h2,
.sl-cta-title h2 {
  margin: 0;
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(2.55rem, 5vw, 4.7rem);
  letter-spacing: -0.052em;
  line-height: 0.94;
  color: var(--ink);
  text-wrap: balance;
}

.sl-section-intro p {
  max-width: 65ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.sl-path-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.sl-path-card,
.sl-topic-card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.3rem;
  border: 1px solid rgba(18, 39, 37, 0.08);
  border-radius: 22px;
  background: linear-gradient(160deg, #fffaf3, #f1e7d8);
  box-shadow: 0 18px 36px rgba(18, 39, 37, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sl-path-card:hover,
.sl-topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 52px rgba(18, 39, 37, 0.11);
}

.sl-path-card:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0, rgba(215, 182, 123, 0.2), transparent 36%),
    linear-gradient(160deg, #f0e4d3, #fffaf3);
}

.sl-path-card h3,
.sl-topic-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  line-height: 1.08;
}

.sl-card-number p,
.sl-card-label p,
.sl-topic-tag p {
  margin: 0;
}

.sl-card-number {
  color: var(--copper-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.sl-card-label {
  width: fit-content;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(23, 58, 53, 0.08);
  font-size: 0.74rem;
  font-weight: 800;
}

.sl-card-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.62;
}

.sl-text-link {
  margin-top: auto;
}

.sl-text-link .elementor-button {
  padding: 0;
  color: var(--copper-deep);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(185, 111, 63, 0.35);
  text-underline-offset: 0.3rem;
}

.sl-topic-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(35, 75, 69, 0.11), transparent 24%),
    rgba(246, 238, 226, 0.9);
}

.sl-topic-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.sl-topic-card {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-content: start;
  column-gap: 1rem;
}

.sl-topic-card .sl-card-number {
  grid-row: 1 / span 4;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #fff8ef;
  background: var(--forest);
}

.sl-topic-tag {
  width: fit-content;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  color: var(--copper-deep);
  background: rgba(185, 111, 63, 0.1);
  font-size: 0.72rem;
  font-weight: 850;
}

.sl-topic-card .sl-text-link {
  grid-column: 2;
}

.sl-method-section {
  display: grid !important;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border-radius: 32px;
  color: #fff8ef;
  background:
    radial-gradient(circle at 92% 5%, rgba(215, 182, 123, 0.15), transparent 28%),
    linear-gradient(145deg, #173a35, #0f2724);
  box-shadow: var(--shadow-strong);
}

.sl-method-copy {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.sl-method-title h2 {
  color: #fff8ef;
  font-size: clamp(2.5rem, 4.5vw, 4.35rem);
}

.sl-method-lead p {
  margin: 0;
  color: rgba(255, 250, 243, 0.72);
  line-height: 1.72;
}

.sl-button-light .elementor-button {
  color: var(--ink);
  background: #fff8ef;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.sl-criteria-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.sl-criterion {
  display: flex !important;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 250, 243, 0.12);
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.075);
}

.sl-criterion-number p,
.sl-criterion p {
  margin: 0;
}

.sl-criterion-number {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.sl-criterion h3 {
  margin: 0;
  color: #fff8ef;
  font-size: 1.12rem;
}

.sl-criterion p {
  color: rgba(255, 250, 243, 0.7);
  font-size: 0.86rem;
  line-height: 1.58;
}

.sl-faq-section {
  display: grid !important;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.sl-faq-intro {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  position: sticky;
  top: 8rem;
}

.sl-faq-intro .sl-section-title h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.sl-faq-list .elementor-shortcode {
  display: grid;
  gap: 0.75rem;
}

.sl-faq-list .faq-item {
  margin: 0;
  border: 1px solid rgba(18, 39, 37, 0.09);
  border-radius: 18px;
  background: #fffaf3;
  box-shadow: 0 12px 28px rgba(18, 39, 37, 0.055);
}

.sl-faq-list .faq-item summary {
  padding: 1.1rem 3rem 1.1rem 1.1rem;
  font-size: 1rem;
}

.sl-faq-list .faq-item__body {
  padding: 0 1.1rem 1.1rem;
}

.sl-blog-heading {
  display: flex !important;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.sl-post-grid .elementor-shortcode {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.sl-post-grid .post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.2rem;
  border: 1px solid rgba(18, 39, 37, 0.08);
  border-radius: 20px;
  background: linear-gradient(160deg, #fffaf3, #f1e7d8);
}

.sl-post-grid .post-card h3 {
  margin: 0.9rem 0 0.65rem;
  font-size: 1.24rem;
  line-height: 1.15;
}

.sl-post-grid .post-card > p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.sl-post-grid .post-card .button {
  width: 100%;
  margin-top: auto;
}

.sl-cta-section {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: clamp(1.7rem, 5vw, 4rem);
  border-radius: 32px;
  color: #fff8ef;
  background:
    radial-gradient(circle at 88% 12%, rgba(215, 182, 123, 0.2), transparent 28%),
    linear-gradient(135deg, #a85f33, #74401f);
  box-shadow: 0 28px 64px rgba(116, 64, 31, 0.22);
}

.sl-cta-title h2 {
  max-width: 16ch;
  color: #fff8ef;
}

.sl-cta-lead p {
  max-width: 60ch;
  margin: 0;
  color: rgba(255, 250, 243, 0.82);
  font-size: 1rem;
  line-height: 1.72;
}

.sl-button-ghost-light .elementor-button {
  border: 1px solid rgba(255, 250, 243, 0.25);
  color: #fff8ef;
  background: rgba(255, 250, 243, 0.08);
}

@media (max-width: 980px) {
  .sl-hero-grid,
  .sl-method-section,
  .sl-faq-section {
    grid-template-columns: 1fr;
  }

  .sl-hero-title h1 {
    max-width: 14ch;
  }

  .sl-faq-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  body.wp-theme-blocksy .ct-header [data-row="middle"] .ct-container {
    min-height: 72px;
  }

  body.wp-theme-blocksy .site-title a {
    display: block;
    max-width: min(72vw, 16rem);
    overflow: hidden;
    font-size: 1.42rem;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sl-home-section {
    width: min(calc(100% - 1rem), 1220px);
    margin-top: 0.65rem;
  }

  .sl-hero-grid {
    padding: 0.55rem;
    border-radius: 24px;
  }

  .sl-hero-main,
  .sl-hero-panel,
  .sl-path-section,
  .sl-topic-section,
  .sl-faq-section,
  .sl-blog-section,
  .sl-method-section,
  .sl-cta-section {
    padding: 1.15rem;
    border-radius: 20px;
  }

  .sl-hero-main {
    gap: 1rem;
  }

  .sl-hero-title h1 {
    max-width: none;
    font-size: clamp(2.65rem, 11.7vw, 4rem);
    letter-spacing: -0.052em;
    line-height: 0.94;
  }

  .sl-hero-lead p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .sl-button-row,
  .sl-blog-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .sl-button-row > .elementor-element,
  .sl-button-row .elementor-button,
  .sl-blog-heading > .sl-button-outline,
  .sl-blog-heading .elementor-button {
    width: 100%;
  }

  .sl-trust-row,
  .sl-path-grid,
  .sl-topic-grid,
  .sl-criteria-grid,
  .sl-post-grid .elementor-shortcode {
    grid-template-columns: 1fr;
  }

  .sl-trust-row {
    gap: 0.45rem;
  }

  .sl-trust-item {
    padding: 0.7rem 0.8rem;
  }

  .sl-section-title h2,
  .sl-method-title h2,
  .sl-cta-title h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 0.96;
  }

  .sl-path-grid,
  .sl-topic-grid,
  .sl-post-grid .elementor-shortcode {
    margin-top: 1rem;
  }

  .sl-path-card,
  .sl-topic-card {
    padding: 1.05rem;
    border-radius: 18px;
  }

  .sl-topic-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .sl-topic-card .sl-card-number {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.site-main {
  min-height: 50vh;
}

.menu,
.sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-panel {
  padding: clamp(1.4rem, 4vw, 2rem);
}

.entry-content {
  display: grid;
  gap: 1.25rem;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
  margin: 0;
  font-family: "Noto Serif Display", Georgia, serif;
  letter-spacing: -0.02em;
}

.entry-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.entry-content h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.entry-content p,
.entry-content li {
  color: var(--ink-soft);
  line-height: 1.84;
}

.entry-content ul,
.entry-content ol {
  margin: 0;
  padding-left: 1.3rem;
}

.entry-content a {
  color: var(--copper-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.entry-content blockquote {
  margin: 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--copper);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.75);
}

.pagination-wrap {
  margin-top: 2rem;
}

.pagination-wrap .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.pagination-wrap .page-numbers li {
  margin: 0;
}

.pagination-wrap .page-numbers a,
.pagination-wrap .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid rgba(18, 39, 37, 0.08);
  color: var(--ink);
}

.pagination-wrap .page-numbers .current {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  border-color: transparent;
  color: #fff8ef;
}

.home-stage {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.home-editorial-hero,
.home-radar-shell,
.home-proof-shell,
.home-process-shell,
.home-cta-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(18, 39, 37, 0.08);
  box-shadow: var(--shadow);
}

.home-editorial-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  gap: 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(215, 182, 123, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.98), rgba(243, 233, 219, 0.9));
}

.home-editorial-hero::before {
  content: "";
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(35, 75, 69, 0.14), transparent 68%);
  pointer-events: none;
}

.home-hero-copy,
.home-hero-aside,
.home-proof-copy,
.home-proof-rail {
  position: relative;
  z-index: 1;
}

.home-hero-copy,
.home-hero-aside,
.home-proof-rail,
.home-radar-shell,
.home-process-shell {
  display: grid;
  gap: 1rem;
}

.home-editorial-kicker p,
.home-panel-kicker p,
.home-section-kicker p {
  margin: 0;
}

.home-editorial-kicker,
.home-panel-kicker,
.home-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.58rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 39, 37, 0.08);
  background: rgba(255, 250, 243, 0.86);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-editorial-kicker::before,
.home-panel-kicker::before,
.home-section-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  box-shadow: 0 0 0 5px rgba(185, 111, 63, 0.1);
}

.home-display-title h1,
.home-section-title h2,
.home-proof-title h2,
.home-cta-title h2 {
  margin: 0;
  font-family: "Noto Serif Display", Georgia, serif;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.home-display-title h1 {
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  max-width: 11ch;
}

.home-display-lead p,
.home-section-lead p,
.home-proof-copy p,
.home-proof-note p,
.home-cta-lead p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.82;
  font-size: 1.02rem;
}

.home-action-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.home-btn-primary .elementor-button,
.home-btn-secondary .elementor-button,
.home-cta-primary .elementor-button,
.home-cta-secondary .elementor-button {
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(18, 39, 37, 0.1);
}

.home-btn-primary .elementor-button,
.home-cta-primary .elementor-button {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  color: #fff8ef;
}

.home-btn-secondary .elementor-button,
.home-cta-secondary .elementor-button {
  background: rgba(255, 250, 243, 0.86);
  color: var(--ink);
  border: 1px solid rgba(18, 39, 37, 0.08);
}

.home-stat-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-stat-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 39, 37, 0.08);
  background: rgba(255, 250, 243, 0.82);
}

.home-stat-card h3 {
  margin: 0 0 0.28rem;
  font-size: 2rem;
  line-height: 1;
}

.home-stat-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.92rem;
}

.home-hero-aside {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(23, 58, 53, 0.98), rgba(18, 39, 37, 0.98)),
    var(--forest);
  color: rgba(255, 250, 243, 0.96);
  box-shadow: var(--shadow-strong);
}

.home-panel-kicker {
  background: rgba(255, 250, 243, 0.12);
  border-color: rgba(255, 250, 243, 0.14);
  color: #fff7ee;
}

.home-panel-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.02;
}

.home-panel-copy p,
.home-panel-note p {
  margin: 0;
  color: rgba(255, 250, 243, 0.78);
  line-height: 1.78;
}

.home-panel-list p {
  margin: 0;
}

.home-panel-list ul,
.home-proof-rich ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-panel-list li,
.home-proof-rich li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 250, 243, 0.84);
  line-height: 1.72;
}

.home-panel-list li + li,
.home-proof-rich li + li {
  margin-top: 0.55rem;
}

.home-panel-list li::before,
.home-proof-rich li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
}

.home-panel-note {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 250, 243, 0.12);
  background: rgba(255, 250, 243, 0.08);
}

.home-signal-strip {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-signal-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 39, 37, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(246, 237, 225, 0.9));
  box-shadow: var(--shadow);
}

.home-signal-card::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: -1.75rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(185, 111, 63, 0.14), transparent 68%);
}

.home-signal-card h3,
.home-radar-card h3,
.home-process-card h3,
.home-proof-card h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.08;
}

.home-signal-card p,
.home-radar-card p,
.home-process-card p,
.home-proof-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.home-radar-shell {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(241, 232, 219, 0.9));
}

.home-radar-grid,
.home-process-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-radar-card,
.home-process-card,
.home-proof-card {
  min-height: 100%;
  padding: 1.25rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 39, 37, 0.08);
  background: rgba(255, 250, 243, 0.8);
  box-shadow: 0 20px 35px rgba(18, 39, 37, 0.08);
}

.home-card-index p,
.home-process-index p {
  margin: 0 0 0.55rem;
  color: var(--copper-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-proof-shell {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.15rem;
  background:
    radial-gradient(circle at 16% 14%, rgba(215, 182, 123, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.98), rgba(240, 230, 215, 0.92));
}

.home-proof-rich p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.82;
}

.home-proof-rail {
  display: grid;
  gap: 1rem;
}

.home-proof-card--dark {
  background:
    linear-gradient(160deg, rgba(23, 58, 53, 0.98), rgba(18, 39, 37, 0.98)),
    var(--forest);
  color: rgba(255, 250, 243, 0.94);
  box-shadow: var(--shadow-strong);
}

.home-proof-card--dark h3,
.home-proof-card--dark p,
.home-proof-card--dark li {
  color: inherit;
}

.home-proof-card--dark .home-panel-kicker {
  background: rgba(255, 250, 243, 0.12);
  color: #fff7ee;
}

.home-proof-note {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(18, 39, 37, 0.16);
  background: rgba(255, 250, 243, 0.7);
}

.home-process-shell {
  background:
    linear-gradient(180deg, rgba(244, 235, 223, 0.9), rgba(255, 250, 243, 0.98));
}

.home-cta-shell {
  background:
    linear-gradient(135deg, rgba(23, 58, 53, 0.98), rgba(16, 35, 32, 0.98)),
    var(--forest);
  color: rgba(255, 250, 243, 0.95);
  box-shadow: var(--shadow-strong);
}

.home-cta-shell::after {
  content: "";
  position: absolute;
  inset: -2rem -3rem auto auto;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 182, 123, 0.18), transparent 68%);
  pointer-events: none;
}

.home-cta-shell .home-section-kicker,
.home-cta-shell .home-cta-lead p {
  color: rgba(255, 250, 243, 0.8);
}

.home-cta-shell .home-section-kicker {
  background: rgba(255, 250, 243, 0.1);
  border-color: rgba(255, 250, 243, 0.14);
}

.home-cta-shell .home-cta-title h2 {
  color: #fff8ef;
}

@media (max-width: 1100px) {
  .home-editorial-hero,
  .home-proof-shell {
    grid-template-columns: 1fr;
  }

  .home-signal-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .home-stat-grid,
  .home-radar-grid,
  .home-process-grid {
    grid-template-columns: 1fr;
  }

  .home-display-title h1 {
    max-width: none;
    font-size: clamp(2.9rem, 12vw, 4.6rem);
  }
}

body.wp-theme-blocksy {
  --theme-palette-color-1: #b96f3f;
  --theme-palette-color-2: #8f532e;
  --theme-palette-color-3: #415551;
  --theme-palette-color-4: #122725;
  --theme-palette-color-5: #d7c7b1;
  --theme-palette-color-6: #efe5d7;
  --theme-palette-color-7: #f7f2ea;
  --theme-palette-color-8: #fffaf3;
  --theme-link-initial-color: var(--copper-deep);
  --theme-link-hover-color: var(--forest);
}

body.wp-theme-blocksy .ct-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(22px) saturate(1.12);
  background: rgba(249, 244, 235, 0.74);
  border-bottom: 1px solid rgba(18, 39, 37, 0.07);
}

body.wp-theme-blocksy .ct-header [data-row="middle"] {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(246, 239, 227, 0.82));
}

body.wp-theme-blocksy .ct-header [data-row="middle"] .ct-container,
body.wp-theme-blocksy .ct-footer [data-row="bottom"] .ct-container {
  width: min(calc(100% - 2rem), 1220px);
}

body.wp-theme-blocksy .ct-header [data-row="middle"] .ct-container {
  min-height: 92px;
}

body.wp-theme-blocksy .site-branding {
  position: relative;
  padding: 0.72rem 1.05rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 39, 37, 0.08);
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 18px 34px rgba(18, 39, 37, 0.08);
}

body.wp-theme-blocksy .site-title {
  line-height: 0.95;
}

body.wp-theme-blocksy .site-title a {
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--ink);
}

body.wp-theme-blocksy .ct-header-search {
  display: none;
}

body.wp-theme-blocksy #header-menu-1 .menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 39, 37, 0.08);
  background: rgba(255, 250, 243, 0.8);
  box-shadow: 0 18px 38px rgba(18, 39, 37, 0.08);
}

body.wp-theme-blocksy #header-menu-1 .ct-menu-link {
  padding: 0.86rem 1.02rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

body.wp-theme-blocksy #header-menu-1 li > .ct-menu-link:hover,
body.wp-theme-blocksy #header-menu-1 .current-menu-item > .ct-menu-link,
body.wp-theme-blocksy #header-menu-1 .current_page_item > .ct-menu-link {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(185, 111, 63, 0.14), rgba(215, 182, 123, 0.18));
  box-shadow: 0 12px 26px rgba(18, 39, 37, 0.08);
  transform: translateY(-1px);
}

body.wp-theme-blocksy .ct-header-trigger {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 39, 37, 0.08);
  background: rgba(255, 250, 243, 0.84);
  color: var(--forest);
  box-shadow: 0 18px 32px rgba(18, 39, 37, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

body.wp-theme-blocksy .ct-header-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(18, 39, 37, 0.1);
}

body.wp-theme-blocksy .ct-panel {
  backdrop-filter: blur(18px) saturate(1.08);
}

body.wp-theme-blocksy .ct-panel-content-inner {
  padding: 1rem;
}

body.wp-theme-blocksy .mobile-menu {
  padding: 0.6rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(242, 234, 222, 0.94));
  box-shadow: var(--shadow);
}

body.wp-theme-blocksy .mobile-menu .ct-menu-link {
  padding: 0.96rem 1rem;
  border-radius: 18px;
  font-weight: 800;
  color: var(--ink-soft);
}

body.wp-theme-blocksy .mobile-menu .current-menu-item > .ct-menu-link,
body.wp-theme-blocksy .mobile-menu .current_page_item > .ct-menu-link {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(185, 111, 63, 0.14), rgba(215, 182, 123, 0.18));
}

body.wp-theme-blocksy #main-container {
  position: relative;
  overflow-x: clip;
}

body.wp-theme-blocksy #main-container::before,
body.wp-theme-blocksy #main-container::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.38;
}

body.wp-theme-blocksy #main-container::before {
  top: 4rem;
  left: -8rem;
  background: rgba(185, 111, 63, 0.14);
}

body.wp-theme-blocksy #main-container::after {
  right: -8rem;
  bottom: 8rem;
  background: rgba(35, 75, 69, 0.12);
}

body.wp-theme-blocksy .site-main {
  padding-top: 1.35rem;
}

body.wp-theme-blocksy .ct-container-full[data-content="normal"] {
  width: min(calc(100% - 2rem), 1240px);
  margin: 0 auto;
}

body.wp-theme-blocksy .entry-content.is-layout-constrained {
  max-width: none;
  gap: 0;
}

body.wp-theme-blocksy .entry-content.is-layout-constrained > section {
  margin-block-start: 0;
}

body.wp-theme-blocksy .entry-content.is-layout-constrained > section + section {
  margin-top: 1.2rem;
}

body.wp-theme-blocksy .card,
body.wp-theme-blocksy .highlight-panel,
body.wp-theme-blocksy .table-card,
body.wp-theme-blocksy .post-card,
body.wp-theme-blocksy .faq-item,
body.wp-theme-blocksy .contact-card,
body.wp-theme-blocksy .home-stat-card,
body.wp-theme-blocksy .home-signal-card,
body.wp-theme-blocksy .home-radar-card,
body.wp-theme-blocksy .home-process-card,
body.wp-theme-blocksy .home-proof-card,
body.wp-theme-blocksy .home-editorial-hero,
body.wp-theme-blocksy .home-radar-shell,
body.wp-theme-blocksy .home-proof-shell,
body.wp-theme-blocksy .home-process-shell,
body.wp-theme-blocksy .home-cta-shell {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.wp-theme-blocksy .card:hover,
body.wp-theme-blocksy .highlight-panel:hover,
body.wp-theme-blocksy .post-card:hover,
body.wp-theme-blocksy .faq-item:hover,
body.wp-theme-blocksy .contact-card:hover,
body.wp-theme-blocksy .home-stat-card:hover,
body.wp-theme-blocksy .home-signal-card:hover,
body.wp-theme-blocksy .home-radar-card:hover,
body.wp-theme-blocksy .home-process-card:hover,
body.wp-theme-blocksy .home-proof-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 111, 63, 0.18);
  box-shadow: 0 26px 60px rgba(18, 39, 37, 0.12);
}

body.wp-theme-blocksy .home-stage {
  margin-top: 1.45rem;
  margin-bottom: 1.45rem;
}

body.wp-theme-blocksy .home-editorial-hero,
body.wp-theme-blocksy .home-radar-shell,
body.wp-theme-blocksy .home-proof-shell,
body.wp-theme-blocksy .home-process-shell,
body.wp-theme-blocksy .home-cta-shell {
  border-color: rgba(18, 39, 37, 0.09);
  box-shadow: 0 32px 74px rgba(18, 39, 37, 0.13);
}

body.wp-theme-blocksy .home-display-title h1 {
  text-wrap: balance;
  line-height: 0.92;
}

body.wp-theme-blocksy .home-display-lead p {
  max-width: 54ch;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

body.wp-theme-blocksy .home-action-row .elementor-button {
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

body.wp-theme-blocksy .home-btn-secondary .elementor-button:hover,
body.wp-theme-blocksy .home-cta-secondary .elementor-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 250, 243, 0.96);
}

body.wp-theme-blocksy .seminaria-footer-band {
  padding: 2rem 0 0.6rem;
}

body.wp-theme-blocksy .seminaria-footer-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 1.2rem;
  align-items: stretch;
}

body.wp-theme-blocksy .seminaria-footer-band__copy,
body.wp-theme-blocksy .seminaria-footer-band__panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.45rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 250, 243, 0.12);
  box-shadow: var(--shadow-strong);
}

body.wp-theme-blocksy .seminaria-footer-band__copy {
  background: linear-gradient(135deg, rgba(23, 58, 53, 0.98), rgba(16, 35, 32, 0.98));
  color: rgba(255, 250, 243, 0.94);
}

body.wp-theme-blocksy .seminaria-footer-band__copy p {
  max-width: 58ch;
  color: rgba(255, 250, 243, 0.78);
}

body.wp-theme-blocksy .seminaria-footer-band__copy h2 {
  margin: 0.95rem 0 0.9rem;
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: #fff8ef;
}

body.wp-theme-blocksy .seminaria-footer-band__copy .section-kicker {
  background: rgba(255, 250, 243, 0.1);
  border-color: rgba(255, 250, 243, 0.12);
  color: #fff4dc;
}

body.wp-theme-blocksy .seminaria-footer-band__panel {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(242, 233, 220, 0.92));
}

body.wp-theme-blocksy .seminaria-footer-band__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.75rem;
}

body.wp-theme-blocksy .seminaria-footer-band__links .button {
  min-height: 50px;
  padding: 0.92rem 1.18rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 39, 37, 0.08);
  background: rgba(255, 250, 243, 0.9);
  color: var(--ink);
  box-shadow: 0 14px 26px rgba(18, 39, 37, 0.06);
}

body.wp-theme-blocksy .seminaria-footer-band__links .button:hover {
  transform: translateY(-2px);
  background: #fffaf3;
  color: var(--forest);
  box-shadow: 0 18px 30px rgba(18, 39, 37, 0.08);
}

body.wp-theme-blocksy .seminaria-footer-band__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  margin-top: 1.1rem;
  color: var(--ink-soft);
}

body.wp-theme-blocksy .seminaria-footer-band__meta a,
body.wp-theme-blocksy .seminaria-footer-band__meta span {
  color: inherit;
  font-weight: 700;
}

body.wp-theme-blocksy .ct-footer {
  margin-top: 0;
}

body.wp-theme-blocksy .ct-footer [data-row="bottom"] {
  padding-top: 0.6rem;
  padding-bottom: 2.4rem;
  background: linear-gradient(180deg, transparent, rgba(18, 39, 37, 0.05));
}

body.wp-theme-blocksy .ct-footer-copyright {
  padding: 1.2rem 1.45rem;
  border-radius: 24px;
  border: 1px solid rgba(18, 39, 37, 0.08);
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 18px 36px rgba(18, 39, 37, 0.08);
  color: var(--ink-soft);
}

body.wp-theme-blocksy .ct-footer-copyright a {
  color: var(--copper-deep);
}

body.wp-theme-blocksy .ct-footer-copyright a:hover {
  color: var(--forest);
}

body.wp-theme-blocksy.page-id-4 .hero-section,
body.wp-theme-blocksy.page-id-5 .hero-section,
body.wp-theme-blocksy.page-id-6 .hero-section,
body.wp-theme-blocksy.page-id-8 .hero-section,
body.wp-theme-blocksy.page-id-9 .hero-section,
body.wp-theme-blocksy.page-id-4 .entry-header,
body.wp-theme-blocksy.page-id-5 .entry-header,
body.wp-theme-blocksy.page-id-6 .entry-header,
body.wp-theme-blocksy.page-id-8 .entry-header,
body.wp-theme-blocksy.page-id-9 .entry-header {
  display: none;
}

@media (max-width: 1100px) {
  body.wp-theme-blocksy .seminaria-footer-band__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  body.wp-theme-blocksy .ct-header [data-row="middle"] .ct-container {
    min-height: 84px;
  }

  body.wp-theme-blocksy .home-editorial-hero,
  body.wp-theme-blocksy .home-radar-shell,
  body.wp-theme-blocksy .home-proof-shell,
  body.wp-theme-blocksy .home-process-shell,
  body.wp-theme-blocksy .home-cta-shell {
    padding: 1.2rem;
    border-radius: 26px;
  }
}

@media (max-width: 640px) {
  body.wp-theme-blocksy .ct-header [data-row="middle"] .ct-container,
  body.wp-theme-blocksy .ct-footer [data-row="bottom"] .ct-container,
  body.wp-theme-blocksy .ct-container-full[data-content="normal"] {
    width: min(calc(100% - 1.2rem), 1220px);
  }

  body.wp-theme-blocksy .site-branding {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.wp-theme-blocksy .site-title a {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  body.wp-theme-blocksy .ct-header-trigger {
    padding: 0.76rem 0.88rem;
  }

  body.wp-theme-blocksy .home-display-title h1 {
    font-size: clamp(2.7rem, 10.8vw, 4.05rem);
    letter-spacing: -0.055em;
  }

  body.wp-theme-blocksy .home-display-lead p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  body.wp-theme-blocksy .home-stat-card h3 {
    font-size: 1.72rem;
  }

  body.wp-theme-blocksy .seminaria-footer-band__copy,
  body.wp-theme-blocksy .seminaria-footer-band__panel,
  body.wp-theme-blocksy .ct-footer-copyright {
    padding: 1.2rem;
    border-radius: 22px;
  }
}

@media (max-width: 760px) {
  body.wp-theme-blocksy .site-title a {
    display: block;
    max-width: min(72vw, 16rem);
    overflow: hidden;
    font-size: 1.42rem;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

body.home .sl-home-section {
  width: min(calc(100% - 2rem), 1220px) !important;
  max-width: 1220px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (min-width: 981px) {
  body.home .sl-hero-title h1 {
    max-width: 13ch;
    font-size: clamp(3.3rem, 5vw, 5.4rem);
  }
}

@media (max-width: 760px) {
  body.home .sl-home-section {
    width: calc(100% - 1rem) !important;
  }
}

body.home .sl-panel-kicker,
body.home .sl-panel-kicker p,
body.home .sl-dark-kicker,
body.home .sl-dark-kicker p,
body.home .sl-cta-kicker,
body.home .sl-cta-kicker p {
  color: var(--gold) !important;
}

body.home .sl-hero-panel .sl-checklist li,
body.home .sl-method-section .sl-method-lead p,
body.home .sl-method-section .sl-criterion p,
body.home .sl-cta-section .sl-cta-lead p {
  color: rgba(255, 250, 243, 0.78) !important;
}

/* Modern product-style skin */
body.wp-theme-blocksy {
  --modern-bg: #f5f2ec;
  --modern-surface: #fffefa;
  --modern-ink: #16312e;
  --modern-muted: #66716e;
  --modern-line: rgba(22, 49, 46, 0.13);
  --modern-accent: #ff7a45;
  --modern-accent-soft: #ffe5d8;
  --modern-mint: #cde8df;
  color: var(--modern-ink);
  background:
    linear-gradient(rgba(17, 22, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 21, 0.035) 1px, transparent 1px),
    var(--modern-bg);
  background-size: 52px 52px;
}

body.wp-theme-blocksy::before,
body.wp-theme-blocksy::after {
  opacity: 0;
}

body.wp-theme-blocksy .ct-header {
  background: rgba(245, 242, 236, 0.88);
  border-bottom-color: var(--modern-line);
  backdrop-filter: blur(18px) saturate(1.25);
}

body.wp-theme-blocksy .ct-header [data-row="middle"] {
  background: transparent;
}

body.wp-theme-blocksy .site-branding {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.wp-theme-blocksy .site-title a {
  color: var(--modern-ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.7rem);
  font-weight: 850;
  letter-spacing: -0.055em;
}

body.wp-theme-blocksy #header-menu-1 .menu {
  gap: 0.15rem;
  padding: 0.3rem;
  border-color: var(--modern-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 35px rgba(17, 22, 21, 0.07);
}

body.wp-theme-blocksy #header-menu-1 .ct-menu-link {
  padding: 0.75rem 0.92rem;
  border-radius: 12px;
  color: var(--modern-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

body.wp-theme-blocksy #header-menu-1 li > .ct-menu-link:hover,
body.wp-theme-blocksy #header-menu-1 .current-menu-item > .ct-menu-link,
body.wp-theme-blocksy #header-menu-1 .current_page_item > .ct-menu-link {
  color: var(--modern-ink);
  background: var(--modern-accent);
  box-shadow: none;
}

body.wp-theme-blocksy .ct-header-trigger {
  border-color: var(--modern-line);
  border-radius: 12px;
  color: var(--modern-ink);
  background: var(--modern-surface);
  box-shadow: none;
}

body.home .sl-home-section {
  border-color: var(--modern-line);
  box-shadow: none;
}

body.home .sl-hero-grid {
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 7% 0, rgba(205, 232, 223, 0.82), transparent 27%),
    var(--modern-surface);
  box-shadow: 0 22px 65px rgba(17, 22, 21, 0.08);
}

body.home .sl-hero-main {
  gap: 1.15rem;
  padding: clamp(1.5rem, 4.5vw, 4rem);
}

body.home .sl-kicker,
body.home .sl-section-kicker {
  border-color: var(--modern-ink);
  border-radius: 10px;
  color: #fff;
  background: var(--modern-ink);
}

body.home .sl-kicker::before,
body.home .sl-section-kicker::before {
  background: var(--modern-accent);
  box-shadow: 0 0 0 4px rgba(255, 122, 69, 0.15);
}

body.home .sl-hero-title h1,
body.home .sl-section-title h2,
body.home .sl-method-title h2,
body.home .sl-cta-title h2,
body.home .sl-hero-panel h2 {
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-weight: 850;
  letter-spacing: -0.065em;
}

body.home .sl-hero-title h1 {
  max-width: 10ch;
  color: var(--modern-ink);
  font-size: clamp(3.65rem, 5.5vw, 5.8rem);
  line-height: 0.95;
}

body.home .sl-hero-lead p,
body.home .sl-section-intro p,
body.home .sl-card-copy p,
body.home .sl-post-grid .post-card > p {
  color: var(--modern-muted);
}

body.home .sl-button-primary .elementor-button {
  border-color: var(--modern-ink);
  border-radius: 14px;
  color: #fff;
  background: var(--modern-ink);
  box-shadow: none;
}

body.home .sl-button-primary .elementor-button:hover {
  color: var(--modern-ink);
  background: var(--modern-accent);
}

body.home .sl-button-secondary .elementor-button,
body.home .sl-button-outline .elementor-button {
  border-color: var(--modern-line);
  border-radius: 14px;
  background: var(--modern-surface);
  box-shadow: none;
}

body.home .sl-trust-row {
  gap: 0.55rem;
}

body.home .sl-trust-item {
  border-color: var(--modern-line);
  border-radius: 14px;
  background: #faf8f3;
}

body.home .sl-trust-item strong {
  color: var(--modern-ink);
}

body.home .sl-trust-item span {
  color: var(--modern-muted);
}

body.home .sl-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 122, 69, 0.2), transparent 31%),
    #122c29;
  box-shadow: none;
}

body.home .sl-panel-kicker,
body.home .sl-panel-kicker p,
body.home .sl-dark-kicker,
body.home .sl-dark-kicker p {
  color: var(--modern-accent) !important;
}

body.home .sl-checklist li span,
body.home .sl-criterion-number {
  color: var(--modern-accent);
}

body.home .sl-panel-link .elementor-button {
  border-color: rgba(255, 122, 69, 0.45);
  border-radius: 14px;
  color: var(--modern-ink);
  background: var(--modern-accent);
}

body.home .sl-path-section,
body.home .sl-topic-section,
body.home .sl-faq-section,
body.home .sl-blog-section {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

body.home .sl-section-title h2 {
  color: var(--modern-ink);
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  line-height: 0.98;
}

body.home .sl-path-card,
body.home .sl-topic-card,
body.home .sl-post-grid .post-card {
  border-color: var(--modern-line);
  border-radius: 18px;
  background: var(--modern-surface);
  box-shadow: none;
}

body.home .sl-path-card:nth-child(2) {
  background: var(--modern-accent-soft);
}

body.home .sl-path-card:hover,
body.home .sl-topic-card:hover,
body.home .sl-post-grid .post-card:hover {
  border-color: rgba(17, 22, 21, 0.55);
  box-shadow: 0 16px 36px rgba(17, 22, 21, 0.08);
  transform: translateY(-4px);
}

body.home .sl-path-card h3,
body.home .sl-topic-card h3,
body.home .sl-post-grid .post-card h3 {
  color: var(--modern-ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-weight: 820;
  letter-spacing: -0.04em;
}

body.home .sl-card-label,
body.home .sl-topic-tag {
  border: 1px solid var(--modern-line);
  border-radius: 8px;
  color: var(--modern-ink);
  background: #f4f0e9;
}

body.home .sl-topic-card .sl-card-number {
  border-radius: 12px;
  color: var(--modern-ink);
  background: var(--modern-accent);
}

body.home .sl-text-link .elementor-button {
  color: var(--modern-ink);
  text-decoration-color: var(--modern-accent);
  text-decoration-thickness: 3px;
}

body.home .sl-method-section {
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 122, 69, 0.18), transparent 27%),
    #102825;
  box-shadow: none;
}

body.home .sl-method-title h2 {
  color: #fff;
}

body.home .sl-criterion {
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

body.home .sl-criterion h3 {
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
}

body.home .sl-faq-list .faq-item {
  border-color: var(--modern-line);
  border-radius: 14px;
  background: var(--modern-surface);
  box-shadow: none;
}

body.home .sl-faq-list .faq-item[open] {
  border-color: rgba(17, 22, 21, 0.55);
  box-shadow: inset 4px 0 0 var(--modern-accent);
}

body.home .sl-faq-list .faq-item summary,
body.home .sl-post-grid .post-card h3 {
  font-family: "Manrope", "Helvetica Neue", sans-serif;
}

body.home .sl-cta-section {
  border-color: var(--modern-ink);
  border-radius: 26px;
  color: var(--modern-ink);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.55), transparent 24%),
    var(--modern-mint);
  box-shadow: none;
}

body.home .sl-cta-title h2,
body.home .sl-cta-kicker,
body.home .sl-cta-kicker p,
body.home .sl-cta-section .sl-cta-lead p {
  color: var(--modern-ink) !important;
}

body.home .sl-button-light .elementor-button {
  border-radius: 14px;
  color: #fff;
  background: var(--modern-ink);
  box-shadow: none;
}

body.home .sl-button-ghost-light .elementor-button {
  border-color: rgba(17, 22, 21, 0.3);
  border-radius: 14px;
  color: var(--modern-ink);
  background: rgba(255, 255, 255, 0.35);
}

body.wp-theme-blocksy .seminaria-footer-band__copy {
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 122, 69, 0.16), transparent 30%),
    #122c29;
}

body.wp-theme-blocksy .seminaria-footer-band__panel,
body.wp-theme-blocksy .ct-footer-copyright {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
}

body.home .sl-home-section {
  animation: sl-modern-rise 0.65s ease both;
}

body.home .sl-home-section:nth-child(2) {
  animation-delay: 0.08s;
}

body.home .sl-home-section:nth-child(3) {
  animation-delay: 0.14s;
}

@keyframes sl-modern-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  body.wp-theme-blocksy .ct-header [data-row="middle"] .ct-container {
    min-height: 68px;
  }

  body.wp-theme-blocksy .site-title a {
    font-size: 1.2rem;
  }

  body.home .sl-hero-grid,
  body.home .sl-path-section,
  body.home .sl-topic-section,
  body.home .sl-method-section,
  body.home .sl-faq-section,
  body.home .sl-blog-section,
  body.home .sl-cta-section {
    border-radius: 18px;
  }

  body.home .sl-hero-main,
  body.home .sl-hero-panel,
  body.home .sl-path-section,
  body.home .sl-topic-section,
  body.home .sl-method-section,
  body.home .sl-faq-section,
  body.home .sl-blog-section,
  body.home .sl-cta-section {
    padding: 1.05rem;
  }

  body.home .sl-hero-title h1 {
    max-width: 11ch;
    font-size: clamp(2.75rem, 10.8vw, 3.65rem);
    line-height: 0.96;
  }

  body.home .sl-section-title h2,
  body.home .sl-method-title h2,
  body.home .sl-cta-title h2 {
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .sl-home-section {
    animation: none;
  }
}

body.home .sl-kicker,
body.home .sl-kicker p,
body.home .sl-section-kicker,
body.home .sl-section-kicker p {
  color: #fff !important;
}

/* Reference-based navy and gold homepage */
body.wp-theme-blocksy {
  --ref-navy: #0c2853;
  --ref-navy-deep: #071d3e;
  --ref-gold: #d7a84f;
  --ref-gold-soft: #f3e5c5;
  --ref-text: #17243a;
  --ref-muted: #667085;
  --ref-border: #dfe4eb;
  --ref-surface: #ffffff;
  color: var(--ref-text);
  background: #fff;
  background-image: none;
}

body.wp-theme-blocksy .ct-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #edf0f4;
  box-shadow: 0 8px 30px rgba(12, 40, 83, 0.035);
  backdrop-filter: blur(18px);
}

body.wp-theme-blocksy .ct-header [data-row="middle"] .ct-container {
  min-height: 84px;
}

body.wp-theme-blocksy .site-branding {
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.wp-theme-blocksy .site-title a {
  position: relative;
  display: block;
  max-width: 178px;
  padding-left: 42px;
  overflow: visible;
  color: var(--ref-navy);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-overflow: clip;
  white-space: normal;
}

body.wp-theme-blocksy .site-title a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 32px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--ref-gold), var(--ref-gold)) 0 18px / 6px 14px no-repeat,
    linear-gradient(var(--ref-gold), var(--ref-gold)) 11px 9px / 6px 23px no-repeat,
    linear-gradient(var(--ref-gold), var(--ref-gold)) 22px 0 / 6px 32px no-repeat;
  border-radius: 2px;
}

body.wp-theme-blocksy #header-menu-1 .menu {
  gap: 1.6rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.wp-theme-blocksy #header-menu-1 .ct-menu-link {
  position: relative;
  padding: 1.85rem 0 1.7rem;
  border-radius: 0;
  color: var(--ref-navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

body.wp-theme-blocksy #header-menu-1 li > .ct-menu-link:hover,
body.wp-theme-blocksy #header-menu-1 .current-menu-item > .ct-menu-link,
body.wp-theme-blocksy #header-menu-1 .current_page_item > .ct-menu-link {
  color: var(--ref-navy);
  background: transparent;
  box-shadow: none;
  transform: none;
}

body.wp-theme-blocksy #header-menu-1 li > .ct-menu-link:hover::after,
body.wp-theme-blocksy #header-menu-1 .current-menu-item > .ct-menu-link::after,
body.wp-theme-blocksy #header-menu-1 .current_page_item > .ct-menu-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1.05rem;
  left: 0;
  height: 2px;
  background: var(--ref-gold);
}

body.wp-theme-blocksy .ct-header-trigger {
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  color: var(--ref-navy);
  background: #fff;
  box-shadow: none;
}

body.home.wp-theme-blocksy .site-main {
  padding-top: 0;
}

body.home.wp-theme-blocksy .ct-container-full[data-content="normal"] {
  width: 100%;
}

body.home .ref-home-section,
body.home .ref-newsletter-section {
  width: min(calc(100% - 2rem), 1180px) !important;
  max-width: 1180px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.home .ref-home-section,
body.home .ref-home-section .elementor-element,
body.home .ref-home-section .elementor-widget,
body.home .ref-newsletter-section,
body.home .ref-newsletter-section .elementor-element {
  min-width: 0;
  max-width: 100%;
}

body.home .ref-hero-section {
  display: grid !important;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.8rem;
  align-items: center;
  min-height: 515px;
  margin-top: 0 !important;
}

body.home .ref-hero-copy {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 3.7rem 0 4.8rem 0.5rem;
}

body.home .ref-eyebrow p {
  margin: 0;
  color: var(--ref-gold);
  font-size: 0.88rem;
  font-weight: 650;
}

body.home .ref-hero-title h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--ref-navy);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-size: clamp(2.75rem, 4.35vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

body.home .ref-hero-lead p {
  max-width: 60ch;
  margin: 0;
  color: #4e596d;
  font-size: 0.98rem;
  line-height: 1.72;
}

body.home .ref-hero-actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.9rem;
}

body.home .ref-button-primary .elementor-button,
body.home .ref-button-outline .elementor-button {
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

body.home .ref-button-primary .elementor-button {
  border: 1px solid var(--ref-navy);
  color: #fff;
  background: var(--ref-navy);
  box-shadow: none;
}

body.home .ref-button-primary .elementor-button:hover {
  border-color: var(--ref-gold);
  background: var(--ref-gold);
}

body.home .ref-button-outline .elementor-button {
  border: 1px solid var(--ref-navy);
  color: var(--ref-navy);
  background: #fff;
}

body.home .ref-hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.6rem;
}

body.home .ref-hero-badges > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.75rem;
  align-items: center;
}

body.home .ref-hero-badges i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ref-gold);
  border-radius: 50%;
  color: var(--ref-gold);
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
}

body.home .ref-hero-badges span {
  color: #687286;
  font-size: 0.76rem;
  line-height: 1.35;
}

body.home .ref-hero-badges strong {
  color: var(--ref-text);
  font-weight: 750;
}

body.home .ref-hero-media-widget,
body.home .ref-hero-media-widget .elementor-widget-container,
body.home .ref-hero-media {
  width: 100%;
  height: 100%;
}

body.home .ref-hero-media {
  min-height: 515px;
  margin: 0;
  overflow: hidden;
  border-radius: 48% 0 0 48% / 50% 0 0 50%;
}

body.home .ref-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

body.home .ref-search-section {
  position: relative;
  z-index: 5;
  display: flex !important;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: -34px !important;
  padding: 1.05rem 1.7rem 1.3rem;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(110deg, var(--ref-navy-deep), #10396d);
  box-shadow: 0 16px 34px rgba(7, 29, 62, 0.16);
}

body.home .ref-search-title h2 {
  margin: 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 750;
  text-align: center;
}

body.home .ref-search-form {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.95fr) auto;
  gap: 0.65rem;
}

body.home .ref-search-field {
  position: relative;
  display: block;
}

body.home .ref-search-field input,
body.home .ref-search-field select,
body.home .ref-search-form button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  font: inherit;
}

body.home .ref-search-field input,
body.home .ref-search-field select {
  padding: 0 0.9rem;
  color: #687286;
  background: #fff;
  font-size: 0.77rem;
}

body.home .ref-search-field--text input {
  padding-right: 2.5rem;
}

body.home .ref-search-field--text b {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  color: var(--ref-navy);
  font-size: 1.2rem;
  transform: translateY(-50%);
}

body.home .ref-search-form button {
  padding: 0 1.1rem;
  color: var(--ref-navy);
  background: #e6bf72;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

body.home .ref-benefit-section {
  padding: 1.8rem 0 1.55rem;
}

body.home .ref-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.home .ref-benefit-grid article {
  position: relative;
  padding: 0 1.55rem;
  text-align: center;
}

body.home .ref-benefit-grid article + article::before {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 6%;
  left: 0;
  width: 1px;
  background: var(--ref-border);
}

body.home .ref-benefit-grid i {
  color: var(--ref-navy);
  font-size: 1.85rem;
  font-style: normal;
}

body.home .ref-benefit-grid h3 {
  margin: 0.55rem 0 0.35rem;
  color: var(--ref-navy);
  font-size: 0.9rem;
}

body.home .ref-benefit-grid p {
  margin: 0;
  color: #687286;
  font-size: 0.76rem;
  line-height: 1.55;
}

body.home .ref-listing-section,
body.home .ref-blog-listing-section {
  display: flex !important;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.8rem 0 0;
  border-top: 1px solid #eef0f3;
}

body.home .ref-section-heading {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.home .ref-section-title h2 {
  margin: 0;
  color: var(--ref-navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

body.home .ref-section-link .elementor-button {
  padding: 0.4rem 0;
  color: var(--ref-navy);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
}

body.home .ref-course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

body.home .ref-course-card,
body.home .ref-blog-card {
  overflow: hidden;
  border: 1px solid var(--ref-border);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(12, 40, 83, 0.055);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.home .ref-course-card:hover,
body.home .ref-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(12, 40, 83, 0.11);
}

body.home .ref-course-card__image,
body.home .ref-blog-card__image {
  display: block;
  overflow: hidden;
}

body.home .ref-course-card__image {
  height: 138px;
}

body.home .ref-course-card__image img,
body.home .ref-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

body.home .ref-course-card:hover img,
body.home .ref-blog-card:hover img {
  transform: scale(1.035);
}

body.home .ref-course-card__body {
  display: flex;
  flex-direction: column;
  min-height: 175px;
  padding: 0.9rem;
}

body.home .ref-course-card__category {
  align-self: flex-start;
  margin: -1.12rem 0 0.5rem;
  padding: 0.3rem 0.55rem;
  color: #8a6429;
  background: #fff9ec;
  font-size: 0.58rem;
  font-weight: 800;
}

body.home .ref-course-card h3,
body.home .ref-blog-card h3 {
  margin: 0;
  color: var(--ref-navy);
  font-family: "Manrope", sans-serif;
  font-weight: 750;
}

body.home .ref-course-card h3 {
  font-size: 0.9rem;
  line-height: 1.3;
}

body.home .ref-course-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
  color: #6d7686;
  font-size: 0.67rem;
}

body.home .ref-course-card__price {
  align-self: flex-end;
  margin-top: auto;
  color: var(--ref-navy);
  font-size: 1rem;
}

body.home .ref-blog-listing-section {
  margin-top: 2rem !important;
  padding-bottom: 2.2rem;
}

body.home .ref-blog-shortcode .elementor-shortcode {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.home .ref-blog-card__image {
  height: 145px;
}

body.home .ref-blog-card__body {
  padding: 1rem;
}

body.home .ref-blog-card__date {
  display: block;
  margin-bottom: 0.75rem;
  color: #7a8290;
  font-size: 0.61rem;
  text-transform: uppercase;
}

body.home .ref-blog-card h3 {
  min-height: 3.2em;
  font-size: 0.94rem;
  line-height: 1.35;
}

body.home .ref-blog-card__link {
  display: inline-flex;
  gap: 0.55rem;
  margin-top: 1.2rem;
  color: var(--ref-navy);
  font-size: 0.62rem;
  font-weight: 800;
}

body.home .ref-newsletter-section {
  width: 100% !important;
  max-width: none !important;
  padding: 1.65rem max(1rem, calc((100% - 1180px) / 2));
  background: #fbf8f1;
}

body.home .ref-newsletter-widget .elementor-widget-container {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) minmax(380px, 0.95fr);
  gap: 1.25rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

body.home .ref-newsletter__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--ref-border);
  border-radius: 50%;
  color: var(--ref-navy);
  background: #fff;
  font-size: 1.7rem;
}

body.home .ref-newsletter__copy h2 {
  margin: 0 0 0.25rem;
  color: var(--ref-navy);
  font-size: 1.1rem;
}

body.home .ref-newsletter__copy p {
  max-width: 42ch;
  margin: 0;
  color: #677183;
  font-size: 0.77rem;
  line-height: 1.55;
}

body.home .ref-newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}

body.home .ref-newsletter__form input,
body.home .ref-newsletter__form button {
  min-height: 46px;
  border-radius: 4px;
  font: inherit;
}

body.home .ref-newsletter__form input {
  width: 100%;
  padding: 0 0.95rem;
  border: 1px solid var(--ref-border);
  background: #fff;
}

body.home .ref-newsletter__form button {
  padding: 0 1.8rem;
  border: 0;
  color: #fff;
  background: var(--ref-navy);
  font-size: 0.72rem;
  font-weight: 800;
}

body.wp-theme-blocksy .seminaria-footer-band.ref-footer {
  padding: 3rem 0 2.4rem;
  color: #fff;
  background: linear-gradient(120deg, var(--ref-navy-deep), #10396d);
}

body.wp-theme-blocksy .ref-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) repeat(3, minmax(150px, 0.7fr));
  gap: 2.4rem;
  width: min(calc(100% - 2rem), 1180px);
}

body.wp-theme-blocksy .ref-footer__brand {
  padding-right: 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

body.wp-theme-blocksy .ref-footer__logo {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.12;
}

body.wp-theme-blocksy .ref-footer__logo i {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  width: 28px;
  height: 30px;
}

body.wp-theme-blocksy .ref-footer__logo b {
  display: block;
  width: 6px;
  border-radius: 1px;
  background: var(--ref-gold);
}

body.wp-theme-blocksy .ref-footer__logo b:nth-child(1) { height: 12px; }
body.wp-theme-blocksy .ref-footer__logo b:nth-child(2) { height: 21px; }
body.wp-theme-blocksy .ref-footer__logo b:nth-child(3) { height: 30px; }

body.wp-theme-blocksy .ref-footer__brand p {
  max-width: 34ch;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.65;
}

body.wp-theme-blocksy .ref-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.58rem;
}

body.wp-theme-blocksy .ref-footer__column strong {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.045em;
}

body.wp-theme-blocksy .ref-footer__column a,
body.wp-theme-blocksy .ref-footer__column span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
}

body.wp-theme-blocksy .ref-footer__column a:hover {
  color: var(--ref-gold);
}

body.wp-theme-blocksy .ct-footer {
  margin-top: 0;
  background: var(--ref-navy-deep);
}

body.wp-theme-blocksy .ct-footer [data-row="bottom"] {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

body.wp-theme-blocksy .ct-footer-copyright {
  padding: 1rem;
  border: 0;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1040px) {
  body.wp-theme-blocksy #header-menu-1 .menu {
    gap: 1rem;
  }

  body.home .ref-search-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .ref-search-form button {
    grid-column: span 2;
  }

  body.home .ref-course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  body.home .ref-hero-section {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.home .ref-hero-copy {
    padding: 3rem 0 2rem;
  }

  body.home .ref-hero-media {
    min-height: 360px;
    border-radius: 28px 28px 0 0;
  }

  body.home .ref-search-section {
    margin-top: -18px !important;
  }

  body.home .ref-benefit-grid,
  body.home .ref-blog-shortcode .elementor-shortcode {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .ref-benefit-grid article:nth-child(3)::before {
    display: none;
  }

  body.home .ref-benefit-grid article {
    padding: 1rem;
  }

  body.home .ref-newsletter-widget .elementor-widget-container {
    grid-template-columns: auto 1fr;
  }

  body.home .ref-newsletter__form {
    grid-column: 1 / -1;
  }

  body.wp-theme-blocksy .ref-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.wp-theme-blocksy .ref-footer__brand {
    grid-column: 1 / -1;
    border-right: 0;
  }
}

@media (max-width: 640px) {
  body.wp-theme-blocksy .ct-header [data-row="middle"] .ct-container {
    min-height: 70px;
  }

  body.wp-theme-blocksy .site-title a {
    max-width: 155px;
    padding-left: 36px;
    font-size: 0.78rem;
  }

  body.wp-theme-blocksy .site-title a::before {
    width: 26px;
    height: 27px;
    background:
      linear-gradient(var(--ref-gold), var(--ref-gold)) 0 16px / 5px 11px no-repeat,
      linear-gradient(var(--ref-gold), var(--ref-gold)) 10px 8px / 5px 19px no-repeat,
      linear-gradient(var(--ref-gold), var(--ref-gold)) 20px 0 / 5px 27px no-repeat;
  }

  body.home .ref-home-section {
    width: calc(100% - 1rem) !important;
  }

  body.home .ref-hero-copy {
    padding: 2.2rem 0.5rem 1.5rem;
  }

  body.home .ref-hero-title h1 {
    font-size: clamp(2.2rem, 10.8vw, 3.15rem);
    line-height: 1.04;
  }

  body.home .ref-hero-lead p {
    font-size: 0.9rem;
  }

  body.home .ref-hero-actions,
  body.home .ref-hero-actions > .elementor-element,
  body.home .ref-hero-actions .elementor-button {
    width: 100%;
  }

  body.home .ref-hero-badges {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  body.home .ref-hero-media {
    min-height: 280px;
  }

  body.home .ref-search-section {
    padding: 1rem;
  }

  body.home .ref-search-form,
  body.home .ref-course-grid,
  body.home .ref-benefit-grid,
  body.home .ref-blog-shortcode .elementor-shortcode {
    grid-template-columns: 1fr;
  }

  body.home .ref-search-form button {
    grid-column: auto;
  }

  body.home .ref-benefit-grid article + article::before {
    top: 0;
    right: 10%;
    bottom: auto;
    left: 10%;
    width: auto;
    height: 1px;
  }

  body.home .ref-benefit-grid article:nth-child(3)::before {
    display: block;
  }

  body.home .ref-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  body.home .ref-course-card__image,
  body.home .ref-blog-card__image {
    height: 190px;
  }

  body.home .ref-newsletter-widget .elementor-widget-container,
  body.home .ref-newsletter__form,
  body.wp-theme-blocksy .ref-footer__grid {
    grid-template-columns: 1fr;
  }

  body.home .ref-newsletter__icon {
    width: 50px;
    height: 50px;
  }

  body.home .ref-newsletter__form button {
    min-height: 46px;
  }
}

body.wp-theme-blocksy .ct-header [data-row="middle"] .ct-container,
body.wp-theme-blocksy .ct-footer [data-row="bottom"] .ct-container {
  width: min(calc(100% - 4rem), 1280px);
}

body.home.wp-theme-blocksy .ct-container-full[data-content="normal"] {
  padding-block: 0 !important;
}

body.home .ref-home-section,
body.home .ref-newsletter-widget .elementor-widget-container {
  width: min(calc(100% - 2rem), 1280px) !important;
  max-width: 1280px !important;
}

body.home .ref-hero-title h1 {
  max-width: 18ch;
  font-size: clamp(2.75rem, 4vw, 3.5rem);
}

body.home .ref-benefit-grid h3,
body.home .ref-newsletter__copy h2 {
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-weight: 750;
}

body.home .ref-course-card h3 a,
body.home .ref-blog-card h3 a {
  color: var(--ref-navy) !important;
}

body.home .ref-newsletter-widget {
  display: grid !important;
  grid-template-columns: auto minmax(220px, 1fr) minmax(380px, 0.95fr);
  gap: 1.25rem;
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
}

body.home .ref-newsletter-widget .elementor-widget-container {
  display: contents;
}

body.wp-theme-blocksy .ref-footer__grid {
  width: min(calc(100% - 4rem), 1280px);
}

@media (max-width: 840px) {
  body.home .ref-newsletter-widget {
    grid-template-columns: auto 1fr;
  }

  body.home .ref-newsletter__form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body.wp-theme-blocksy .ct-header [data-row="middle"] .ct-container,
  body.wp-theme-blocksy .ct-footer [data-row="bottom"] .ct-container,
  body.wp-theme-blocksy .ref-footer__grid {
    width: calc(100% - 1.2rem);
  }

  body.home .ref-home-section {
    width: calc(100% - 1rem) !important;
  }

  body.home .ref-hero-title h1 {
    font-size: clamp(2.2rem, 10.8vw, 3.15rem);
  }

  body.home .ref-newsletter-widget {
    grid-template-columns: 1fr;
  }

  body.home .ref-newsletter__form {
    grid-column: auto;
  }
}

/* Unified reference design for inner pages and dynamic templates */
body.wp-theme-blocksy .ref-inner-page,
body.wp-theme-blocksy .ref-inner-block {
  --ref-navy: #0c2853;
  --ref-navy-deep: #071d3e;
  --ref-gold: #d7a84f;
  --ref-gold-soft: #f6ead1;
  --ref-text: #17243a;
  --ref-muted: #687286;
  --ref-border: #dfe4eb;
  font-family: "Manrope", "Helvetica Neue", sans-serif;
}

body.wp-theme-blocksy.page-id-5 .ct-container-full[data-content="normal"],
body.wp-theme-blocksy.page-id-6 .ct-container-full[data-content="normal"],
body.wp-theme-blocksy.page-id-8 .ct-container-full[data-content="normal"],
body.wp-theme-blocksy.page-id-9 .ct-container-full[data-content="normal"] {
  width: 100%;
  padding-block: 0 !important;
}

body.wp-theme-blocksy.page-id-5 .entry-content,
body.wp-theme-blocksy.page-id-6 .entry-content,
body.wp-theme-blocksy.page-id-8 .entry-content,
body.wp-theme-blocksy.page-id-9 .entry-content {
  width: 100%;
  max-width: none;
  padding: 0;
}

body.wp-theme-blocksy .ref-inner-shell,
body.wp-theme-blocksy .ref-inner-block {
  width: min(calc(100% - 4rem), 1280px) !important;
  max-width: 1280px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.wp-theme-blocksy .ref-inner-block,
body.wp-theme-blocksy .ref-inner-block .elementor-element,
body.wp-theme-blocksy .ref-inner-block .elementor-widget {
  min-width: 0;
  max-width: 100%;
}

body.wp-theme-blocksy .ref-kicker,
body.wp-theme-blocksy .ref-inner-eyebrow p {
  margin: 0;
  color: var(--ref-gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.wp-theme-blocksy .ref-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

body.wp-theme-blocksy .ref-breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
}

body.wp-theme-blocksy .ref-elementor-hero,
body.wp-theme-blocksy .ref-inner-hero__grid {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 5%, rgba(215, 168, 79, 0.2), transparent 26%),
    linear-gradient(120deg, var(--ref-navy-deep), #10396d);
  box-shadow: 0 22px 58px rgba(7, 29, 62, 0.18);
}

body.wp-theme-blocksy .ref-elementor-hero {
  margin-top: 2.2rem !important;
  margin-bottom: 0 !important;
  padding: 4.4rem 4.7rem;
}

body.wp-theme-blocksy .ref-elementor-hero::after,
body.wp-theme-blocksy .ref-inner-hero__grid::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -160px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025), 0 0 0 90px rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

body.wp-theme-blocksy .ref-elementor-hero-copy {
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

body.wp-theme-blocksy .ref-inner-title h1,
body.wp-theme-blocksy .ref-inner-hero h1,
body.wp-theme-blocksy .ref-course-detail-hero h1,
body.wp-theme-blocksy .ref-article-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

body.wp-theme-blocksy .ref-inner-title h1 {
  max-width: 14ch;
}

body.wp-theme-blocksy .ref-inner-lead p,
body.wp-theme-blocksy .ref-inner-hero__copy > p,
body.wp-theme-blocksy .ref-course-detail-hero__copy > p,
body.wp-theme-blocksy .ref-article-hero__copy > p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.75;
}

body.wp-theme-blocksy .ref-elementor-hero-aside-widget,
body.wp-theme-blocksy .ref-elementor-hero-aside-widget .elementor-widget-container {
  position: relative;
  z-index: 1;
  height: 100%;
}

body.wp-theme-blocksy .ref-elementor-hero-aside,
body.wp-theme-blocksy .ref-inner-hero__aside {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 245px;
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(8px);
}

body.wp-theme-blocksy .ref-elementor-hero-aside strong,
body.wp-theme-blocksy .ref-inner-hero__aside strong {
  color: var(--ref-gold);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

body.wp-theme-blocksy .ref-elementor-hero-aside span,
body.wp-theme-blocksy .ref-inner-hero__aside span {
  margin-top: 0.55rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.wp-theme-blocksy .ref-elementor-hero-aside p,
body.wp-theme-blocksy .ref-inner-hero__aside p {
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  line-height: 1.65;
}

body.wp-theme-blocksy .ref-inner-section-block,
body.wp-theme-blocksy .ref-contact-layout,
body.wp-theme-blocksy .ref-inner-faq-layout {
  display: flex !important;
  flex-direction: column;
  gap: 2.2rem;
  padding: 5rem 0;
}

body.wp-theme-blocksy .ref-inner-section-block--soft {
  width: 100% !important;
  max-width: none !important;
  padding-right: max(2rem, calc((100% - 1280px) / 2));
  padding-left: max(2rem, calc((100% - 1280px) / 2));
  background: #f7f8fa;
}

body.wp-theme-blocksy .ref-inner-heading {
  display: flex !important;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 760px;
}

body.wp-theme-blocksy .ref-inner-section-title h2,
body.wp-theme-blocksy .ref-inner-cta-title h2,
body.wp-theme-blocksy .ref-contact-form-card h2,
body.wp-theme-blocksy .ref-archive-toolbar h2,
body.wp-theme-blocksy .ref-section-heading-static h2,
body.wp-theme-blocksy .ref-prose h2,
body.wp-theme-blocksy .ref-sticky-card h2,
body.wp-theme-blocksy .ref-inner-newsletter h2 {
  margin: 0;
  color: var(--ref-navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

body.wp-theme-blocksy .ref-inner-section-lead p {
  max-width: 70ch;
  margin: 0;
  color: var(--ref-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

body.wp-theme-blocksy .ref-topic-cards,
body.wp-theme-blocksy .ref-method-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

body.wp-theme-blocksy .ref-topic-cards--three,
body.wp-theme-blocksy .ref-method-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.wp-theme-blocksy .ref-topic-cards article,
body.wp-theme-blocksy .ref-method-stats article,
body.wp-theme-blocksy .ref-dynamic-card-grid .card {
  position: relative;
  min-height: 220px;
  padding: 1.7rem;
  overflow: hidden;
  border: 1px solid var(--ref-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(12, 40, 83, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.wp-theme-blocksy .ref-topic-cards article:hover,
body.wp-theme-blocksy .ref-dynamic-card-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(12, 40, 83, 0.1);
}

body.wp-theme-blocksy .ref-topic-cards i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #8b6428;
  background: var(--ref-gold-soft);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

body.wp-theme-blocksy .ref-topic-cards h3,
body.wp-theme-blocksy .ref-dynamic-card-grid h3 {
  margin: 1.4rem 0 0.65rem;
  color: var(--ref-navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

body.wp-theme-blocksy .ref-topic-cards p,
body.wp-theme-blocksy .ref-dynamic-card-grid p,
body.wp-theme-blocksy .ref-dynamic-card-grid li {
  margin: 0;
  color: var(--ref-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

body.wp-theme-blocksy .ref-dynamic-card-grid .elementor-shortcode {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.wp-theme-blocksy .ref-dynamic-card-grid--four .elementor-shortcode {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.wp-theme-blocksy .ref-dynamic-card-grid .card__badge {
  display: inline-block;
  padding: 0.35rem 0.55rem;
  border-radius: 3px;
  color: #8b6428;
  background: var(--ref-gold-soft);
  font-size: 0.6rem;
  font-weight: 800;
}

body.wp-theme-blocksy .ref-dynamic-card-grid .bullet-list {
  margin: 1rem 0 0;
  padding-left: 1.05rem;
}

body.wp-theme-blocksy .ref-comparison-widget .table-card {
  overflow-x: auto;
  border: 1px solid var(--ref-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 40, 83, 0.055);
}

body.wp-theme-blocksy .ref-comparison-widget table {
  width: 100%;
  min-width: 760px;
  border: 0;
  border-collapse: collapse;
}

body.wp-theme-blocksy .ref-comparison-widget th,
body.wp-theme-blocksy .ref-comparison-widget td {
  padding: 1rem 1.2rem;
  border: 0;
  border-bottom: 1px solid var(--ref-border);
  color: var(--ref-muted);
  font-size: 0.78rem;
  text-align: left;
}

body.wp-theme-blocksy .ref-comparison-widget thead th {
  color: #fff;
  background: var(--ref-navy);
  font-size: 0.7rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

body.wp-theme-blocksy .ref-comparison-widget tbody th {
  color: var(--ref-navy);
  font-weight: 800;
}

body.wp-theme-blocksy .ref-comparison-widget .table-note {
  margin: 0;
  padding: 1rem 1.2rem;
  color: var(--ref-muted);
  font-size: 0.72rem;
}

body.wp-theme-blocksy .ref-rich-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 4rem;
  align-items: start;
}

body.wp-theme-blocksy .ref-rich-split--reverse {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

body.wp-theme-blocksy .ref-rich-split h2 {
  margin: 0.8rem 0 1.2rem;
  color: var(--ref-navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.16;
}

body.wp-theme-blocksy .ref-rich-split p {
  color: var(--ref-muted);
  font-size: 0.9rem;
  line-height: 1.78;
}

body.wp-theme-blocksy .ref-rich-split aside {
  padding: 2rem;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(140deg, var(--ref-navy-deep), #10396d);
  box-shadow: 0 18px 38px rgba(7, 29, 62, 0.15);
}

body.wp-theme-blocksy .ref-rich-split aside h3 {
  margin: 0.8rem 0 1rem;
  color: #fff;
  font-size: 1.35rem;
}

body.wp-theme-blocksy .ref-rich-split aside ul,
body.wp-theme-blocksy .ref-sticky-card ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.wp-theme-blocksy .ref-rich-split aside li,
body.wp-theme-blocksy .ref-sticky-card li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.55;
}

body.wp-theme-blocksy .ref-rich-split aside li::before,
body.wp-theme-blocksy .ref-sticky-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ref-gold);
  font-weight: 800;
}

body.wp-theme-blocksy .ref-method-stats-section {
  padding: 2.4rem 0;
}

body.wp-theme-blocksy .ref-method-stats article {
  display: flex;
  min-height: 0;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem;
}

body.wp-theme-blocksy .ref-method-stats strong {
  color: var(--ref-gold);
  font-size: 1.5rem;
}

body.wp-theme-blocksy .ref-method-stats span {
  color: var(--ref-navy);
  font-size: 0.78rem;
  font-weight: 800;
}

body.wp-theme-blocksy .ref-inner-faq-layout,
body.wp-theme-blocksy .ref-contact-layout {
  display: grid !important;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 4rem;
  align-items: start;
}

body.wp-theme-blocksy .ref-faq-intro,
body.wp-theme-blocksy .ref-contact-copy {
  position: sticky;
  top: 118px;
  display: flex !important;
  flex-direction: column;
  gap: 0.85rem;
}

body.wp-theme-blocksy .ref-faq-accordion .faq-item {
  margin: 0 0 0.75rem;
  overflow: hidden;
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

body.wp-theme-blocksy .ref-faq-accordion .faq-item[open] {
  border-color: #d5ba81;
  box-shadow: 0 10px 28px rgba(12, 40, 83, 0.07);
}

body.wp-theme-blocksy .ref-faq-accordion .faq-item summary {
  padding: 1.25rem 3.5rem 1.25rem 1.35rem;
  color: var(--ref-navy);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
}

body.wp-theme-blocksy .ref-faq-accordion .faq-item__body {
  padding: 0 1.35rem 1.3rem;
}

body.wp-theme-blocksy .ref-faq-accordion .faq-item__body p {
  margin: 0;
  color: var(--ref-muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

body.wp-theme-blocksy .ref-inner-cta {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem !important;
  padding: 2.8rem 3.2rem;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(120deg, var(--ref-navy-deep), #10396d);
}

body.wp-theme-blocksy .ref-inner-cta-copy {
  display: flex !important;
  flex-direction: column;
  gap: 0.7rem;
}

body.wp-theme-blocksy .ref-inner-cta-title h2 {
  color: #fff;
}

body.wp-theme-blocksy .ref-inner-cta-lead p {
  max-width: 66ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

body.wp-theme-blocksy .ref-inner-button .elementor-button,
body.wp-theme-blocksy .ref-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 4px;
  color: var(--ref-navy) !important;
  background: var(--ref-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-align: center;
}

body.wp-theme-blocksy .ref-contact-details {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

body.wp-theme-blocksy .ref-contact-details article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem;
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  background: #fff;
}

body.wp-theme-blocksy .ref-contact-details i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ref-navy);
  background: var(--ref-gold-soft);
  font-style: normal;
}

body.wp-theme-blocksy .ref-contact-details div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

body.wp-theme-blocksy .ref-contact-details span {
  color: var(--ref-muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body.wp-theme-blocksy .ref-contact-details a,
body.wp-theme-blocksy .ref-contact-details strong {
  color: var(--ref-navy);
  font-size: 0.76rem;
  font-weight: 800;
}

body.wp-theme-blocksy .ref-contact-form-card {
  padding: 2rem;
  border: 1px solid var(--ref-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(12, 40, 83, 0.08);
}

body.wp-theme-blocksy .ref-contact-form-card > p {
  margin: 0.8rem 0 1.5rem;
  color: var(--ref-muted);
  font-size: 0.82rem;
}

body.wp-theme-blocksy .ref-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.wp-theme-blocksy .ref-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--ref-navy);
  font-size: 0.7rem;
  font-weight: 800;
}

body.wp-theme-blocksy .ref-contact-form__wide,
body.wp-theme-blocksy .ref-contact-form button,
body.wp-theme-blocksy .ref-form-notice {
  grid-column: 1 / -1;
}

body.wp-theme-blocksy .ref-contact-form input,
body.wp-theme-blocksy .ref-contact-form textarea {
  width: 100%;
  border: 1px solid var(--ref-border);
  border-radius: 5px;
  color: var(--ref-text);
  background: #fff;
  font: inherit;
  font-weight: 500;
}

body.wp-theme-blocksy .ref-contact-form input {
  min-height: 46px;
}

body.wp-theme-blocksy .ref-contact-form textarea {
  resize: vertical;
}

body.wp-theme-blocksy .ref-contact-form input:focus,
body.wp-theme-blocksy .ref-contact-form textarea:focus {
  border-color: var(--ref-gold);
  outline: 3px solid rgba(215, 168, 79, 0.14);
}

body.wp-theme-blocksy .ref-contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--ref-navy);
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
}

body.wp-theme-blocksy .ref-contact-form__website {
  position: absolute;
  left: -10000px;
}

body.wp-theme-blocksy .ref-form-notice {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 5px;
  font-size: 0.76rem;
}

body.wp-theme-blocksy .ref-form-notice--success {
  color: #17663b;
  background: #eaf8f0;
}

body.wp-theme-blocksy .ref-form-notice--error {
  color: #8d2929;
  background: #fff0f0;
}

/* Dynamic archives and single views */
body.wp-theme-blocksy .ref-inner-page {
  min-height: 50vh;
  color: var(--ref-text);
  background: #fff;
}

body.wp-theme-blocksy .ref-inner-hero,
body.wp-theme-blocksy .ref-course-detail-hero,
body.wp-theme-blocksy .ref-article-hero {
  padding: 2.2rem 0 0;
}

body.wp-theme-blocksy .ref-inner-hero__grid {
  padding: 4.2rem 4.6rem;
}

body.wp-theme-blocksy .ref-inner-hero__copy {
  position: relative;
  z-index: 1;
}

body.wp-theme-blocksy .ref-inner-hero__copy h1 {
  max-width: 16ch;
  margin-top: 1rem;
}

body.wp-theme-blocksy .ref-inner-hero__copy > p {
  margin-top: 1.2rem;
}

body.wp-theme-blocksy .ref-inner-section {
  padding: 4.8rem 0;
}

body.wp-theme-blocksy .ref-inner-section--soft {
  background: #f7f8fa;
}

body.wp-theme-blocksy .ref-archive-toolbar,
body.wp-theme-blocksy .ref-section-heading-static {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
}

body.wp-theme-blocksy .ref-archive-toolbar h2,
body.wp-theme-blocksy .ref-section-heading-static h2 {
  margin-top: 0.55rem;
}

body.wp-theme-blocksy .ref-archive-toolbar form {
  position: relative;
  width: min(100%, 330px);
}

body.wp-theme-blocksy .ref-archive-toolbar input {
  width: 100%;
  min-height: 44px;
  padding: 0 3rem 0 1rem;
  border: 1px solid var(--ref-border);
  border-radius: 5px;
  background: #fff;
  font: inherit;
  font-size: 0.76rem;
}

body.wp-theme-blocksy .ref-archive-toolbar button {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--ref-navy);
  background: transparent;
  font-size: 1.2rem;
}

body.wp-theme-blocksy .ref-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

body.wp-theme-blocksy .ref-archive-card,
body.wp-theme-blocksy .ref-course-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 40, 83, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.wp-theme-blocksy .ref-archive-card:hover,
body.wp-theme-blocksy .ref-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(12, 40, 83, 0.11);
}

body.wp-theme-blocksy .ref-archive-card__media,
body.wp-theme-blocksy .ref-course-card__image {
  display: block;
  height: 210px;
  overflow: hidden;
}

body.wp-theme-blocksy .ref-archive-card__media img,
body.wp-theme-blocksy .ref-course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

body.wp-theme-blocksy .ref-archive-card:hover img,
body.wp-theme-blocksy .ref-course-card:hover img {
  transform: scale(1.035);
}

body.wp-theme-blocksy .ref-archive-card__body,
body.wp-theme-blocksy .ref-course-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

body.wp-theme-blocksy .ref-archive-card__meta,
body.wp-theme-blocksy .ref-course-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--ref-muted);
  font-size: 0.63rem;
}

body.wp-theme-blocksy .ref-archive-card__meta span:first-child,
body.wp-theme-blocksy .ref-course-card__category {
  color: #8a6429;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.wp-theme-blocksy .ref-archive-card h2,
body.wp-theme-blocksy .ref-course-card h2,
body.wp-theme-blocksy .ref-course-card h3 {
  margin: 0.8rem 0 0;
  color: var(--ref-navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.4;
}

body.wp-theme-blocksy .ref-archive-card h2 a,
body.wp-theme-blocksy .ref-course-card h2 a,
body.wp-theme-blocksy .ref-course-card h3 a {
  color: var(--ref-navy) !important;
}

body.wp-theme-blocksy .ref-archive-card__body > p,
body.wp-theme-blocksy .ref-course-card__body > p {
  margin: 0.8rem 0 0;
  color: var(--ref-muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

body.wp-theme-blocksy .ref-text-link,
body.wp-theme-blocksy .ref-course-card__footer a,
body.wp-theme-blocksy .ref-section-heading-static > a {
  color: var(--ref-navy);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

body.wp-theme-blocksy .ref-text-link {
  margin-top: auto;
  padding-top: 1.3rem;
}

body.wp-theme-blocksy .ref-course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

body.wp-theme-blocksy .ref-course-card__category {
  align-self: flex-start;
  margin-top: -1.55rem;
  padding: 0.34rem 0.58rem;
  background: #fff9ec;
  font-size: 0.58rem;
}

body.wp-theme-blocksy .ref-course-card__meta {
  margin-top: 1rem;
}

body.wp-theme-blocksy .ref-course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.35rem;
}

body.wp-theme-blocksy .ref-course-card__footer strong {
  color: var(--ref-navy);
  font-size: 1.15rem;
}

body.wp-theme-blocksy .ref-course-filter-section {
  position: relative;
  z-index: 3;
  margin-top: -1.5rem;
}

body.wp-theme-blocksy .ref-course-filter {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.9fr)) auto;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(7, 29, 62, 0.14);
}

body.wp-theme-blocksy .ref-course-filter label {
  position: relative;
}

body.wp-theme-blocksy .ref-course-filter input,
body.wp-theme-blocksy .ref-course-filter select,
body.wp-theme-blocksy .ref-course-filter button {
  width: 100%;
  min-height: 44px;
  border-radius: 4px;
  font: inherit;
  font-size: 0.72rem;
}

body.wp-theme-blocksy .ref-course-filter input,
body.wp-theme-blocksy .ref-course-filter select {
  padding: 0 0.8rem;
  border: 1px solid var(--ref-border);
  color: var(--ref-muted);
  background: #fff;
}

body.wp-theme-blocksy .ref-course-filter__search input {
  padding-right: 2.5rem;
}

body.wp-theme-blocksy .ref-course-filter__search b {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  color: var(--ref-navy);
  font-size: 1.15rem;
  transform: translateY(-50%);
}

body.wp-theme-blocksy .ref-course-filter button {
  padding: 0 1rem;
  border: 0;
  color: var(--ref-navy);
  background: var(--ref-gold);
  font-weight: 800;
}

body.wp-theme-blocksy .ref-pagination {
  margin-top: 2.5rem;
}

body.wp-theme-blocksy .ref-pagination .nav-links {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
}

body.wp-theme-blocksy .ref-pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--ref-border);
  border-radius: 4px;
  color: var(--ref-navy);
  background: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

body.wp-theme-blocksy .ref-pagination .current {
  border-color: var(--ref-navy);
  color: #fff;
  background: var(--ref-navy);
}

body.wp-theme-blocksy .ref-empty-state {
  padding: 3rem;
  border: 1px solid var(--ref-border);
  border-radius: 8px;
  text-align: center;
  background: #f8f9fb;
}

body.wp-theme-blocksy .ref-course-detail-hero,
body.wp-theme-blocksy .ref-article-hero {
  color: #fff;
  background: linear-gradient(120deg, var(--ref-navy-deep), #10396d) !important;
}

body.wp-theme-blocksy .ref-inner-page > .ref-inner-section {
  background-image: none;
}

body.wp-theme-blocksy .ref-inner-page > .ref-inner-section--soft {
  background: #f7f8fa !important;
}

body.wp-theme-blocksy .ref-inner-page > .ref-inner-newsletter {
  background: #fbf8f1 !important;
}

body.wp-theme-blocksy .ref-course-detail-hero__grid,
body.wp-theme-blocksy .ref-article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 4rem;
  align-items: center;
  padding: 3.8rem 0 4.8rem;
}

body.wp-theme-blocksy .ref-course-detail-hero__copy h1,
body.wp-theme-blocksy .ref-article-hero__copy h1 {
  max-width: 17ch;
  margin: 0.95rem 0 1.2rem;
  font-size: clamp(2.35rem, 4vw, 4rem);
}

body.wp-theme-blocksy .ref-course-detail-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.8rem;
}

body.wp-theme-blocksy .ref-course-detail-hero__facts span {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

body.wp-theme-blocksy .ref-course-detail-hero__facts small,
body.wp-theme-blocksy .ref-course-price small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body.wp-theme-blocksy .ref-course-detail-hero__facts strong {
  color: #fff;
  font-size: 0.8rem;
}

body.wp-theme-blocksy .ref-course-detail-hero__media,
body.wp-theme-blocksy .ref-article-hero__media {
  position: relative;
  height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 180px 14px 14px 180px;
}

body.wp-theme-blocksy .ref-course-detail-hero__media img,
body.wp-theme-blocksy .ref-article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.wp-theme-blocksy .ref-course-price {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  min-width: 140px;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  color: var(--ref-navy);
  background: var(--ref-gold);
  box-shadow: 0 12px 32px rgba(7, 29, 62, 0.2);
}

body.wp-theme-blocksy .ref-course-price small {
  color: rgba(12, 40, 83, 0.65);
}

body.wp-theme-blocksy .ref-course-price strong {
  font-size: 1.65rem;
}

body.wp-theme-blocksy .ref-single-layout,
body.wp-theme-blocksy .ref-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 4rem;
  align-items: start;
}

body.wp-theme-blocksy .ref-prose {
  color: var(--ref-text);
  font-size: 0.95rem;
  line-height: 1.82;
}

body.wp-theme-blocksy .ref-prose h2 {
  margin: 2.2rem 0 0.9rem;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

body.wp-theme-blocksy .ref-prose > h2:first-of-type {
  margin-top: 0.75rem;
}

body.wp-theme-blocksy .ref-prose h3 {
  margin: 1.8rem 0 0.7rem;
  color: var(--ref-navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

body.wp-theme-blocksy .ref-prose p,
body.wp-theme-blocksy .ref-prose li {
  color: #4f5c70;
}

body.wp-theme-blocksy .ref-prose a {
  color: #946a27;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.wp-theme-blocksy .ref-sticky-card {
  position: sticky;
  top: 112px;
  padding: 1.8rem;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(140deg, var(--ref-navy-deep), #10396d);
  box-shadow: 0 18px 40px rgba(7, 29, 62, 0.15);
}

body.wp-theme-blocksy .ref-sticky-card h2 {
  margin: 0.8rem 0 1.2rem;
  color: #fff;
  font-size: 1.45rem;
}

body.wp-theme-blocksy .ref-sticky-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.65;
}

body.wp-theme-blocksy .ref-sticky-card .ref-button {
  width: 100%;
  margin-top: 1.5rem;
}

body.wp-theme-blocksy .ref-article-meta {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

body.wp-theme-blocksy .ref-archive-grid--related .ref-archive-card,
body.wp-theme-blocksy .ref-course-grid--related .ref-course-card {
  min-height: 100%;
}

body.wp-theme-blocksy .ref-inner-newsletter {
  padding: 2rem 0;
  background: #fbf8f1;
}

body.wp-theme-blocksy .ref-inner-newsletter__grid {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) minmax(380px, 0.95fr);
  gap: 1.4rem;
  align-items: center;
}

body.wp-theme-blocksy .ref-inner-newsletter__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--ref-border);
  border-radius: 50%;
  color: var(--ref-navy);
  background: #fff;
  font-size: 1.5rem;
}

body.wp-theme-blocksy .ref-inner-newsletter h2 {
  margin: 0.3rem 0 0.25rem;
  font-size: 1.15rem;
}

body.wp-theme-blocksy .ref-inner-newsletter p {
  margin: 0;
  color: var(--ref-muted);
  font-size: 0.76rem;
}

body.wp-theme-blocksy .ref-inner-newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}

body.wp-theme-blocksy .ref-inner-newsletter__form input,
body.wp-theme-blocksy .ref-inner-newsletter__form button {
  min-height: 46px;
  border-radius: 4px;
  font: inherit;
}

body.wp-theme-blocksy .ref-inner-newsletter__form input {
  width: 100%;
  padding: 0 0.95rem;
  border: 1px solid var(--ref-border);
  background: #fff;
}

body.wp-theme-blocksy .ref-inner-newsletter__form button {
  padding: 0 1.6rem;
  border: 0;
  color: #fff;
  background: var(--ref-navy);
  font-size: 0.68rem;
  font-weight: 800;
}

body.wp-theme-blocksy .ref-not-found__section {
  padding: 5rem 0;
  background: #f7f8fa !important;
}

body.wp-theme-blocksy .ref-not-found__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
  min-height: 480px;
  padding: 4.5rem;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(215, 168, 79, 0.18), transparent 24%),
    linear-gradient(120deg, var(--ref-navy-deep), #10396d);
  box-shadow: 0 22px 58px rgba(7, 29, 62, 0.18);
}

body.wp-theme-blocksy .ref-not-found__card h1 {
  max-width: 12ch;
  margin: 1rem 0 1.2rem;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

body.wp-theme-blocksy .ref-not-found__card p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

body.wp-theme-blocksy .ref-not-found__card > strong {
  color: rgba(215, 168, 79, 0.16);
  font-size: clamp(7rem, 17vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

body.wp-theme-blocksy .ref-not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  margin-top: 1.8rem;
}

body.wp-theme-blocksy .ref-not-found__actions > a:not(.ref-button) {
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

@media (max-width: 1040px) {
  body.wp-theme-blocksy .ref-elementor-hero,
  body.wp-theme-blocksy .ref-inner-hero__grid {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 2rem;
    padding: 3.5rem;
  }

  body.wp-theme-blocksy .ref-topic-cards,
  body.wp-theme-blocksy .ref-dynamic-card-grid--four .elementor-shortcode,
  body.wp-theme-blocksy .ref-course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.wp-theme-blocksy .ref-course-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.wp-theme-blocksy .ref-course-filter button {
    grid-column: span 2;
  }
}

@media (max-width: 840px) {
  body.wp-theme-blocksy .ref-inner-shell,
  body.wp-theme-blocksy .ref-inner-block {
    width: min(calc(100% - 2rem), 1280px) !important;
  }

  body.wp-theme-blocksy .ref-elementor-hero,
  body.wp-theme-blocksy .ref-inner-hero__grid,
  body.wp-theme-blocksy .ref-inner-faq-layout,
  body.wp-theme-blocksy .ref-contact-layout,
  body.wp-theme-blocksy .ref-rich-split,
  body.wp-theme-blocksy .ref-rich-split--reverse,
  body.wp-theme-blocksy .ref-course-detail-hero__grid,
  body.wp-theme-blocksy .ref-article-hero__grid,
  body.wp-theme-blocksy .ref-single-layout,
  body.wp-theme-blocksy .ref-article-layout {
    grid-template-columns: 1fr;
  }

  body.wp-theme-blocksy .ref-elementor-hero-aside,
  body.wp-theme-blocksy .ref-inner-hero__aside {
    min-height: 0;
  }

  body.wp-theme-blocksy .ref-faq-intro,
  body.wp-theme-blocksy .ref-contact-copy,
  body.wp-theme-blocksy .ref-sticky-card {
    position: static;
  }

  body.wp-theme-blocksy .ref-archive-grid,
  body.wp-theme-blocksy .ref-dynamic-card-grid .elementor-shortcode {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.wp-theme-blocksy .ref-course-detail-hero__media,
  body.wp-theme-blocksy .ref-article-hero__media {
    height: 330px;
    border-radius: 26px 26px 8px 8px;
  }

  body.wp-theme-blocksy .ref-inner-newsletter__grid {
    grid-template-columns: auto 1fr;
  }

  body.wp-theme-blocksy .ref-inner-newsletter__form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body.wp-theme-blocksy .ref-inner-shell,
  body.wp-theme-blocksy .ref-inner-block {
    width: calc(100% - 1rem) !important;
  }

  body.wp-theme-blocksy .ref-elementor-hero,
  body.wp-theme-blocksy .ref-inner-hero__grid {
    gap: 1.5rem;
    margin-top: 1rem !important;
    padding: 2.1rem 1.25rem;
    border-radius: 10px;
  }

  body.wp-theme-blocksy .ref-inner-title h1,
  body.wp-theme-blocksy .ref-inner-hero h1,
  body.wp-theme-blocksy .ref-course-detail-hero h1,
  body.wp-theme-blocksy .ref-article-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  body.wp-theme-blocksy .ref-elementor-hero-aside,
  body.wp-theme-blocksy .ref-inner-hero__aside {
    padding: 1.4rem;
  }

  body.wp-theme-blocksy .ref-inner-section-block,
  body.wp-theme-blocksy .ref-contact-layout,
  body.wp-theme-blocksy .ref-inner-faq-layout,
  body.wp-theme-blocksy .ref-inner-section {
    gap: 1.5rem;
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  body.wp-theme-blocksy .ref-inner-section-block--soft {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  body.wp-theme-blocksy .ref-topic-cards,
  body.wp-theme-blocksy .ref-topic-cards--three,
  body.wp-theme-blocksy .ref-method-stats,
  body.wp-theme-blocksy .ref-dynamic-card-grid .elementor-shortcode,
  body.wp-theme-blocksy .ref-dynamic-card-grid--four .elementor-shortcode,
  body.wp-theme-blocksy .ref-archive-grid,
  body.wp-theme-blocksy .ref-course-grid,
  body.wp-theme-blocksy .ref-course-filter,
  body.wp-theme-blocksy .ref-inner-newsletter__grid,
  body.wp-theme-blocksy .ref-inner-newsletter__form,
  body.wp-theme-blocksy .ref-contact-form {
    grid-template-columns: 1fr;
  }

  body.wp-theme-blocksy .ref-topic-cards article,
  body.wp-theme-blocksy .ref-dynamic-card-grid .card {
    min-height: 0;
  }

  body.wp-theme-blocksy .ref-inner-cta {
    grid-template-columns: 1fr;
    margin-bottom: 3.5rem !important;
    padding: 2rem 1.3rem;
  }

  body.wp-theme-blocksy .ref-inner-button,
  body.wp-theme-blocksy .ref-inner-button .elementor-button {
    width: 100%;
  }

  body.wp-theme-blocksy .ref-archive-toolbar,
  body.wp-theme-blocksy .ref-section-heading-static {
    flex-direction: column;
    align-items: flex-start;
  }

  body.wp-theme-blocksy .ref-archive-toolbar form {
    width: 100%;
  }

  body.wp-theme-blocksy .ref-course-filter button,
  body.wp-theme-blocksy .ref-contact-form__wide,
  body.wp-theme-blocksy .ref-contact-form button,
  body.wp-theme-blocksy .ref-inner-newsletter__form {
    grid-column: auto;
  }

  body.wp-theme-blocksy .ref-course-detail-hero,
  body.wp-theme-blocksy .ref-article-hero {
    padding-top: 0;
  }

  body.wp-theme-blocksy .ref-course-detail-hero__grid,
  body.wp-theme-blocksy .ref-article-hero__grid {
    gap: 2rem;
    padding: 2.6rem 0 3rem;
  }

  body.wp-theme-blocksy .ref-course-detail-hero__media,
  body.wp-theme-blocksy .ref-article-hero__media {
    height: 250px;
  }

  body.wp-theme-blocksy .ref-course-detail-hero__facts {
    gap: 1.2rem;
  }

  body.wp-theme-blocksy .ref-archive-card__media,
  body.wp-theme-blocksy .ref-course-card__image {
    height: 195px;
  }

  body.wp-theme-blocksy .ref-inner-newsletter__icon {
    width: 50px;
    height: 50px;
  }

  body.wp-theme-blocksy .ref-not-found__section {
    padding: 1rem 0 3.5rem;
  }

  body.wp-theme-blocksy .ref-not-found__card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 2.2rem 1.3rem;
  }

  body.wp-theme-blocksy .ref-not-found__card > strong {
    order: -1;
    font-size: 6rem;
  }

  body.wp-theme-blocksy .ref-not-found__actions,
  body.wp-theme-blocksy .ref-not-found__actions .ref-button {
    width: 100%;
  }
}
