:root {
  --interest-primary: #0077c8;
  --interest-primary-dark: #005fa3;
  --interest-accent: #00aeef;
  --interest-highlight: #ffc107;
  --interest-faq: #be3144;
  --interest-ink: #102a43;
  --interest-muted: #5f6f7f;
  --interest-border: #d8eaf5;
  --interest-surface: #ffffff;
  --interest-canvas: #f4f9fc;
  --interest-soft: #eaf7fd;
  --interest-shadow: 0 10px 30px rgba(0, 95, 163, 0.1);
}

.interest-blog-post,
.interest-blog-archive {
  background: var(--interest-canvas);
}

.interest-blog-post .wd-page-title {
  display: none;
}

.interest-blog-post .post-single-page {
  color: var(--interest-ink);
}

.interest-blog-post .wd-single-post-header {
  position: relative;
  overflow: hidden;
  margin-bottom: 42px;
  padding: clamp(46px, 6vw, 78px) clamp(22px, 5vw, 58px);
  border: 2px solid rgba(0, 174, 239, 0.55);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 8% 94%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, var(--interest-primary), var(--interest-primary-dark));
  box-shadow: 0 16px 44px rgba(0, 95, 163, 0.18);
  color: #fff;
  text-align: center;
}

.interest-blog-post .wd-single-post-header::before,
.interest-blog-post .wd-single-post-header::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: '';
  pointer-events: none;
}

.interest-blog-post .wd-single-post-header::before {
  top: -70px;
  inset-inline-end: -60px;
  width: 230px;
  height: 230px;
}

.interest-blog-post .wd-single-post-header::after {
  bottom: -50px;
  inset-inline-start: -45px;
  width: 170px;
  height: 170px;
}

.interest-blog-post .wd-single-post-header > * {
  position: relative;
  z-index: 1;
}

.interest-blog-post .wd-single-post-header .wd-post-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 40px;
  margin-bottom: 18px;
  padding: 7px 18px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
  line-height: 1.4;
  overflow: visible;
  text-align: center;
}

.interest-blog-post .wd-single-post-header .wd-post-cat a,
.interest-blog-post .wd-single-post-header .wd-post-meta,
.interest-blog-post .wd-single-post-header .wd-post-meta a {
  color: rgba(255, 255, 255, 0.92);
}

.interest-blog-post .wd-single-post-header .wd-post-cat a {
  display: inline-flex;
  align-items: center;
  height: auto;
  line-height: 1.4;
}

.interest-blog-post .wd-single-post-header .wd-entities-title {
  max-width: 980px;
  margin-inline: auto;
  color: #ffff00;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.26);
  text-wrap: balance;
}

.interest-blog-post .wd-single-post-header .wd-post-meta {
  margin-top: 20px;
}

.interest-blog-post .wd-single-post-header .wd-single-post-img {
  overflow: hidden;
  margin: 34px auto 0;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
}

.interest-blog-post .wd-single-post-header .wd-single-post-img img {
  display: block;
  width: 100%;
  height: auto;
}

.interest-blog-post .wd-entry-content {
  width: 100%;
  max-width: 950px;
  margin-inline: auto;
  color: var(--interest-ink);
  font-size: 17px;
  line-height: 1.8;
}

.interest-auto-layout {
  display: grid;
  gap: 40px;
}

.interest-section-card {
  position: relative;
  overflow: visible;
  padding: clamp(26px, 4vw, 40px);
  border: 2px solid var(--interest-primary);
  border-radius: 20px;
  background: var(--interest-surface);
  box-shadow: var(--interest-shadow);
}

.interest-section-card > :first-child:not(.interest-card-label) {
  margin-top: 0;
}

.interest-section-card > :last-child {
  margin-bottom: 0;
}

