:root {
  --yellow: #ffe84a;
  --yellow-bright: #ffd81a;
  --blue: #4a84ff;
  --blue-dark: #1f56cf;
  --text: #172033;
  --white: #ffffff;
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  --red: #d82222;
  --green: #1f8f3a;
  --milk: #f6f1e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  min-height: 100vh;
}

body.page-home {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(180deg, var(--yellow) 0%, var(--yellow-bright) 100%);
}

body.page-two {
  background: var(--milk);
  color: #000000;
}

body.page-gitaarles {
  background:
    linear-gradient(rgba(255, 232, 74, 0.74), rgba(255, 216, 26, 0.66)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 32%),
    url("homepage-achtergrond.jpg") center center / cover no-repeat fixed;
  color: #000000;
}

.page-two .content-page {
  min-height: calc(100vh - 40px);
  padding-top: 78px;
  padding-bottom: 12px;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 20;
}

.menu-toggle {
  min-width: 132px;
  height: 58px;
  border: 0;
  border-radius: 16px;
  background: var(--blue);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}

.menu-label {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  flex-shrink: 0;
}

.menu-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 999px;
}

.side-menu {
  position: absolute;
  top: 72px;
  left: 0;
  width: 250px;
  padding: 18px;
  background: var(--blue);
  color: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  font-family: Arial, Helvetica, sans-serif;
}

.side-menu.open {
  display: block;
}

.menu-title {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}

.menu-link {
  display: block;
  text-decoration: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.menu-link.active {
  background: rgba(255, 255, 255, 0.24);
}

.hero {
  min-height: calc(100vh - 64px);
  padding: 96px 40px 28px;
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: start;
}

.hero-text {
  margin-left: calc(10cm - 40px);
  max-width: 720px;
  padding-top: 12px;
}

.hero-title {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-label {
  margin: 16px 0 8px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}

.section-label-green {
  color: var(--green);
}

.section-label-red {
  color: var(--red);
}

.section-label-dark {
  color: #000000;
}

.hero-copy {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 15px;
  line-height: 1.56;
}

.hero-note {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.hero-note-dark {
  color: #000000;
}

.about-with-photo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: start;
  margin: 4px 0 4px;
}

.about-text-block {
  min-width: 0;
}

.profile-photo-card {
  margin: 8px 0 0;
  width: 100%;
}

.profile-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 4px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.26);
}

.green-text {
  color: var(--green);
  font-size: 19px;
  line-height: 1.45;
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
}

.contact-copy {
  margin-bottom: 8px;
}

.contact-line {
  margin: 0;
}

.email-pill {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid #000000;
  border-radius: 999px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.28);
}

.page-link-line {
  margin: calc(26px + 2cm) 0 0;
}

.page-link {
  color: #000000;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.page-link-main {
  font-size: 1em;
}

.page-link-sub {
  font-size: 0.66em;
  font-weight: 700;
}

.page-link:hover,
.page-link:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
}

.videos-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  padding-top: 4px;
}

.video-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  width: 100%;
}

.hero-video-wrap {
  width: min(360px, 29vw);
}

.video-large {
  width: min(470px, 36vw);
}

.video-small {
  width: min(228px, 17.3vw);
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.28);
}

.content-page {
  min-height: calc(100vh - 64px);
  padding: 110px 32px 30px;
}

.content-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 20px 0;
}

.back-link-wrap {
  margin: 0 0 28px;
}

.back-link {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.content-title {
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #000000;
}

.content-intro {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.65;
  color: #000000;
  max-width: 700px;
}

.topic-block {
  margin: 0 0 28px;
}

.topic-block h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
}

.topic-block p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
  max-width: 700px;
}

.site-footer {
  margin-top: 22px;
  padding: 14px 20px 16px;
  text-align: center;
  font-size: 12px;
  color: #555555;
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 1300px) {
  .hero-text {
    margin-left: max(80px, 4vw);
    max-width: 700px;
  }

  .about-with-photo {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 18px;
  }

  .video-large {
    width: min(430px, 35vw);
  }

  .video-small {
    width: min(210px, 17vw);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 96px 32px 34px;
  }

  .hero-text {
    margin-left: 32px;
    max-width: 760px;
  }

  .about-with-photo {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 18px;
  }

  .videos-column {
    align-items: flex-start;
    padding-left: 32px;
  }

  .video-row {
    flex-direction: column;
    width: auto;
  }

  .hero-video-wrap,
  .video-large,
  .video-small {
    width: min(620px, calc(100vw - 64px));
  }
}

@media (max-width: 860px) {
  .about-with-photo {
    grid-template-columns: 1fr;
  }

  .profile-photo-card {
    order: -1;
    max-width: 320px;
    margin: 6px 0 14px;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 16px;
    left: 16px;
  }

  .hero,
  .content-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-text,
  .videos-column {
    margin-left: 114px;
    padding-left: 0;
  }

  .hero-text {
    max-width: 100%;
  }

  .page-link {
    font-size: 21px;
  }

  .content-shell {
    padding: 0;
  }

  .content-title {
    font-size: 31px;
  }

  .content-intro,
  .topic-block p {
    font-size: 16px;
  }

  .topic-block h2 {
    font-size: 22px;
  }
}

body.modal-open {
  overflow: hidden;
}

.content-shell-wide {
  max-width: 1180px;
}

.terms-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 18px;
  margin: 0 0 32px;
}

.term-group-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 22px 22px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.term-group-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.25;
  color: #000000;
}

.term-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.term-chip {
  border: 2px solid #000000;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  padding: 10px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.term-chip:hover,
.term-chip:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-note-block {
  background: rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.page-note-block h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
}

.page-note-block p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
}

.term-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.term-modal.open {
  display: block;
}

.term-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

.term-modal-panel {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 9vh auto 0;
  padding: 0 18px;
}

.term-modal-close {
  position: absolute;
  top: 10px;
  right: 28px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.term-balloon {
  position: relative;
  background: #ffffff;
  color: #000000;
  border-radius: 28px;
  padding: 28px 28px 26px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.term-balloon::after {
  content: '';
  position: absolute;
  left: 56px;
  bottom: -18px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 18px solid #ffffff;
}

.term-balloon-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
}

.term-modal-title {
  margin: 0 0 14px;
  font-size: 31px;
  line-height: 1.1;
  color: #000000;
}

.term-modal-copy {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.65;
  color: #000000;
}

.term-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.term-video-block,
.term-image-block {
  border: 2px dashed rgba(0, 0, 0, 0.24);
  border-radius: 20px;
  padding: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
  background: rgba(246, 241, 232, 0.55);
}

.term-media-heading {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
}


.term-video-label {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
}

.term-video-player {
  display: none;
  width: 100%;
  border-radius: 16px;
  background: #000000;
  margin: 0 0 14px;
}

.term-video-player.active {
  display: block;
}

.term-video-actions {
  margin: 0 0 8px;
}

.term-video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #1767d5;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.term-video-link:hover,
.term-video-link:focus-visible {
  background: #0f57ba;
}

.term-video-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #444444;
}

.term-image-viewer {
  display: none;
  width: 100%;
  border-radius: 16px;
  background: #ffffff;
  margin: 0 0 14px;
}

.term-image-viewer.active {
  display: block;
}

.term-image-actions {
  margin: 0 0 8px;
}

.term-image-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #1767d5;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.term-image-link:hover,
.term-image-link:focus-visible {
  background: #0f57ba;
}

.term-image-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #444444;
}

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

  .term-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .term-group-card,
  .page-note-block,
  .term-balloon {
    border-radius: 20px;
  }

  .term-group-title,
  .page-note-block h2 {
    font-size: 22px;
  }

  .term-chip {
    font-size: 16px;
  }

  .term-modal-title {
    font-size: 28px;
  }

  .term-modal-copy,
  .page-note-block p {
    font-size: 16px;
  }

  .term-modal-close {
    top: 8px;
    right: 24px;
  }
}

.content-shell-left {
  max-width: 1320px;
  margin: 0;
  padding-left: calc(10cm - 52px);
}

.content-intro-wide {
  max-width: 900px;
}

.lesinhoud-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(260px, 0.92fr);
  gap: 24px;
  align-items: stretch;
  margin: 0 0 32px;
}

.lesinhoud-main-column,
.lesinhoud-side-column {
  min-width: 0;
}

.lesinhoud-main-column {
  grid-column: 1 / span 2;
}

.lesinhoud-side-column {
  grid-column: 3;
  display: flex;
  flex-direction: column;
}

.section-heading-large {
  margin: 0 0 18px;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 700;
  color: #000000;
}

.terms-layout-single {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.body-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  flex: 1;
  display: flex;
}

.body-chip-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 12px;
  width: 100%;
  align-content: stretch;
}

.body-chip {
  width: 100%;
  min-height: 58px;
  text-align: left;
  padding: 12px 16px;
  display: flex;
  align-items: center;
}

