:root {
  --kfc-blue: #0c0cc4;
  --kfc-white: #ffffff;
  --kfc-light-grey: #f5f5f5;
    }
    body {
		margin: 0;
		font-family: Arial, Helvetica, sans-serif;
		background: #e9edf7;
    }

.page {
  padding: 40px 0 60px;
}

    /* --- HERO --- */
    .hero-kfc {
      background: var(--kfc-blue);
      color: #ffffff;
      padding: 100px 20px;
      text-align: center;
    }

    .hero-inner {
      max-width: 900px;
      margin: auto;
    }

    .hero-kfc h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    .hero-kfc .hero-sub {
      font-size: 1.3rem;
      opacity: 0.95;
      margin-bottom: 25px;
    }

    .hero-buttons a {
      margin: 8px;
    }

    /* --- BUTTONS --- */
    .btn-primary, .btn-secondary {
      padding: 12px 25px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: 0.2s;
    }

    .btn-primary {
      background: #ffffff;
      color: var(--kfc-blue);
    }

    .btn-primary:hover {
      background: #e6e6e6;
    }

    .btn-secondary {
      background: transparent;
      color: #ffffff;
      border: 2px solid #ffffff;
    }

    .btn-secondary:hover {
      background: #ffffff;
      color: var(--kfc-blue);
    }

    /* --- GRID --- */
    .kfc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      padding: 40px 20px;
      max-width: 1100px;
      margin: auto;
    }
    @media (max-width: 900px) {
      .kfc-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    .kfc-card {
      background: #ffffff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 3px 12px rgba(0,0,0,0.1);
      text-align: center;
    }

    .kfc-card h3 {
      color: var(--kfc-blue);
      margin-bottom: 10px;
    }

    .grid-link {
      display: inline-block;
      margin-top: 10px;
      font-weight: 600;
      color: var(--kfc-blue);
      text-decoration: none;
    }

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

.main-nav a {
  text-decoration: none;
  color: inherit;
  padding: 6px 10px;
  border-radius: 10px;
}
.main-nav a:hover {
  background: rgba(0,0,0,0.06);
}
.main-nav a.is-active {
  background: rgba(11,11,132,0.12);
  color: var(--kfc-blue);
}

.home-quicklinks {
  padding: 60px 20px;
}

.home-quicklinks h2 {
  text-align: center;
  margin-bottom: 30px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.quick-card {
  background: var(--kfc-blue);
  color: white;
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.quick-card:hover {
  transform: translateY(-4px);
}

.home-intro {
  padding: 40px 20px 25px 20px;
  text-align: center; 
}

.home-opleiding,
.home-praktisch {
  padding: 60px 20px;
  text-align: center;
}

.home-intro p,
.home-opleiding p {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
}

.home-opleiding {
  background: #f5f5f5;
}

.praktisch-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.praktisch-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--kfc-blue);
}

.home-news {
  padding: 70px 20px;
  background: #f8f9fb;
}

.home-news h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.news-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.news-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.news-featured {
  background: var(--kfc-blue);
  color: white;
}

.news-featured .news-link {
  color: white;
  text-decoration: underline;
}

.news-meta {
  font-size: 0.9rem;
  opacity: 0.75;
  margin: 0 0 10px 0;
}

.news-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--kfc-blue);
}

.badge {
  display: inline-block;
  background: var(--kfc-blue);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.page h1 {
  margin-bottom: 10px;
}

.page h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--kfc-blue);
  margin-top: 12px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 650px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 600ms ease, transform 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  inset: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  padding: 20px;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 900px;
}

.hero-content h1 {
  margin: 0 0 12px 0;
  font-size: 3rem;
}

.hero-sub {
  margin: 0 0 22px 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.hero-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.hero-nav:hover {
  background: rgba(255,255,255,0.32);
}

.hero-prev { left: 14px; }
.hero-next { right: 14px; }

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}

.hero-dot.is-active {
  background: rgba(255,255,255,0.95);
}

