/* Bereken-Thuisbatterij.nl - gedeelde artikel-styling (uit inline blocks geconsolideerd) */
.breadcrumb {
      padding: 16px 0;
      font-size: 14px;
      color: var(--text-muted);
    }
    .breadcrumb a { color: var(--text-muted); text-decoration: none; }
    .breadcrumb a:hover { color: var(--accent); }
    .breadcrumb span { margin: 0 6px; color: var(--border); }

    .article {
      background: var(--bg-white);
      border-radius: var(--radius);
      padding: 40px 48px 56px;
      margin-bottom: 40px;
      box-shadow: var(--shadow-sm);
      max-width: 760px;
    }

    .article h1 {
      font-family: var(--font-display);
      font-size: 32px;
      line-height: 1.2;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .article-meta {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 32px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border-light);
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .article h2 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--text);
      margin: 36px 0 12px;
      line-height: 1.3;
    }

    .article h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      margin: 28px 0 8px;
    }

    .article p {
      margin-bottom: 16px;
      line-height: 1.7;
      color: var(--text);
    }

    .article ul, .article ol {
      margin: 0 0 16px 20px;
      line-height: 1.7;
    }

    .article li { margin-bottom: 6px; }

    .article table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0 24px;
      font-size: 15px;
    }

    .article th {
      background: var(--accent-light);
      color: var(--accent);
      font-weight: 700;
      padding: 12px 16px;
      text-align: left;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .article td {
      padding: 10px 16px;
      border-bottom: 1px solid var(--border-light);
    }

    .article tr:last-child td { border-bottom: none; }

    .article strong { font-weight: 700; color: var(--text); }

    .article-cta {
      background: var(--accent);
      color: #fff;
      border-radius: var(--radius-sm);
      padding: 28px 32px;
      margin: 40px 0 36px;
      text-align: center;
    }

    .article-cta p {
      color: rgba(255,255,255,0.85);
      margin-bottom: 16px;
      font-size: 16px;
    }

    .article-cta strong { color: #fff; }

    .article-cta a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--cta);
      color: #fff;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: var(--radius-full);
      font-size: 16px;
      transition: all 0.2s ease;
      box-shadow: var(--shadow-cta);
    }

    .article-cta a:hover {
      background: var(--cta-hover);
      color: #fff;
      transform: translateY(-1px);
    }

    .related-articles {
      margin-top: 8px;
    }

    .related-articles h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 16px;
    }

    .related-articles .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .related-card {
      display: block;
      background: var(--bg-elevated);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
      padding: 20px;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .related-card:hover {
      border-color: var(--accent);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }

    .related-card .related-title {
      font-weight: 700;
      font-size: 15px;
      color: var(--accent);
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .related-card .related-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .footer {
      padding: 32px 0;
      background: var(--navy);
      color: rgba(255,255,255,0.5);
      font-size: 13px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-links {
      display: flex;
      gap: 20px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s ease;
    }

    .footer-links a:hover { color: #fff; }

    @media (max-width: 768px) {
      .article { padding: 24px 20px 36px; }
      .article h1 { font-size: 26px; }
      .article h2 { font-size: 20px; }
      .related-articles .related-grid { grid-template-columns: 1fr; }
      .article-meta { flex-direction: column; align-items: flex-start; gap: 4px; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }
