.elementor-10925 .elementor-element.elementor-element-87ece9d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8dae76b *//* ============================================
   elitevieuw.nl – Blog Post CSS
   Identiek aan bestaande blogs
   ============================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --ev-bg:          #0b1020;
  --ev-surface:     #10162a;
  --ev-surface-2:   #122038;
  --ev-primary:     #25d366;
  --ev-primary-hover: #1eb954;
  --ev-text:        #ffffff;
  --ev-text-muted:  #a9b7cf;
  --ev-text-faint:  #64748b;
  --ev-border:      rgba(37, 211, 102, 0.2);
  --ev-link:        #0066cc;
  --ev-font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ev-radius:      12px;
  --ev-radius-sm:   8px;
}

/* Base */
body {
  background-color: var(--ev-bg);
  color: var(--ev-text-muted);
  font-family: var(--ev-font);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.ev-post-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* H1 */
h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--ev-text);
  line-height: 1.2;
  margin: 0 0 24px;
}

/* H2 */
h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--ev-text);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ev-border);
}

/* H3 */
h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ev-text);
  margin: 32px 0 12px;
}

/* Paragrafen */
p {
  color: var(--ev-text-muted);
  margin: 0 0 20px;
  max-width: 72ch;
}

/* Links */
a {
  color: var(--ev-link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: var(--ev-primary);
}

/* Lijsten */
ul, ol {
  padding-left: 24px;
  margin: 0 0 20px;
}
li {
  color: var(--ev-text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Hero afbeelding */
.ev-post-hero {
  width: 100%;
  border-radius: var(--ev-radius);
  margin-bottom: 40px;
  border: 1px solid var(--ev-border);
}

/* Tip / info box */
.ev-tip-box {
  background: var(--ev-surface);
  border-left: 4px solid var(--ev-primary);
  border-radius: var(--ev-radius-sm);
  padding: 20px 24px;
  margin: 32px 0;
  color: var(--ev-text-muted);
}
.ev-tip-box strong {
  color: var(--ev-primary);
}

/* Stappenlijst (genummerd) */
ol.ev-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}
ol.ev-steps li {
  counter-increment: step-counter;
  padding: 16px 16px 16px 56px;
  background: var(--ev-surface);
  border-radius: var(--ev-radius-sm);
  border: 1px solid var(--ev-border);
  margin-bottom: 12px;
  position: relative;
}
ol.ev-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ev-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA knop */
.ev-cta-btn {
  display: inline-block;
  background: var(--ev-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--ev-radius-sm);
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 12px;
}
.ev-cta-btn:hover {
  background: var(--ev-primary-hover);
  color: #fff;
  text-decoration: none;
}

/* CTA blok onderaan */
.ev-cta-block {
  background: var(--ev-surface);
  border: 1px solid var(--ev-border);
  border-radius: var(--ev-radius);
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}
.ev-cta-block h2 {
  border: none;
  margin-top: 0;
  font-size: 1.4rem;
  padding: 0 0 12px;
}

/* Responsive */
@media (max-width: 640px) {
  .ev-post-container { padding: 24px 16px 60px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .ev-cta-block { padding: 24px 16px; }
}/* End custom CSS */