@media (max-width: 600px) {
  .hero-carousel { height: 62vh; min-height: 360px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1.05rem; }
  .hero-nav { width: 40px; height: 40px; }
}

.home-sponsors {
  padding: 70px 20px;
  background: #ffffff;
  text-align: center;
}

.home-sponsors h2 {
  margin-bottom: 35px;
}

.sponsor-block {
  margin: 40px auto 0 auto;
  max-width: 1100px;
}

.sponsor-block h3 {
  margin: 0 0 18px 0;
  font-size: 1.2rem;
  opacity: 0.9;
}

.sponsor-grid {
  display: grid;
  gap: 30px;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
}

.sponsor-grid--main {
  border: 2px solid var(--kfc-blue);
  background: #ffffff;
  padding: 40px 30px;
  max-width: 650px;
  margin: 0 auto;
}

.sponsor-grid--main img {
  max-height: 120px;
  width: auto;
}

.sponsor-grid--partners {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  background: #f8f9fb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sponsor:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.sponsor img {
  max-height: 70px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: 0.3s ease;
}

.sponsor-grid--main .sponsor img {
  max-height: 90px;
}

.sponsor:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.sponsor-note {
  margin-top: 40px;
  opacity: 0.85;
}

.sponsor-note a {
  color: var(--kfc-blue);
  font-weight: 700;
  text-decoration: none;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

/* Mobiel gedrag */
@media (max-width: 760px) {

  /* Open toestand */
  .main-nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,0.15);
  }
}

@media (max-width: 760px) {
  .nav-links a.is-active {
    background: #fff;
    color: var(--kfc-blue);
  }
}

.teams-overview {
  padding: 60px 20px;
}

