/* ============================================================
   GSMhoesjesXL.be — Blogpost stijlen
   Plak dit in: WordPress > Uiterlijk > Aanpassen > Extra CSS
   ============================================================ */

/* Breadcrumb */
.gsmxl-breadcrumb {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 16px;
}
.gsmxl-breadcrumb a {
  color: #1d6ff2;
  text-decoration: none;
}
.gsmxl-breadcrumb a:hover { text-decoration: underline; }

/* Meta balk */
.gsmxl-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 24px;
  align-items: center;
}
.gsmxl-category {
  background: #1d6ff2;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Intro alinea */
.gsmxl-intro {
  font-size: 18px;
  color: #374151;
  line-height: 1.75;
  border-left: 4px solid #1d6ff2;
  padding-left: 20px;
  margin-bottom: 40px;
}

/* Inhoudsopgave */
.gsmxl-toc {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.gsmxl-toc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 12px;
}
.gsmxl-toc ol { padding-left: 20px; margin: 0; }
.gsmxl-toc li { margin-bottom: 6px; }
.gsmxl-toc a { color: #1d6ff2; font-size: 15px; text-decoration: none; }
.gsmxl-toc a:hover { text-decoration: underline; }

/* Stappenblokken */
.gsmxl-step {
  display: flex;
  gap: 18px;
  background: #f8fafc;
  border-left: 5px solid #1d6ff2;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 24px 0;
  align-items: flex-start;
}
.gsmxl-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #1d6ff2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}
.gsmxl-step h3 { margin-top: 0; font-size: 18px; }
.gsmxl-step p:last-child { margin-bottom: 0; }

/* Code stijl */
.gsmxl-post code {
  background: #eef2ff;
  color: #1452c8;
  padding: 2px 7px;
  border-radius: 5px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
}

/* Tip box */
.gsmxl-tip {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 5px solid #f0a500;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
}
.gsmxl-tip strong { display: block; margin-bottom: 4px; color: #92400e; }

/* Tabel */
.gsmxl-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.gsmxl-table-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }
.gsmxl-table-wrap thead th {
  background: #1d6ff2;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}
.gsmxl-table-wrap tbody tr:nth-child(even) { background: #f8fafc; }
.gsmxl-table-wrap tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}
.gsmxl-table-wrap tbody tr:last-child td { border-bottom: none; }

/* CTA blok */
.gsmxl-cta {
  background: linear-gradient(135deg, #1d6ff2 0%, #1452c8 100%);
  color: #fff;
  border-radius: 14px;
  padding: 40px 36px;
  margin: 56px 0;
  text-align: center;
}
.gsmxl-cta h2 { color: #fff; border: none; margin-top: 0; font-size: 26px; }
.gsmxl-cta p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.gsmxl-btn {
  display: inline-block;
  background: #f0a500;
  color: #111827;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gsmxl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  color: #111827;
}

/* FAQ accordion */
.gsmxl-faq {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.gsmxl-faq summary {
  font-weight: 700;
  font-size: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111827;
}
.gsmxl-faq summary::-webkit-details-marker { display: none; }
.gsmxl-faq summary::after {
  content: '+';
  font-size: 22px;
  color: #1d6ff2;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.gsmxl-faq[open] summary::after { transform: rotate(45deg); }
.gsmxl-faq p { padding: 0 22px 18px; font-size: 15px; color: #374151; margin: 0; }

/* Gerelateerde links */
.gsmxl-related { margin-top: 48px; padding-top: 32px; border-top: 2px solid #e5e7eb; }
.gsmxl-related h2 { margin-top: 0; font-size: 22px; }
.gsmxl-related ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.gsmxl-related li a {
  display: block;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  text-decoration: none;
  color: #1d6ff2;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.gsmxl-related li a:hover { background: #dbeafe; }

/* Responsive */
@media (max-width: 600px) {
  .gsmxl-cta { padding: 28px 20px; }
  .gsmxl-step { flex-direction: column; gap: 10px; }
  .gsmxl-meta { gap: 10px; }
}

.entry-content,
.post-content,
.wp-block-post-content {
    max-width: 100% !important;
    width: 100% !important;
}