:root {
 --page-bg: #FFFFFF;
 --panel-bg: #FDF4E8;
 --line: #c3d0e6;
 --text-main: #112135;
 --text-muted: #112135;
 --accent-start: #4b84e6;
 --accent-end: #2a63d1;
  
}

* {
 box-sizing: border-box;
}


body {
 margin: 0;
 font-family: "Space Grotesk", Arial, sans-serif;
 background: var(--page-bg);
 color: var(--text-main);
}

.page {
 min-height: 100vh;
 display: flex;
 flex-direction: column;
}

.site-header {
 width: min(1120px, 100% - 32px);
 margin: 0 auto; 
 border-bottom: 1px solid var(--line);
 padding: 4px 0px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.brand {
 display: grid;
 grid-template-columns: auto 1fr;
 column-gap: 12px;
 align-items: center;
}

.logo {
 width: 38px;
 height: 38px;
 object-fit: cover;
 display: block;
 grid-row: 1 / span 2;
}

.brand h1 {
 margin: 0;
 font-size: 1.25rem;
 font-weight: 700;
 grid-column: 2;
}

.brand p {
 margin: 2px 0 0;
 font-size: 0.82rem;
 color: var(--text-muted);
 grid-column: 2;
}

.header-actions {
 display: flex;
 align-items: center;
 gap: 6px;
}

.header-icon-button {
 width: 42px;
 height: 42px;
 border: 0;
 border-radius: 0;
 background: transparent;
 padding: 0;
 color: var(--text-main);
 text-decoration: none;
 cursor: pointer;
 display: grid;
 place-items: center;
}

main {
 width: min(1120px, 100% - 32px);
 margin: 20px auto;
}

h3 {margin:0;margin-top:8px;margin-bottom:8px;color:#666;}

.blog {
 width: min(1120px, 100% - 32px);
 margin: 20px auto 0;
 
}

.blog-titel {
 margin: 0 0 16px;
 font-size: 1.2rem;
}

.blog-lijst {
 list-style: none;
 margin: 0;
 padding: 0;
 display: grid;
 gap: 20px;
}

.blog-item { 
 padding-top: 8px;
}

.blog-item:first-child {
 border-top: 0;
 padding-top: 0;
}

.blog-link {
 display: inline-block;
 margin-bottom: 0px;
 font-size: 1.1rem;
 font-weight: 700;
 color: var(--accent-end);
 text-decoration: underline;
}

.blog-link:hover {
 text-decoration: underline;
}

.blog-excerpt {
 margin: 0;
 color: var(--text-muted);
}

.card.blog-card h2 a {
 color: #00419e;
}

.card.blog-card .blog-categorie {
 margin: 0;
 margin-bottom: 4px;
 font-size: 0.7rem;
 letter-spacing: 0.02em;
 color: var(--text-muted);
 flex: 0 0 auto;
}

.card.blog-card p {
 margin: 0;
}

.grid {
 display: grid;
 gap: 40px;
 grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
 .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
 }
}

@media (max-width: 620px) {
 .grid {
  grid-template-columns: 1fr;
 }
}

.card {
 background: #ffffff;
 border: 1px solid #c2c6d6;
 border-radius: 2px; 
 transition: border-color 0.2s ease, transform 0.2s ease;
 display: flex;
 flex-direction: column;
}

.card img {
 width: 100%;
 aspect-ratio: 16 / 10;
 object-fit: cover;
 display: block;height: 230px;
}

.card-body {
 padding: 12px;
 display: flex;
 flex-direction: column;
 flex: 1;
}

.card-body p {
 padding-bottom:12px;
}

.card-tags {
 display: flex;
 flex-wrap: wrap;
 gap: 6px;
 margin-bottom: 8px;
}

.badge {
 font-family: "JetBrains Mono", "Courier New", monospace;
 font-size: 0.73rem;
 line-height: 1;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 border-radius: 2px;
 padding: 6px 8px;
 background: rgba(47, 110, 231, 0.2);
 color: #00419e;
}

.badge-alt {
 background: rgba(108, 248, 187, 0.2);
 color: #005236;
}

.badge-paars {
 background: #E1D4E1;
 color: #360636;
}

.badge-oranje {
 background: #FAE2D5;
 color: #8B4019;
}

.badge-lifestyle {
 background: #ECE6CA;
  color: #4E3F01;
}



.card h2 {
 margin: 0;
 font-size: 1.02rem;
 font-weight: 600;
 color: #0b1c30;
}

.card p {
 margin: 8px 0 0;
 font-size: 0.9rem;
 line-height: 1.45;
 color: #424654;
 flex: 1;
}

.card-meta-row {
 margin-top: 0px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 8px;
}

.card-status-icon {
 font-size: 20px;
 line-height: 1;
 color: var(--text-muted);
}

.card-button {
 border: 1px solid #0055c9;
 background: transparent;
 color: #0055c9;
 border-radius: 2px;
 padding: 8px 16px;
 font-family: "Space Grotesk", Arial, sans-serif;
 font-size: 0.74rem; 
 letter-spacing: 0.05em;
 text-transform: uppercase;
 cursor: pointer;
 display: inline-flex;
 align-items: center;
 gap: 6px;
}

.card-button2 {
 border: 1px solid var(--text-muted);
 color: var(--text-muted);
}

.card-button .material-symbols-outlined {
 font-size: 16px;
 line-height: 1;
}

.card-button:hover {
 background: #0055c9;
 color: #ffffff;
}

.site-footer {
 width: min(1120px, 100% - 32px);
 margin: auto auto 0;
 border-top: 1px solid var(--line); 
 padding: 14px 0px;
 margin-top:8px;
font-size:0.8em;
}

.site-footer ul {
 margin: 0;
 padding: 0;
 list-style: none;
 display: flex;
 gap: 18px;
 flex-wrap: wrap;
}

.site-footer a {
 color: var(--text-muted);
 text-decoration: none; 
}

.site-footer a:hover,
.site-footer a:focus-visible {
 text-decoration: underline;
}


.ribbon {
  position: absolute;
  top: 18px;
  right: -10px;
  padding: 8px 14px;
  background-color: #c01c28;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.2);
  border-top-left-radius:2px;
  border-bottom-left-radius:2px;
  border-top-right-radius:2px;
}

.ribbon::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #86141c transparent transparent transparent;
}

.card {
  position: relative;
}
.ribbon a {text-decoration:none; color:white;}
.ribbon a:hover {text-decoration:underline;}