.page-intro {
  max-width: 800px;
  margin: 30px auto 50px auto;
  text-align: center;
  line-height: 1.7;

  font-size: 1.3rem;
  font-weight: 600;
  color: #111;

  padding: 20px 30px;
  background: #d6ffff;
  border-left: 4px solid #0056b3; /* clubkleur */
  border-radius: 6px;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:6px;
  background: var(--kfc-blue);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card h2 {
  margin-bottom: 10px;
}

.team-card a {
  display: inline-block;
  margin-top: 15px;
  font-weight: 700;
  color: var(--kfc-blue);
  text-decoration: none;
}

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

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

.team-card-media{
  height:120px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* Teams subpagina's */
.teams-page {
  padding: 60px 20px;
}

.teams-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 25px 0 45px 0;
}

.teams-subnav a {
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  color: var(--kfc-blue);
}

.teams-subnav a:hover {
  background: rgba(0,0,0,0.08);
}

.age-block {
  margin-bottom: 80px;
  text-align: center;
}

.age-header {
  text-align: center;
  margin-bottom: 18px;
}

.age-meta {
  margin: 8px 0 0 0;
  opacity: 0.75;
}

.team-photo {
  width: 100%;
  max-width: 950px;
  border-radius: 12px;
  margin: 0 auto 22px auto;
  display: block;
  background: rgba(0,0,0,0.04);
}

.age-text {
  max-width: 950px;
  margin: 0 auto 22px auto;
  line-height: 1.6;
  text-align: center;
  opacity: 0.9;
}

.team-structure {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px
}

.team-unit {
  padding: 20px;
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
  background: #ffffff;
  border: 1px solid var(--kfc-blue);
}

.team-unit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.team-unit h3 {
  margin: 0 0 8px 0;
}

.team-trainers {
  margin: 0;
  line-height: 1.5;
  opacity: 0.9;
}

.teams-back {
  text-align: center;
  margin-top: 30px;
}

.teams-back a {
  color: var(--kfc-blue);
  font-weight: 800;
  text-decoration: none;
}

.trainers-list {
  max-width: 700px;
  margin: 20px auto 0 auto;
  text-align: center;
}

.trainers-list h3 {
  margin-bottom: 14px;
}

.trainers-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trainers-list li {
  display: inline-block;
  background: rgba(0, 60, 130, 0.08);
  color: var(--kfc-blue);
  padding: 8px 14px;
  border-radius: 999px;
  margin: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.coordinator {
  text-align: center;
  margin: 10px 0 35px 0;
  font-size: 1rem;
}

.age-coordinator {
  text-align: center;
  font-size: 0.95rem;
  margin: 6px 0 18px 0;
  opacity: 0.85;
  font-weight: 600;
}

.embed-frame{ width:100%; height:950px; border:0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-intro {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 850px;
}

.opleiding-fases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.opleiding-fase {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-top: 4px solid var(--kfc-blue);
}

.opleiding-fase h2 {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.opleiding-fase p {
  margin-bottom: 14px;
  line-height: 1.6;
}

.opleiding-fase ul {
  padding-left: 18px;
  margin: 0;
}

.opleiding-fase li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.opleiding-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--kfc-blue);
  background: rgba(12, 12, 196, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.opleiding-slot {
  margin-top: 42px;
  background: #f8f9fb;
  border-radius: 14px;
  padding: 28px;
}

.opleiding-slot h2 {
  margin-top: 0;
}

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

.visie-hero {
  margin-bottom: 32px;
}

.visie-kern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 34px 0 42px;
}

.visie-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-left: 4px solid var(--kfc-blue);
}

.visie-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.visie-card p {
  margin: 0;
  line-height: 1.6;
}

.visie-section {
  margin-top: 34px;
}

.visie-section p {
  line-height: 1.7;
  max-width: 900px;
}

.visie-highlight {
  background: #f8f9fb;
  border-radius: 14px;
  padding: 28px;
}

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

.page-navigation {
  margin-top: 50px;
  text-align: center;
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(12, 12, 196, 0.08);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.visie-card .icon-badge {
  margin-bottom: 14px;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(12,12,196,0.08);
  color: var(--kfc-blue);
  margin-bottom: 14px;
}

.icon-svg {
  width: 26px;
  height: 26px;
}

.sponsor-grid--secondary img {
  max-height: 70px;
  opacity: 0.9;
}

.sponsor.siemes {
  background: #222;
  padding: 12px;
  border-radius: 6px;
}

.sponsor--siemes {
  background: #1f1f1f;
  padding: 14px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sponsor--siemes img {
  max-height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.praktisch-overview {
  margin-top: 10px;
}

.praktisch-card {
  text-align: left;
  border-top: 4px solid var(--kfc-blue);
}

.praktisch-card p {
  line-height: 1.6;
}

.praktisch-slot {
  margin-top: 10px;
  background: #f8f9fb;
  border-radius: 14px;
  padding: 28px;
}

.praktisch-slot h2 {
  margin-top: 0;
}

.praktisch-slot p {
  line-height: 1.7;
  max-width: 900px;
}

.praktisch-steps {
  line-height: 1.7;
  padding-left: 18px;
}

.praktisch-steps li {
  margin-bottom: 14px;
}

.praktisch-list {
  line-height: 1.7;
}

.praktisch-callout {
  background: #f8f9fb;
  border-left: 5px solid var(--kfc-blue);
  padding: 24px;
  border-radius: 8px;
}

.kfc-table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}

.kfc-table th {
background: var(--kfc-blue);
color: white;
padding: 10px;
text-align: left;
}

.kfc-table td {
padding: 10px;
border-bottom: 1px solid #e2e2e2;
}

.kfc-table tr:hover {
background: #f7f7f7;
}

.kfc-button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.kfc-button:hover {
  transform: translateY(-1px);
}

.kfc-button-large {
  padding: 16px 30px;
  font-size: 1.05rem;
}

.praktisch-button-wrap {
  margin-top: 1rem;
}

.webshop-highlight {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.webshop-button-wrap {
  margin-top: 1.5rem;
}

.webshop-button {
  display: inline-block;
  background: var(--kfc-blue);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.2s ease;
}

.webshop-button:hover {
  background: var(--kfc-blue);
  transform: translateY(-2px);
}

/* mobiel opengeklapt */
.has-submenu.open .submenu {
  display: block;
  position: static;
  box-shadow: none;
}

.submenu-toggle::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.8em;
}

.page-content > *:first-child{margin-top:0;}
.page-content img{max-width:100%;height:auto;}

/* CONTACTFORMULIER */

.wpcf7 form {
  max-width: 760px;
}

.wpcf7 form p {
  margin-bottom: 1.25rem;
}

.wpcf7 label {
  display: block;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 0.45rem;
  line-height: 1.4;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1f1f1f;
  background: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #1d2fa3 50%),
    linear-gradient(135deg, #1d2fa3 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.8rem;
}

.wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #1d2fa3;
  box-shadow: 0 0 0 3px rgba(29, 47, 163, 0.12);
}

.wpcf7 .wpcf7-acceptance {
  display: block;
  margin-top: 0.5rem;
}

.wpcf7 .wpcf7-list-item {
  margin: 0;
}

.wpcf7 .wpcf7-list-item-label {
  font-weight: 400;
  line-height: 1.5;
}

.wpcf7 input[type="checkbox"] {
  transform: translateY(1px);
  margin-right: 0.55rem;
}

.wpcf7 input[type="submit"] {
  display: inline-block;
  background: #1d2fa3;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: #162582;
  transform: translateY(-1px);
}

.wpcf7 input[type="submit"]:active {
  transform: translateY(0);
}

.wpcf7 .wpcf7-spinner {
  margin-left: 0.75rem;
}

.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 0.4rem;
  font-size: 0.92rem;
}

.wpcf7 .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.home-news-actions {
  text-align: center;
  margin-top: 30px;
}

.news-archive {
  padding: 60px 20px;
}

.news-archive .news-grid {
  margin-top: 30px;
}

.news-archive {
  padding-bottom: 60px;
}

.news-archive .home-news {
  padding-top: 20px;
}

.news-archive .news-card h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.news-pagination {
  margin-top: 35px;
  text-align: center;
}

.news-pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  background: #ffffff;
  color: var(--kfc-blue);
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  font-weight: 600;
}

.news-pagination .page-numbers.current {
  background: var(--kfc-blue);
  color: #ffffff;
}

.news-image {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 10px;
}

.news-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-featured .news-image img {
  height: 240px;
}

.nav-links a.is-active {
  background: #ffffff;
  color: var(--kfc-blue);
}

.submenu-toggle::after {
  content: "▾";
  margin-left: 7px;
  font-size: 0.78em;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
}

@media (max-width: 900px) {

  .main-nav.is-open .nav-links {
    display: flex;
  }

  .has-submenu.open .submenu {
    display: block;
    position: static;
    margin-top: 8px;
    box-shadow: none;
    border-radius: 10px;
    opacity: 1;
    transform: none;
  }

  .submenu a {
    padding: 10px 14px;
  }
}

body {
  margin: 0;
}

html, body {
  padding: 0;
}



html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #e9edf7;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #e9edf7;
}

.site,
.wrapper,
.site-wrapper,
.page-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #e9edf7;
}

