/* Custom styles to complement Tailwind */

@import url('https://fonts.googleapis.com/css2?family=Besley:wght@400;900&display=swap');

/* --- Base & Typography --- */
html { scroll-behavior: smooth; }
body {
    background-color: #1a1a1a;
    color: #f5f5f5;
    font-family: 'Besley', serif;
    overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Besley', serif; }
header h1 { margin: 0; font-size: 2.5rem; font-weight: 900; color: #ffd700; }
header p { font-size: 1.2rem; font-style: italic; color: #e2e2e2; margin-top: 5px; }

/* --- TV / FIFA Cards (shared) --- */
.tv-box {
    position: relative;
    border: 1px solid #4b5563;
    padding: 15px;
    border-radius: 10px;
    background: #2c2c2c;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.tv-box u { text-decoration-thickness: 2px; text-underline-offset: 4px; }
.tv-box h3 { margin: 12px 0 6px; font-size: 1.1rem; font-weight: 900; color: #ffd700; }
.tv-box h3 a { color: inherit; text-decoration: none; }
.tv-box h5 { margin: 0 0 8px; color: #e2e8f0; opacity: 0.9; }
.tv-box p { margin: 0; color: #e2e8f0; line-height: 1.55; font-size: 0.95rem; }

.tv-visual { position: relative; border-radius: 10px; overflow: hidden; background: #111827; }
.tv-visual img { display: block; width: 100%; height: auto; }

.metric-bubble {
    position: absolute;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    color: #ffd700;
    line-height: 1.05;
}
.metric-bubble span:first-child { font-weight: 900; font-size: 0.95rem; }
.metric-bubble span:last-child { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.9; }
.metric-bubble.revenue { top: 10px; }
.metric-bubble.sales { bottom: 10px; }

@media (max-width: 420px) {
    .metric-bubble { padding: 7px 9px; }
    .metric-bubble span:first-child { font-size: 0.9rem; }
}

/* --- Navigation Grid --- */
.navigation {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    list-style: none;
    padding: 10px;
    margin: 0;
    background-color: #1a1a1a;
    border-bottom: none;
    position: relative;
    z-index: 50;
}
.nav-link {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.nav-link i { font-size: 1.5rem; margin-bottom: 5px; flex: 0 0 auto; position: relative; transition: transform 0.2s ease; }
.nav-link:hover, .nav-link.active { color: #ffd700; transform: scale(1.1); }

/* Responsive Nav */
@media (max-width: 768px) {
    .navigation { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .navigation { grid-template-columns: repeat(3, 1fr); }
}

/* --- Header --- */
header.tegels-header { text-align: center; padding: 20px 0; background-color: #1a1a1a; position: relative; }

/* --- Light Mode (Webshop) --- */
body.mode-light { background-color: #ffffff; color: #111827; }
body.mode-light #view-tegels { padding-top: 10px; }

/* --- Sticky Cart Panel --- */
.cart-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 320px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #ffffff;
    border: 3px solid #4b0082;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 999;
    color: #1a1a1a;
    display: none; /* Hidden by default */
}
.cart-panel.open { display: block; transform: translateY(0); }
.cart-panel h2 { margin-top: 0; font-size: 1.4rem; color: #4b0082; border-bottom: 2px solid #eee; padding-bottom: 0.5rem; margin-bottom: 1rem; }
.cart-close-btn { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background-color: #fff1f1; color: #d32f2f; border: 2px solid #ef4444; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; transition: all 0.2s ease; margin-left: 8px; flex-shrink: 0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.cart-close-btn:hover { background-color: #ef4444; color: white; transform: rotate(90deg); }
.cart-close-btn:active { transform: rotate(90deg) scale(0.95); }

.cost-line { display: flex; justify-content: space-between; margin: 6px 0; font-size: 0.95rem; color: #333; }
.cost-line.total { font-weight: 900; font-size: 1.2rem; border-top: 2px solid #4b0082; padding-top: 10px; margin-top: 10px; }

.checkout-btn { width: 100%; margin-top: 16px; padding: 14px; font-size: 1.1rem; font-weight: 800; color: #ffd700; background: #4b0082; border: 2px solid #ffd700; border-radius: 50px; padding: 10px 18px; font-weight: 900; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); display: inline-flex; align-items: center; gap: 10px; animation: fadeIn 0.3s ease; cursor: pointer; transition: all 0.1s ease; text-align: center; justify-content: center; }
.checkout-btn:hover { background-color: #ffd700; color: #4b0082; border-color: #4b0082; outline: none; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); }
.checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; background: #666; box-shadow: none; transform: none; color: #ccc; border: none; }
.checkout-btn:active { transform: translateY(4px); box-shadow: 0 1px 0 #320e59, 0 3px 6px rgba(0, 0, 0, 0.4); }

.cart-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; padding: 10px; background: rgba(255, 215, 0, 0.1); border-radius: 5px; }
.cart-item-details { flex: 1; }
.cart-item-title { font-weight: bold; font-size: 0.9rem; color: #333; }
.cart-item-price { font-size: 0.85rem; color: #666; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.cart-item-controls button { width: 24px; height: 24px; border-radius: 4px; border: 1px solid #ddd; background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.cart-item-controls button:hover { background: #eee; }

/* --- Checkout Form --- */
.shipping-form label { display: block; margin-bottom: 4px; font-weight: 700; font-size: 0.8rem; color: #333; }
.shipping-form input, .shipping-form select { width: 100%; padding: 8px; border: 1px solid #bbb; border-radius: 4px; font-size: 0.9rem; box-sizing: border-box; background: #f9f9f9; }
.shipping-form input:focus { background: #fff; border-color: #4b0082; outline: none; }
.betaalkeuze { margin: 1.5rem 0; border: 1px solid #334155; padding: 1rem; border-radius: 8px; background: #ffffff; color: #111827; }
.betaalkeuze label { display: flex; align-items: center; padding: 0.8rem 0; cursor: pointer; font-weight: bold; color: #111827; }
.betaalkeuze input { margin-right: 1rem; width: 20px; height: 20px; }

/* --- Toggle Cart Button --- */
#cart-toggle-btn { position: fixed; bottom: 20px; right: 20px; z-index: 1000; background: #4b0082; color: #ffd700; border: 2px solid #ffd700; border-radius: 50px; padding: 10px 18px; font-weight: 900; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); display: inline-flex; align-items: center; gap: 10px; transition: transform 0.2s ease; cursor: pointer; }
#cart-toggle-btn:hover { transform: scale(1.05); }
#cart-toggle-btn:active { transform: translateY(1px); }

/* --- Accordions --- */
.accordion { width: 100%; max-width: 1000px; margin: 0 auto 40px; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background-color: #2c2c2c; border: 1px solid #4b5563; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); }
.accordion-trigger { width: 100%; text-align: left; padding: 16px 16px; display: flex; align-items: center; justify-content: space-between; background: transparent; border: 0; cursor: pointer; color: #e2e2e2; }
.accordion-trigger:focus-visible { outline: 3px solid rgba(255, 215, 0, 0.7); outline-offset: -3px; }
.accordion-trigger__text { min-width: 0; }
.accordion-title { font-size: 1.05rem; color: #ffd700; font-style: italic; font-weight: 900; margin: 0; }
.accordion-subtitle { margin: 6px 0 0; color: #e2e8f0; opacity: 0.9; font-size: 0.95rem; line-height: 1.4; }
.accordion-icon { width: 18px; height: 18px; position: relative; margin-left: 8px; flex-shrink: 0; transition: transform 0.2s ease; }
.accordion-icon::before { content: ''; display: block; width: 10px; height: 10px; border-right: 2px solid #ffd700; border-bottom: 2px solid #ffd700; transform: rotate(45deg); position: absolute; left: 3px; top: 3px; transition: transform 0.2s ease; }
.accordion-item[aria-expanded="true"] .accordion-icon { transform: rotate(180deg); }
.accordion-content { padding: 0 16px 16px; color: #e2e8f0; line-height: 1.6; font-size: 0.95rem; overflow: hidden; }
.accordion-content a { color: #ffd700; text-decoration: underline; }
.book-meta { list-style: none; padding: 10px 12px; margin: 12px 0 10px; border-radius: 8px; border: 1px solid rgba(255, 215, 0, 0.25); background: rgba(255, 215, 0, 0.08); color: #e2e8f0; font-size: 0.9rem; }
.book-meta li { margin: 6px 0; }
.book-meta strong { color: #ffd700; font-weight: 900; }

/* --- CV / About Page --- */
body.cv-page { background-color: #1a1a1a; }
.cv-main { padding: 28px 16px 40px; }
.cv-container { max-width: 800px; margin: 0 auto; background: #ffffff; color: #111827; padding: 20px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); border-radius: 10px; }
.cv-title { font-size: 24px; font-weight: 900; border-bottom: 2px solid #2980b9; padding-bottom: 8px; margin: 0 0 18px; color: #111827; text-align: center; text-decoration: none; }
.cv-section { margin: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 18px; }
.cv-section:last-child { border-bottom: none; }
.cv-section h3 { font-size: 20px; font-weight: 800; color: #2980b9; margin: 0 0 10px; }
.cv-section p { margin: 6px 0; line-height: 1.55; }
.cv-section ul { margin: 8px 0 0; padding-left: 20px; line-height: 1.6; }
.cv-section a { color: #2980b9; text-decoration: none; font-weight: 700; }
.cv-section a:hover { text-decoration: underline; }

/* --- Mixes & Edits --- */
.mix h3 { font-size: 1.05rem; font-weight: 900; color: #ffd700; font-style: italic; margin-top: 14px; border-bottom: 2px solid #eee; padding-bottom: 0.5rem; margin-bottom: 12px; }
.mix .description { font-size: 0.9rem; margin: 5px 0 15px; line-height: 1.5; color: #e2e8f0; }
.mix .description a { color: #ffd700; text-decoration: underline; }
.mix-embed { width: 100%; border: 0; border-radius: 10px; }
.mix-embed--youtube { aspect-ratio: 16 / 9; height: auto; }
.mix-embed--soundcloud { min-height: 166px; }
@media(min-width: 768px) {
    .mixes-2-on-1-row-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
    .mix-embed--youtube { min-height: 260px; }
}
.section-heading { font-size: 2rem; color: #FFD700; margin: 40px 0 20px; font-weight: 900; text-align: center; }

/* --- Tiles --- */
.tile { background-color: #fff; border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12); padding: 25px; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: transform 0.2s ease; text-transform: uppercase; color: #1a1a1a; position: relative;
    height: 100%;
}
.tile:hover { transform: translateY(-5px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); }
.tile img { width: 100%; height: 240px; object-fit: contain; border-radius: 8px; margin-bottom: 10px; }
.tile h3 { font-size: 1.1rem; color: #000; margin: 10px 0; font-weight: 900; text-align: left; width: 100%; }
.tile .price { font-size: 1.5rem; font-weight: 900; color: #4b0082; margin-top: 0; margin-bottom: 12px; }
.tile .conditions { background-color: #fdf2e9; padding: 10px; border: 1px solid #f5c6cb; border-radius: 5px; font-size: 0.85rem; color: #333; text-align: left; width: 100%; box-sizing: border-box; background: #f9f9f9;     margin-top: auto;
}
.tile .conditions p { margin: 4px 0; }
.kortings-regel { display: flex; justify-content: space-between; margin: 0.6rem 0; font-size: 0.95rem; color: #333; }
.kortings-regel .green { color: #28a745; font-weight: 700; }
.tile .add-to-cart-btn { display: block; width: 100%; background-color: #1a1a1a; color: #ffd700; padding: 12px; border: 2px solid #ffd700; border-radius: 50px; padding: 10px 18px; font-weight: 900; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); display: flex; flex-direction: column; align-items: center; gap: 10px; transition: all 0.2s ease; cursor: pointer; text-transform: uppercase; }
.tile .add-to-cart-btn:hover { background-color: #ffd700; color: #1a1a1a; border: 2px solid #1a1a1a; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5); }

.tile-gallery { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1280px; margin: 0 auto; align-items: stretch; }
@media (min-width: 640px) { .tile-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .tile-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Grid-wide alignment: keep title (max 2 lines) and price on the same vertical baseline across a row. */
.tile-gallery > .tile { align-items: stretch; }
.tile-gallery > .tile > h3 {
    margin: 8px 0 0;
    line-height: 1.15;
    min-height: 2.3em; /* 2 lines */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.tile-gallery > .tile > .price {
    margin-top: 6px;
    margin-bottom: 10px;
}
.tile-gallery > .tile > .description {
    width: 100%;
    margin: 0;
    line-height: 1.5;
}

body.cart-open .tile-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 768px) { body.cart-open .tile-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
body.cart-open #app-content { padding-right: 340px; transition: padding 0.3s ease; }
@media (max-width: 1024px) { body.cart-open #app-content { padding-right: 0; } }

/* --- GIFs Page --- */
body.gifs-page header.tegels-header { background-color: #1a1a1a; }
body.gifs-page footer { background-color: #1a1a1a; color: #9ca3af; }
body.gifs-page footer p { color: #9ca3af; }
body.gifs-page .intro-box { background-color: #2c2c2c; color: #f5f5f5; width: 100%; max-width: 900px; padding: 25px; border-radius: 10px; border: 1px solid #4b5563; margin: 0 auto 40px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); }
body.gifs-page .intro-box h2 { color: #ffd700; font-size: 1.65rem; margin-top: 0; font-weight: 900; }
body.gifs-page .intro-box p { margin: 0; line-height: 1.6; font-size: 0.95rem; }
body.gifs-page .intro-box .signature { text-align: right; font-style: italic; color: #ffd700; margin-top: 14px; font-weight: 700; }
.gif-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; }
.gif-item { position: relative; display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; overflow: hidden; }
.gif-item img { width: 100%; height: 100%; object-fit: cover; display: block; background: #111827; }
@media (max-width: 900px) { .gif-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .gif-gallery { grid-template-columns: repeat(2, 1fr); } }

/* --- Language Switcher --- */
.tegels-header { position: relative; }
.lang-switch { position: absolute; top: 12px; right: 12px; display: flex; gap: 8px; align-items: center; z-index: 20; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 9999px; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(0, 0, 0, 0.25); color: rgba(255, 255, 255, 0.92); font-weight: 900; letter-spacing: 0.02em; cursor: pointer; user-select: none; }
.lang-btn:hover { filter: brightness(1.08); }
.lang-btn:focus { outline: 2px solid rgba(250, 204, 21, 0.9); outline-offset: 2px; }
.lang-btn.is-active { background: rgba(250, 204, 21, 0.95); border-color: rgba(250, 204, 21, 0.95); color: #111827; }
.lang-flag { font-size: 14px; line-height: 1; }
.lang-code { font-size: 12px; line-height: 1; }
body.mode-light .lang-btn { background: rgba(255, 255, 255, 0.72); border-color: rgba(15, 23, 42, 0.18); color: rgba(15, 23, 42, 0.92); }
body.mode-light .lang-btn.is-active { background: rgba(250, 204, 21, 0.95); border-color: rgba(250, 204, 21, 0.95); color: #111827; }

/* --- Post Views (SPA) --- */
.view-section { display: none; animation: fadeIn 0.3s ease-in-out; }
.view-section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- Posts --- */
.post { background-color: #2c2c2c; border: 1px solid #4b5563; border-radius: 10px; padding: 25px; margin-bottom: 30px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); }
.post h2 { font-size: 1.8rem; font-weight: bold; color: white; margin-bottom: 0.5rem; }
.post h3 { font-size: 1.2rem; color: #FFD700; font-style: italic; margin-top: 5px; }
.post .date { font-size: 0.85rem; color: #9ca3af; margin-bottom: 1.5rem; }
.post-content { color: #e2e8f0; line-height: 1.6; font-size: 0.95rem; }
.post-content a { color: #ffd700; text-decoration: underline; }

/* PDF Simulation in Post */
.pdf-page-visual {
    background-color: #fdfbf7;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}
.pdf-page-visual::before {
    /* Subtle paper texture */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* --- Wijsgeren (Heroes) --- */
body.wijsgeren-page {
    /* Indigo/spacey backdrop for the heroes grid */
    background:
        radial-gradient(circle at 20% 10%, rgba(109, 40, 217, 0.22), transparent 45%),
        radial-gradient(circle at 85% 35%, rgba(250, 204, 21, 0.10), transparent 55%),
        #1a1a2e;
}

body.wijsgeren-page .helden-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px 0 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    body.wijsgeren-page .helden-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}

body.wijsgeren-page .helden-card {
    background: #2e1a47;
    border: 2px solid #ffd700;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

body.wijsgeren-page .helden-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.65);
}

body.wijsgeren-page .helden-card__img {
    width: 100%;
    height: clamp(200px, 42vw, 280px);
    object-fit: cover;
    display: block;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

body.wijsgeren-page .helden-card__body {
    padding: 15px;
}

body.wijsgeren-page .helden-card__title {
    color: #ffd700;
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

body.wijsgeren-page .helden-card__meta {
    color: #ffd700;
    font-family: 'Besley', serif;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0 0 15px;
    padding: 10px;
    background: rgba(255, 215, 0, 0.10);
    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 8px;
}

body.wijsgeren-page .helden-card__meta--placeholder {
    opacity: 0.75;
}

body.wijsgeren-page .helden-card__text {
    color: #ffffff;
    font-family: 'Besley', serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

body.wijsgeren-page .helden-card__text br {
    content: '';
}

@media (max-width: 420px) {
    body.wijsgeren-page .helden-card__body {
        padding: 14px;
    }

    body.wijsgeren-page .helden-card__meta {
        font-size: 0.9rem;
    }
}
