/**
 * CertStore Marketing Block Styles
 */

/* Hero Block */
.certstore-hero-block {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-trust-bullets {
  display: flex;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.hero-trust-bullets li::before {
  content: "✓ ";
  margin-right: 0.25rem;
}

/* Two Column Block */
.certstore-two-column-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.column {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.column-title {
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #667eea;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.column-header {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.column-body {
  margin-bottom: 1.5rem;
}

.column-body ul {
  list-style: none;
  padding: 0;
}

.column-body li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.column-body li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #667eea;
}

/* Steps Block */
.certstore-steps-block {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.steps-header {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  padding: 2rem;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 8px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #667eea;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-body {
  color: #6c757d;
}

/* Value Prop Block */
.certstore-value-prop-block {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.value-prop-header {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.value-prop-body {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.value-prop-bullets {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.value-prop-bullets li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.value-prop-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
}

/* Final CTA Block */
.certstore-final-cta-block {
  padding: 4rem 2rem;
  text-align: center;
  background: #f8f9fa;
}

.final-cta-header {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Styles */
.button {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.button--primary {
  background: #667eea;
  color: #fff;
}

.button--primary:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.button--secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.certstore-two-column-block .button,
.certstore-value-prop-block .button,
.certstore-final-cta-block .button--secondary {
  color: #667eea;
  border-color: #667eea;
  background: transparent;
}

.certstore-two-column-block .button:hover,
.certstore-final-cta-block .button--secondary:hover {
  background: #667eea;
  color: #fff;
}

/* Support Pages */
.certstore-support-page-block {
  max-width: 1200px;
  margin: 2rem auto 3rem;
  padding: 0 1.25rem;
}

.support-hero {
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.82), rgba(30, 64, 175, 0.78));
  background-position: center;
  background-size: cover;
  color: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.22);
}

.support-hero__content {
  max-width: 760px;
}

.support-eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.support-headline {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #fff;
}

.support-intro {
  margin: 1rem 0 1.25rem;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
}

.support-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.support-highlights li {
  padding-left: 1.45rem;
  position: relative;
}

.support-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #86efac;
  font-weight: 700;
}

.support-cta-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.certstore-support-page-block .button--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

.certstore-support-page-block .button--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.support-cards {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.support-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.support-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.support-card__body {
  margin: 0;
  color: #334155;
  line-height: 1.55;
}

/* =========================================================
   FAQ Carousel Block
   ========================================================= */

.certstore-faq-carousel {
  position: relative;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Track: all slides stack in the same grid cell; only .is-active is visible */
.faq-carousel__track {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-rows: 1fr;
  /* Prevent layout shift when slides have different heights */
  min-height: 10rem;
}

.faq-carousel__slide {
  grid-row: 1;
  grid-column: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
}

.faq-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
}

/* Row plugin renders field_question as h3.faq-question and field_answer as div.faq-answer */
.faq-carousel__slide .faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.faq-carousel__slide .faq-answer {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

/* Source attribution is useful on the full FAQ page but adds noise in the
   compact carousel card — hide the trailing <p><em>Source: …</em></p>. */
.faq-carousel__slide .faq-answer p:last-child em:only-child {
  display: none;
}

.faq-carousel__slide .faq-answer p:last-child:has(em:only-child) {
  display: none;
}

/* Controls row */
.faq-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.faq-carousel__btn {
  background: none;
  border: 2px solid #667eea;
  color: #667eea;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.faq-carousel__btn:hover,
.faq-carousel__btn:focus-visible {
  background: #667eea;
  color: #fff;
  outline: none;
}

.faq-carousel__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.35);
}

.faq-carousel__dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
}

.faq-carousel__dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.faq-carousel__dot.is-active {
  background: #667eea;
  transform: scale(1.25);
}

.faq-carousel__dot:focus-visible {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* No-JS fallback: show all slides stacked */
.no-js .faq-carousel__slide {
  opacity: 1;
  visibility: visible;
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2rem;
  }
  
  .hero-subheadline {
    font-size: 1rem;
  }
  
  .certstore-two-column-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-buttons,
  .final-cta-buttons {
    flex-direction: column;
  }
  
  .button {
    width: 100%;
    max-width: 300px;
  }

  .certstore-support-page-block {
    margin-top: 1rem;
  }

  .support-hero {
    padding: 2rem 1.25rem;
  }

  .support-headline {
    font-size: 1.6rem;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }
}

/* Remove Olivero theme background */
body {
  background: transparent !important;
  background-color: transparent !important;
}

.site-wrapper,
#main-wrapper,
.layout-container {
  background: transparent !important;
  background-color: transparent !important;
}

/* =========================================================
   Mailing List Block
   ========================================================= */

.certstore-mailing-list-block {
  padding: 2rem 1.5rem;
  color: #f8f8f8;
}

.mailing-list-headline {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.mailing-list-subtext {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 1rem;
}

.mailing-list-input-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mailing-list-input {
  flex: 1 1 200px;
  padding: 0.5rem 0.75rem;
  border: 1px solid #555;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
}

.mailing-list-input::placeholder {
  color: #aaa;
}

.mailing-list-button {
  padding: 0.5rem 1.25rem;
  white-space: nowrap;
}

/* =========================================================
   Social Media Block
   ========================================================= */

.certstore-social-media-block {
  padding: 2rem 1.5rem;
  color: #f8f8f8;
}

.social-media-headline {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.social-media-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-media-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.social-media-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  flex-shrink: 0;
}

.social-media-link--linkedin {
  background-color: #0a66c2;
}

.social-media-icon--linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20.45 20.45h-3.56v-5.57c0-1.33-.03-3.04-1.85-3.04-1.86 0-2.15 1.45-2.15 2.94v5.67H9.33V9h3.42v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.61 0 4.28 2.38 4.28 5.48v6.26zM5.32 7.43a2.07 2.07 0 110-4.14 2.07 2.07 0 010 4.14zM7.1 20.45H3.55V9H7.1v11.45z'/%3E%3C/svg%3E");
}

.social-media-link--twitter {
  background-color: #1d9bf0;
}

.social-media-icon--twitter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.9 2H22l-6.77 7.73L23 22h-6.1l-4.78-6.25L6.65 22H3.54l7.24-8.27L1 2h6.25l4.32 5.7L18.9 2zm-1.07 18h1.69L6.33 3.9H4.51L17.83 20z'/%3E%3C/svg%3E");
}

.social-media-link--facebook {
  background-color: #1877f2;
}

.social-media-icon--facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M13.5 22v-8h2.7l.4-3h-3.1V9.1c0-.9.3-1.5 1.5-1.5h1.7V4.9c-.3 0-1.2-.1-2.4-.1-2.4 0-4 1.4-4 4.2V11H8v3h2.3v8h3.2z'/%3E%3C/svg%3E");
}

.social-media-link--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-media-icon--instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 7a5 5 0 100 10 5 5 0 000-10zm0 8.2A3.2 3.2 0 1112 8.8a3.2 3.2 0 010 6.4zm6.4-8.3a1.2 1.2 0 11-2.4 0 1.2 1.2 0 012.4 0zM12 2.5c3.1 0 3.5 0 4.7.1 1.1.1 1.7.2 2.1.4.5.2.9.4 1.3.8.4.4.6.8.8 1.3.2.4.3 1 .4 2.1.1 1.2.1 1.6.1 4.7s0 3.5-.1 4.7c-.1 1.1-.2 1.7-.4 2.1-.2.5-.4.9-.8 1.3-.4.4-.8.6-1.3.8-.4.2-1 .3-2.1.4-1.2.1-1.6.1-4.7.1s-3.5 0-4.7-.1c-1.1-.1-1.7-.2-2.1-.4a3.4 3.4 0 01-2.1-2.1c-.2-.4-.3-1-.4-2.1-.1-1.2-.1-1.6-.1-4.7s0-3.5.1-4.7c.1-1.1.2-1.7.4-2.1.2-.5.4-.9.8-1.3.4-.4.8-.6 1.3-.8.4-.2 1-.3 2.1-.4 1.2-.1 1.6-.1 4.7-.1zm0 1.8c-3 0-3.4 0-4.6.1-1 .1-1.5.2-1.9.3-.4.2-.7.3-1 .6-.3.3-.4.6-.6 1-.1.4-.3.9-.3 1.9-.1 1.2-.1 1.5-.1 4.6s0 3.4.1 4.6c.1 1 .2 1.5.3 1.9.2.4.3.7.6 1 .3.3.6.4 1 .6.4.1.9.3 1.9.3 1.2.1 1.5.1 4.6.1s3.4 0 4.6-.1c1-.1 1.5-.2 1.9-.3.4-.2.7-.3 1-.6.3-.3.4-.6.6-1 .1-.4.3-.9.3-1.9.1-1.2.1-1.5.1-4.6s0-3.4-.1-4.6c-.1-1-.2-1.5-.3-1.9-.2-.4-.3-.7-.6-1-.3-.3-.6-.4-1-.6-.4-.1-.9-.3-1.9-.3-1.2-.1-1.5-.1-4.6-.1z'/%3E%3C/svg%3E");
}

/* =========================================================
   Contact Form Block
   ========================================================= */

.certstore-contact-form-block {
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-headline {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-form-subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.75rem;
}

.contact-form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.contact-form-row .contact-form-field {
  flex: 1 1 200px;
}

.contact-form-field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.contact-form-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.contact-form-input {
  padding: 0.6rem 0.85rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.contact-form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-actions {
  margin-top: 0.5rem;
}

.contact-form-submit {
  padding: 0.65rem 2rem;
  font-size: 1rem;
}

.contact-form-mailto {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #666;
}

.contact-form-email-link {
  color: #667eea;
  text-decoration: none;
}

.contact-form-email-link:hover {
  text-decoration: underline;
}

.contact-form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.contact-form-status.is-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-form-status.is-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* =========================================================
   How It Works page — node/23 — visual redesign
   ========================================================= */

.page-node-23 .node__content {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* The body field wrapper */
.page-node-23 .node__content .field__item {
  counter-reset: step-counter 0;
}

/* Intro h2 */
.page-node-23 .node__content .field__item > h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #667eea;
}

/* Intro paragraph */
.page-node-23 .node__content .field__item > p:first-of-type {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Step h3 cards — first 3 h3s */
.page-node-23 .node__content .field__item > h3 {
  position: relative;
  background: #f8f9ff;
  border-left: 4px solid #667eea;
  border-radius: 0 8px 0 0;
  margin: 1.75rem 0 0 0;
  padding: 1.1rem 1.5rem 0.75rem 4.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  counter-increment: step-counter;
}

.page-node-23 .node__content .field__item > h3::before {
  content: counter(step-counter);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  background: #667eea;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

/* "Why This Matters" — 4th h3 */
.page-node-23 .node__content .field__item > h3:nth-of-type(4) {
  background: #fff7ed;
  border-left-color: #f59e0b;
  padding-left: 1.5rem;
  margin-top: 2.5rem;
  counter-increment: none;
}

.page-node-23 .node__content .field__item > h3:nth-of-type(4)::before {
  display: none;
}

/* Paragraph body for numbered step cards */
.page-node-23 .node__content .field__item > h3:not(:nth-of-type(4)) + p {
  background: #f8f9ff;
  border-left: 4px solid #667eea;
  border-top: none;
  border-radius: 0 0 8px 0;
  margin: 0 0 0 0;
  padding: 0.25rem 1.5rem 1rem 4.5rem;
  color: #444;
  line-height: 1.7;
  font-size: 0.97rem;
}

/* "Why This Matters" bullet list */
.page-node-23 .node__content .field__item > ul {
  list-style: none;
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  border-radius: 0 0 8px 0;
  margin: 0 0 1.75rem;
  padding: 0.75rem 1.5rem 1rem 2.5rem;
}

.page-node-23 .node__content .field__item > ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  color: #7c4a00;
  font-weight: 500;
}

.page-node-23 .node__content .field__item > ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
}

/* =========================================================
   Verify page — node/20 — visual redesign
   ========================================================= */

.page-node-20 .node__content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.page-node-20 .node__content .field__item > h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #667eea;
}

.page-node-20 .node__content .field__item > p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* "What You'll See" heading */
.page-node-20 .node__content .field__item > h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #667eea;
  margin-bottom: 0.75rem;
}

/* Info cards grid */
.page-node-20 .node__content .field__item > ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.page-node-20 .node__content .field__item > ul li {
  background: #f0f4ff;
  border: 1px solid #d0d9f5;
  border-radius: 8px;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  position: relative;
  font-weight: 500;
  color: #2d3a6b;
  font-size: 0.95rem;
}

.page-node-20 .node__content .field__item > ul li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-weight: 700;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .page-node-20 .node__content .field__item > ul {
    grid-template-columns: 1fr;
  }

  .page-node-23 .node__content .field__item > h3,
  .page-node-23 .node__content .field__item > h3:not(:nth-of-type(4)) + p {
    padding-left: 1.25rem;
  }

  .page-node-23 .node__content .field__item > h3::before {
    display: none;
  }
}