main.page {
  flex: 1;
  padding: 40px 0 60px;
  display: flow-root;
  background: transparent !important;
  margin: 0 !important;
  max-width: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.teams-page {
  padding: 0 20px 60px;
  margin: 0;
}

.page h1,
.teams-page h1,
.container > h1:first-child {
  margin-top: 0;
}

main.page {
  display: flow-root;
}

/* ===== DEFINITIEVE FIX binnenpagina's ===== */

html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  background: #e9edf7;
}

/* haal de oude boxed .page definitief weg */
main.page,
.page {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* geef de binnenpagina zelf gecontroleerde ruimte */
.teams-page {
  padding: 40px 20px 60px !important;
  margin: 0 !important;
}

/* eerste titel niet extra naar beneden laten duwen */
.page h1,
.teams-page h1 {
  margin-top: 0 !important;
}

/* ================= FOOTER ================= */

.site-footer {
  background: linear-gradient(180deg, #1515c9 0%, #1010b8 100%);
  color: #ffffff;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.footer-wrap {
  padding-top: 38px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.05fr;
  gap: 36px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px 30px;
}

.footer-column {
  min-width: 0;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: #ffffff;
}

.footer-tagline {
  margin: 0 0 14px;
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.footer-column p {
  margin: 0 0 12px;
  line-height: 1.7;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.9);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a,
.footer-contact-item a,
.footer-bottom a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover,
.footer-contact-item a:hover,
.footer-bottom a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-contact-item {
  margin-bottom: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

.footer-contact-label {
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
  color: #ffffff;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  background: #ffffff;
  color: var(--kfc-blue);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.08);
}

.footer-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.86);
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .footer-wrap {
    padding-top: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 20px 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
  }

  .footer-title {
    font-size: 1.1rem;
  }
}

/* ================= HEADER ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.header-top {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-bottom {
  background: var(--kfc-blue);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-top .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.header-bottom .header-inner {
  display: flex;
  align-items: center;
  min-height: 58px;
}

/* ================= LOGO ================= */

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111;
}