.interest-card-label {
  display: inline-flex;
  position: relative;
  top: -56px;
  margin-bottom: -30px;
  padding: 7px 20px;
  border: 2px solid var(--interest-accent);
  border-radius: 10px;
  background: var(--interest-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.interest-section-card h2 {
  margin: 0 0 28px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--interest-accent);
  color: var(--interest-primary);
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 800;
  line-height: 1.45;
  scroll-margin-top: 120px;
}

.interest-section-card h3 {
  margin: 32px 0 18px;
  padding-inline-start: 15px;
  border-inline-start: 5px solid var(--interest-accent);
  color: var(--interest-primary-dark);
  font-size: clamp(20px, 2.6vw, 24px);
  line-height: 1.5;
  scroll-margin-top: 120px;
}

.interest-section-card h4 {
  line-height: 1.7;
}

.interest-section-card p,
.interest-section-card ul,
.interest-section-card ol,
.interest-section-card figure,
.interest-section-card blockquote,
.interest-section-card details {
  margin-block: 0 20px;
}

.interest-section-card ul,
.interest-section-card ol {
  padding-inline-start: 0;
  padding-inline-end: 24px;
}

.interest-section-card li {
  margin-bottom: 10px;
}

.interest-section-card li::marker {
  color: var(--interest-primary);
  font-weight: 800;
}

.interest-section-card a {
  color: var(--interest-primary-dark);
  font-weight: 700;
  text-decoration-color: rgba(0, 119, 200, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.interest-section-card a:hover,
.interest-section-card a:focus-visible {
  color: var(--interest-primary);
  text-decoration-color: currentColor;
}

.interest-section-card img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.interest-section-card blockquote {
  padding: 22px 24px;
  border: 1px solid var(--interest-accent);
  border-inline-start: 5px solid var(--interest-primary);
  border-radius: 12px;
  background: var(--interest-soft);
}

.interest-section-card table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-block: 26px;
  overflow-x: auto;
  border: 1px solid var(--interest-border);
  border-radius: 12px;
  border-collapse: collapse;
  -webkit-overflow-scrolling: touch;
}

.interest-section-card table th,
.interest-section-card table tr:first-child td {
  min-width: 170px;
  padding: 15px;
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--interest-primary);
  color: #fff;
  font-weight: 800;
}

.interest-section-card table td {
  min-width: 170px;
  padding: 14px 15px;
  border-color: var(--interest-border);
  background: #fff;
  vertical-align: top;
}

.interest-section-card table tr:nth-child(even) td {
  background: var(--interest-canvas);
}

.interest-price-card {
  background: linear-gradient(135deg, #fff, #f5fbff);
}

.interest-cta-card {
  background:
    radial-gradient(circle at 0 0, rgba(0, 174, 239, 0.13), transparent 34%),
    #fff;
}

.interest-faq-card,
.interest-summary-card {
  border-color: var(--interest-faq);
}

.interest-faq-card h2,
.interest-summary-card h2 {
  border-bottom-color: var(--interest-highlight);
  color: var(--interest-faq);
}

.interest-faq-card details {
  overflow: hidden;
  margin-bottom: 12px;
  padding: 0;
  border: 1px solid #b8e3ff;
  border-radius: 15px;
  background: #f0f9ff;
}

.interest-faq-card summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: var(--interest-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
  list-style: none;
  cursor: pointer;
}

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

.interest-faq-card summary::after {
  position: absolute;
  top: 50%;
  inset-inline-start: 20px;
  color: var(--interest-primary);
  content: '▼';
  font-size: 15px;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.interest-faq-card details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.interest-faq-card .interest-faq-answer {
  padding: 0 20px 18px;
  color: var(--interest-ink);
  font-size: 17px;
  line-height: 2;
}

.interest-faq-card .interest-faq-answer > :last-child {
  margin-bottom: 0;
}

.interest-has-inline-design .wd-page-title,
.interest-has-inline-design .wd-single-post-header {
  display: none;
}

.interest-has-inline-design .wd-entry-content {
  max-width: none;
  margin: 0;
  font-size: 16px;
}

.interest-blog-archive .wd-page-title {
  padding-block: clamp(48px, 7vw, 78px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, var(--interest-primary), var(--interest-primary-dark));
}

.interest-blog-archive .wd-page-title .entry-title {
  color: #ffff00;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.22);
}

.interest-blog-archive .wd-post {
  overflow: hidden;
  border: 2px solid var(--interest-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--interest-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.interest-blog-archive .wd-post:hover {
  border-color: var(--interest-accent);
  box-shadow: 0 16px 34px rgba(0, 95, 163, 0.16);
  transform: translateY(-4px);
}

.interest-blog-archive .wd-post .wd-entities-title a {
  color: var(--interest-primary-dark);
}

.interest-blog-archive .wd-post .wd-post-cat a {
  color: var(--interest-primary);
  font-weight: 800;
}

.interest-blog-archive .wd-post .read-more-section a,
.interest-blog-archive .wd-post .btn-read-more {
  border-radius: 10px;
  background: var(--interest-primary);
  color: #fff;
}

@media (max-width: 767px) {
  .interest-blog-post .wd-single-post-header {
    margin-bottom: 26px;
    padding: 42px 18px;
    border-radius: 16px;
  }

  .interest-blog-post .wd-single-post-header .wd-single-post-img {
    margin-top: 24px;
  }

  .interest-auto-layout {
    gap: 30px;
  }

  .interest-section-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .interest-card-label {
    top: -42px;
    margin-bottom: -20px;
  }

  .interest-section-card table th,
  .interest-section-card table td,
  .interest-section-card table tr:first-child td {
    min-width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .interest-blog-archive .wd-post {
    transition: none;
  }
}