@media (max-width: 1100px) {
  .content-shell-left {
    padding-left: 40px;
  }

  .lesinhoud-columns {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .lesinhoud-main-column,
  .lesinhoud-side-column {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .content-shell-left {
    padding-left: 0;
  }

  .section-heading-large {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .terms-layout-single {
    grid-template-columns: 1fr;
  }

  .body-card {
    border-radius: 20px;
  }
}

/* pagina 2 – drie blokken */
.lesinhoud-three-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) repeat(4, minmax(190px, 0.78fr));
  gap: 24px;
  align-items: stretch;
  margin: 0 0 32px;
}

.major-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.major-block-body {
  display: grid;
  gap: 18px;
  align-content: start;
  flex: 1;
}

.major-block:first-child .major-block-body {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.single-major-card {
  grid-template-columns: 1fr;
}

.fill-card {
  height: 100%;
}

.body-chip-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

.body-chip {
  width: 100%;
  min-height: 58px;
  text-align: left;
  padding: 12px 16px;
  display: flex;
  align-items: center;
}

@media (max-width: 1220px) {
  .lesinhoud-three-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .major-block:first-child .major-block-body {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 700px) {
  .major-block:first-child .major-block-body {
    grid-template-columns: 1fr;
  }
}


/* pagina 2 compacter, kleiner en netjes uitgelijnd */
.page-two .back-link-wrap {
  margin: 0 0 14px;
}

.page-two .content-title {
  margin-bottom: 10px;
  font-size: 32px;
}

.page-two .section-heading-large {
  margin-bottom: 10px;
  font-size: 27px;
}

.page-two .lesinhoud-three-grid {
  width: max-content;
  max-width: 100%;
  margin: 0 0 10px;
  grid-template-columns: 470px 145px 145px 145px 145px;
  column-gap: 20px;
  row-gap: 14px;
}

.page-two .major-block-body {
  gap: 12px;
}

.page-two .major-block:first-child .major-block-body {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-two .term-group-card {
  padding: 16px 16px 14px;
  border-radius: 18px;
}

.page-two .term-group-title {
  margin-bottom: 10px;
  font-size: 18px;
}

.page-two .term-chip-list {
  gap: 8px;
}

.page-two .term-chip {
  padding: 8px 12px;
  font-size: 14px;
}

.page-two .body-chip {
  min-height: 42px;
}

.page-two .site-footer {
  margin-top: 8px;
  padding-top: 8px;
}

@media (max-width: 1400px) {
  .page-two .lesinhoud-three-grid {
    grid-template-columns: 440px 138px 138px 138px 138px;
    column-gap: 16px;
  }
}

@media (max-width: 1220px) {
  .page-two .lesinhoud-three-grid {
    width: 100%;
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

@media (max-width: 1100px) {
  .content-shell-left {
    padding-left: max(80px, 6vw);
  }
}

@media (max-width: 700px) {
  .page-link-line {
    margin-top: 42px;
  }

  .content-shell-left {
    padding-left: 0;
  }

  .page-two .content-page {
    padding-top: 88px;
  }
}


.site-name-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  color: #000000;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-intro {
  margin: 0 0 18px;
  color: #000000;
  font-size: 18px;
  line-height: 1.58;
  font-weight: 700;
}

.contact-email-line {
  margin-top: 10px;
}

.contact-email-text {
  color: #000000;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
}

.contact-email-text:hover,
.contact-email-text:focus-visible {
  text-decoration: underline;
}

.section-summary {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  color: #000000;
  max-width: 38rem;
}

.page-two .content-intro {
  margin-bottom: 18px;
  max-width: 980px;
}

.page-two .section-summary {
  margin-bottom: 12px;
  font-size: 15px;
}

@media (max-width: 700px) {
  .hero-intro {
    font-size: 17px;
  }

  .site-name-badge {
    font-size: 14px;
  }

  .section-summary {
    font-size: 15px;
  }
}


body.page-portal {
  background:
    linear-gradient(rgba(246, 241, 232, 0.42), rgba(246, 241, 232, 0.42)),
    url("homepage-achtergrond.jpg") center center / cover no-repeat fixed;
  color: #000000;
}

.portal-home {
  min-height: calc(100vh - 40px);
  padding: 120px 28px 40px;
}

.portal-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.portal-name {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.portal-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  color: #000000;
}

.portal-intro {
  margin: 0 0 34px;
  max-width: 700px;
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
}

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

.portal-card {
  min-height: 250px;
  padding: 26px 24px;
  border-radius: 22px;
  background: rgba(246, 241, 232, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(3px);
}

.portal-card h2 {
  margin: 0 0 14px;
  font-size: 29px;
  line-height: 1.18;
  color: #000000;
}

.portal-card-copy {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #000000;
}

.portal-card-action {
  margin: 26px 0 0;
}

.portal-card-action a {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.08);
  color: #000000;
  text-decoration: none;
  font-weight: 700;
}

.portal-card-action a:hover,
.portal-card-action a:focus-visible {
  background: rgba(0, 0, 0, 0.14);
}


.portal-story {
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: 22px;
  background: rgba(246, 241, 232, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(3px);
}

.portal-story-date {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.portal-story p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
}

.portal-story p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .portal-story {
    padding: 24px 22px;
  }

  .portal-story p,
  .portal-story-date {
    font-size: 17px;
  }
}

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

  .portal-card {
    min-height: 0;
  }
}


.service-page {
  min-height: calc(100vh - 40px);
  padding: 120px 28px 40px;
}

.service-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.service-name {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #0f1e2c;
}

.service-title {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  color: #0b2238;
}

.service-intro {
  margin: 0 0 34px;
  max-width: 860px;
  font-size: 20px;
  line-height: 1.65;
  color: #0f1e2c;
}

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

.service-card,
.service-panel {
  border-radius: 22px;
  background: rgba(244, 250, 255, 0.84);
  border: 1px solid rgba(15, 30, 44, 0.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(3px);
}

.service-card {
  min-height: 240px;
  padding: 26px 24px;
}

.service-card h2,
.service-panel h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
  color: #0b2238;
}

.service-card p,
.service-panel p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #10263a;
}

.service-panel {
  margin-top: 28px;
  padding: 28px 30px;
}

.service-panel p + p {
  margin-top: 16px;
}

.service-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 0;
}

.service-button {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(11, 34, 56, 0.88);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.service-button-secondary {
  background: rgba(255, 255, 255, 0.70);
  color: #0b2238;
  border: 1px solid rgba(11, 34, 56, 0.18);
}

.service-button:hover,
.service-button:focus-visible {
  transform: translateY(-1px);
}

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

  .service-card {
    min-height: 0;
  }

  .service-panel {
    padding: 24px 22px;
  }

  .service-card h2,
  .service-panel h2 {
    font-size: 24px;
  }

  .service-intro {
    font-size: 18px;
  }
}


body.page-gitaarbouw {
  background:
    linear-gradient(rgba(216, 34, 34, 0.74), rgba(184, 26, 26, 0.66)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    url("homepage-achtergrond.jpg") center center / cover no-repeat fixed;
  color: #250a0a;
}

.page-gitaarbouw .service-name,
.page-gitaarbouw .service-title,
.page-gitaarbouw .service-intro,
.page-gitaarbouw .service-card h2,
.page-gitaarbouw .service-panel h2,
.page-gitaarbouw .service-card p,
.page-gitaarbouw .service-panel p {
  color: #2b0f10;
}

.page-gitaarbouw .service-card,
.page-gitaarbouw .service-panel {
  background: rgba(255, 244, 244, 0.88);
  border: 1px solid rgba(70, 10, 10, 0.14);
}

.page-gitaarbouw .service-button {
  background: rgba(90, 12, 12, 0.90);
}

.page-gitaarbouw .service-button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: #4b0f12;
  border: 1px solid rgba(90, 12, 12, 0.18);
}


.page-gitaarbouw .menu-label {
  color: var(--yellow);
}

.page-gitaarbouw .menu-icon span {
  background: var(--yellow);
}


body.page-tekoop {
  background:
    linear-gradient(rgba(255, 232, 74, 0.68), rgba(255, 216, 26, 0.58)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 34%),
    url("homepage-achtergrond.jpg") center center / cover no-repeat fixed;
  color: #111111;
}

.page-tekoop .service-name,
.page-tekoop .service-title,
.page-tekoop .service-intro,
.page-tekoop .service-card h2,
.page-tekoop .service-panel h2,
.page-tekoop .service-card p,
.page-tekoop .service-panel p {
  color: #111111;
}

.page-tekoop .service-card,
.page-tekoop .service-panel,
.page-tekoop .sale-item {
  background: rgba(246, 241, 232, 0.90);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.tekoop-shell {
  max-width: 1150px;
}

.tekoop-info .service-contact-line {
  margin-top: 20px;
}

.sale-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 28px;
}

.sale-item {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(3px);
}

.sale-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 18px 0;
}

.sale-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  object-fit: cover;
}

.sale-item-body {
  padding: 26px 28px 28px;
}

.sale-status {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.10);
  font-size: 14px;
  font-weight: 700;
}

.sale-item h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  color: #111111;
}

.sale-item p {
  margin: 0 0 14px;
  max-width: 900px;
  font-size: 17px;
  line-height: 1.7;
  color: #111111;
}


.sale-specs {
  margin: 0 0 18px 0;
  padding-left: 24px;
  max-width: 920px;
}

.sale-specs li {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.7;
  color: #111111;
}

.sale-price {
  font-size: 20px;
  font-weight: 700;
}

.sale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px !important;
}

.sale-item-empty {
  border-style: dashed;
}

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

  .sale-item-body {
    padding: 22px;
  }
}