.logo-subtext {
  font-size: 0.92rem;
  color: #666;
  margin-top: 4px;
}

/* ================= NAV ================= */

.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.nav-links > a,
.nav-item > a,
.submenu-toggle {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links > a:hover,
.submenu-toggle:hover {
  background: rgba(255,255,255,0.14);
}

.nav-links > a.current-menu-item,
.nav-links > a[aria-current="page"],
.submenu-toggle.current-menu-item,
.submenu-toggle[aria-current="page"] {
  background: #ffffff;
  color: var(--kfc-blue);
}

/* ================= SUBMENU ================= */

.submenu-toggle::after {
  content: "▾";
  margin-left: 7px;
  font-size: 0.78em;
}

.submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
  padding: 8px 0;
  z-index: 999;
}





@media (min-width: 900px) {
  .has-submenu:hover .submenu {
    display: block;
  }
}

/* ================= MOBILE TOGGLE ================= */

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  color: #ffffff;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

/* ================= MOBILE ================= */

@media (max-width: 899px) {
  .header-top .header-inner {
    min-height: 76px;
  }

  .logo-img {
    width: 46px;
    height: 46px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-subtext {
    font-size: 0.82rem;
  }

  .header-bottom .header-inner {
    min-height: 58px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 100%;
    background: var(--kfc-blue);
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  }

  .main-nav.is-open .nav-links {
    display: flex;
  }

  .nav-links > a,
  .submenu-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
  }

  .submenu {
    display: none;
    position: static;
    min-width: 0;
    background: rgba(255,255,255,0.08);
    box-shadow: none;
    border-radius: 10px;
    padding: 6px 0;
    margin-top: 6px;
  }

  .submenu a {
    color: #ffffff;
    padding: 10px 14px 10px 18px;
  }

  .submenu a:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
  }

  .has-submenu.open .submenu {
    display: block;
  }
}

.person-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  overflow: hidden;
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kfc-blue);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.teams-page #u8 .team-structure,
.teams-page #u9 .team-structure {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.teams-page .team-structure {
  justify-content: center;
}

.teams-page .team-structure > .team-unit:only-child {
  grid-column: 1 / -1;
  max-width: 500px;
  width: 100%;
  justify-self: center;
}

.news-filters-wrap {
  margin-top: 10px;
  margin-bottom: 25px;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: end;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.news-filter-group {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1;
}

.news-filter-group label {
  font-weight: 700;
  margin-bottom: 8px;
}

.news-filter-group select {
  padding: 12px 14px;
  border: 1px solid #d8dbe3;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.news-filter-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.news-reset-btn {
  background: transparent;
  border: 2px solid var(--kfc-blue);
  color: var(--kfc-blue);
}

.news-reset-btn:hover {
  background: rgba(12, 12, 196, 0.06);
}

.news-image {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 10px;
}

.news-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.04);
}

