:root{
  --disclaimer-max-width: 920px;
}
/* Header met logo */

.oost-header{
    margin-bottom: 30px;
}

.oost-logo{
    height: 42px;
}

/* Desktop layout */
.oost-container{
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.oost-content{
    max-width: 700px;
}

.oost-side img{
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 900px){

    .oost-container{
        grid-template-columns: 1fr;
    }
}
body{
  max-width: var(--disclaimer-max-width);
  margin: 0 auto;
  padding: 24px 16px 48px;
}

/* Improve readability for a text-heavy page */
p, li, sub{
  line-height: 1.6;
}

h1{
  margin-top: 8px;
  margin-bottom: 16px;
}

ul{
  margin-top: 8px;
  margin-bottom: 16px;
  padding-left: 20px;
}

img{
  max-width: 100%;
  height: auto;
}

sub{
  display: block;
  margin-top: 16px;
  opacity: 0.85;
  font-size: 0.9em;
}

html, body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #0f172a;            /* deep slate */
  background: #ffffff;
}

h1, h2, h3{
  color: #0b1220;
  letter-spacing: -0.01em;
}

a{
  color: #c1121f;
  text-decoration: none;
}
a:hover, a:focus{
  text-decoration: underline;
}

/* Make bold text match the same tone */
b, strong{
  color: #0b1220;
}

/* Optional: subtle divider style if you add <hr> in content later */
hr{
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  margin: 20px 0;
}

/* --- Hero / landing image (Oost-like card) --- */
.oost-hero{
  margin: 8px 0 20px;
}

.oost-hero img{
  width: 100%;
  display: block;
  border-radius: 16px;
  /* soft card shadow */
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* If the image is very tall, cap it a bit while keeping it pretty */
@media (min-width: 768px){
  .oost-hero img{
    max-height: 520px;
    object-fit: cover;
    object-position: center;
  }
}