.news-archive .news-card h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.news-pagination {
  margin-top: 35px;
  text-align: center;
}

.news-pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  background: #ffffff;
  color: var(--kfc-blue);
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  font-weight: 600;
}

.news-pagination .page-numbers.current {
  background: var(--kfc-blue);
  color: #ffffff;
}

@media (max-width: 700px) {
  .news-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .news-filter-group {
    min-width: 100%;
  }

  .news-filter-actions {
    width: 100%;
  }
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: -1;
  background-image: url('https://kfcpaaltervant.be/wp-content/uploads/2026/04/Gras-achtergrond-scaled.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

body::before {
  left: 0;
  background-position: left center;
}

body::after {
  right: 0;
  background-position: right center;
}

@media (max-width: 1200px) {
  body::before,
  body::after {
    display: none;
  }
}

/* ================= SUBMENU ================= */

.nav-item {
  position: relative;
}

.submenu-toggle::after {
  content: "▾";
  margin-left: 7px;
  font-size: 0.78em;
}

.submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
  padding: 8px 0;
  z-index: 999;
}

.submenu a {
  display: block;
  padding: 11px 16px;
  color: #222;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: background 0.2s ease, color 0.2s ease;
}

.submenu a:hover {
  background: #f3f5fb;
  color: var(--kfc-blue);
}

@media (max-width: 899px) {
  .submenu {
    display: none;
    position: static;
    min-width: 0;
    background: rgba(255,255,255,0.08);
    box-shadow: none;
    border-radius: 10px;
    padding: 6px 0;
    margin-top: 6px;
  }

  .submenu a {
    color: #ffffff;
    padding: 10px 14px 10px 18px;
  }

  .submenu a:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
  }

  .has-submenu.open .submenu {
    display: block;
  }
}

/* ===== MOBILE NAV EMERGENCY FIX ===== */
@media (max-width: 899px) {
  .main-nav.is-open .nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: var(--kfc-blue) !important;
  }

  .nav-links > a,
  .nav-links .submenu-toggle {
    display: flex !important;
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
    color: #ffffff !important;
    background: transparent !important;
    padding: 12px 14px !important;
    text-decoration: none !important;
  }

  .nav-links > a:hover,
  .nav-links .submenu-toggle:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.12) !important;
  }

  .nav-links > a.is-active,
  .nav-links > a[aria-current="page"],
  .nav-links .submenu-toggle.is-active,
  .nav-links .submenu-toggle[aria-current="page"] {
    background: #ffffff !important;
    color: var(--kfc-blue) !important;
  }

  .nav-links .submenu {
    display: none !important;
    position: static !important;
    background: rgba(255,255,255,0.08) !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    margin-top: 6px !important;
    padding: 6px 0 !important;
    min-width: 0 !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .nav-links .has-submenu.open .submenu {
    display: block !important;
  }

  .nav-links .submenu a {
    display: block !important;
    color: #ffffff !important;
    background: transparent !important;
    padding: 10px 14px 10px 18px !important;
    text-decoration: none !important;
  }

  .nav-links .submenu a:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.12) !important;
  }
}

/* ================= CLEAN HEADER FIX ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--kfc-blue);
  color: #ffffff;
  border-bottom: none;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.18);
}

/* oude dubbele headerlagen uitschakelen */
.header-top,
.header-bottom {
  display: contents;
}

.header-inner.header-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  min-height: 64px;
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  flex: 0 0 auto;
  line-height: 0;
}

.logo-only {
  width: 52px;
  height: 52px;
}

.logo-img {
  display: block;
  width: 52px;
  height: 52px;
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
}

/* tekst bij logo verbergen */
.logo-copy,
.logo-text,
.logo-subtext {
  display: none !important;
}

/* navigatie */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 1 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.nav-links a,
.submenu-toggle {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-links a:hover,
.submenu-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* submenu */
.nav-item {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  padding: 8px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  z-index: 1001;
}

.submenu a {
  display: block;
  color: #222222;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
  white-space: nowrap;
}

.submenu a:hover {
  background: rgba(12, 12, 196, 0.08);
  color: var(--kfc-blue);
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu-toggle::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.75em;
}

/* hamburger */
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

/* mobiel */
@media (max-width: 900px) {
  .header-inner.header-main {
    position: relative;
    justify-content: space-between;
    gap: 16px;
    min-height: 60px;
  }

  .logo-only,
  .logo-img {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: var(--kfc-blue);
    border-radius: 14px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  }

  .main-nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .submenu-toggle {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
  }

  .nav-item {
    width: 100%;
  }

  .submenu {
    display: none;
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    border-radius: 10px;
  }

  .has-submenu:hover .submenu {
    display: none;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .submenu a {
    color: #ffffff;
  }

  .submenu a:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
  }
}





/* ================= HOME HERO STATIC ================= */

.home-hero-static {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.home-hero-bg {
  position: relative;
  width: 100%;
  min-height: 480px;
  background-size: auto 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000;
}

.home-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.48) 34%,
      rgba(0, 0, 0, 0.12) 70%,
      rgba(0, 0, 0, 0.08) 100%
    );
  z-index: 1;
}

.home-hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 620px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px;
  display: flex;
  align-items: center;
}

.home-hero-actions {
  width: min(100%, 420px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-hero-label {
  display: inline-block;
  width: fit-content;
  margin: 0 0 4px 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--kfc-blue);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero-button {
  display: block;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--kfc-blue);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.home-hero-button:hover {
  transform: translateX(6px);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.home-hero-button-primary {
  background: var(--kfc-blue);
  color: #ffffff;
}

.home-hero-button-primary:hover {
  background: #ffffff;
  color: var(--kfc-blue);
}

/* Tablet */
@media (max-width: 900px) {
  .home-hero-bg,
  .home-hero-overlay {
    min-height: 540px;
  }

  .home-hero-overlay {
    padding: 50px 22px;
  }

  .home-hero-actions {
    width: min(100%, 380px);
  }
}

/* Mobiel */
@media (max-width: 600px) {
  .home-hero-bg {
    min-height: 560px;
    background-position: center top;
  }

  .home-hero-bg::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.62) 48%,
        rgba(0, 0, 0, 0.82) 100%
      );
  }

  .home-hero-overlay {
    min-height: 560px;
    padding: 28px 18px;
    align-items: flex-end;
  }

  .home-hero-actions {
    width: 100%;
    gap: 12px;
  }

  .home-hero-button {
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .home-hero-button:hover {
    transform: none;
  }
}

.gvoetbal-news {
  max-width: 1100px;
  margin: 40px auto;
  padding: 28px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}

.gvoetbal-news-grid {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 32px;
  align-items: center;
}

.gvoetbal-news-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.gvoetbal-news-content h2 {
  color: var(--kfc-blue);
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 2rem;
  line-height: 1.2;
}

.gvoetbal-news-content p {
  line-height: 1.7;
  margin-bottom: 14px;
}

.gvoetbal-label {
  display: inline-block;
  background: var(--kfc-blue);
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.gvoetbal-button-wrap {
  margin-top: 24px;
}

.gvoetbal-button {
  display: inline-block;
  background: var(--kfc-blue);
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.20);
  transition: 0.2s ease;
}

.gvoetbal-button:hover {
  background: #00008f;
  transform: translateY(-2px);
}

/* Mobiel */
@media (max-width: 800px) {
  .gvoetbal-news {
    padding: 20px;
    margin: 25px auto;
  }

  .gvoetbal-news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gvoetbal-news-content h2 {
    font-size: 1.55rem;
  }

  .gvoetbal-button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}