/* Container */
.all_news_container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 200px 30px 60px;
}

/* Grid Layout */
.all_news_grid {
  display: grid;
  /* grid-template-columns: 1fr 300px; */
  gap: 30px;
  margin-bottom: 50px;
}

/* ==========================================
   Posts Grid - AANGEPAST: 6 kolommen grid
   ========================================== */
.all_news_posts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ==========================================
   Grote posts (1 en 2) - AANGEPAST
   Nu beide 50% breed (3 van 6 kolommen)
   ========================================== */
.all_news_post_large {
  grid-row: span 1;
}

.all_news_post_large:first-child {
  flex: 48%;
	margin-bottom: 20px;
	max-width: 50%;
}

.all_news_post_large:nth-child(2) {
	flex: 48%;
	max-width: 100%;
}

.all_news_post_large:first-child .all_news_post_image {
	height: 400px;
	padding-bottom: 0px;
}

.all_news_post_large:nth-child(2) .all_news_post_image {
	height: 400px;
	padding-bottom: 0px;
}

/* ==========================================
   Kleine posts (3-11) - AANGEPAST
   Elk 2 kolommen = 33.33% (3 posts per rij)
   ========================================== */
.all_news_post_small {
  grid-column: span 2;
}

/* Post Styling - AANGEPAST HOVER */
.all_news_post {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: box-shadow 0.3s ease;
	flex: 30%;
}

/* Post Link */
.all_news_post_link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Post Image - AANGEPAST: Container zonder zoom */
.all_news_post_image {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%; /* 3:2 aspect ratio */
  border-radius: 15px;
  overflow: hidden;
}

/* Inner wrapper voor de background image met zoom effect */
.all_news_post_image_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.all_news_post:hover .all_news_post_image_bg {
  transform: scale(1.05);
}

.all_news_post_large .all_news_post_image {
  padding-bottom: 100%; /* 1:1 aspect ratio voor grote posts */
}

.all_news_post_image_placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Titel Overlay (voor grote posts 1 en 2) */
.all_news_post_title_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  transition: background 0.3s ease;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8588235294), rgba(26, 26, 26, 0));
}

.all_news_post_title_overlay .all_news_post_title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  transition: color 0.3s ease;
  font-family: "Open Sans", sans-serif;
}

.all_news_post_title, .all_news_post_excerpt {
  font-family: "Open Sans", sans-serif;
}

.all_news_post_title {
  margin-bottom: 5px;
}

.all_news_post_excerpt {
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 10px;
}

/* Post Content (voor kleine posts 3-11) */
.all_news_post_content {
  padding: 15px 0;
  background: #ffffff;
}

.all_news_post_content .all_news_post_title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
  font-family: "Open Sans", sans-serif;
}

.all_news_post_title {
  font-family: "Open Sans", sans-serif;
}

/* Contact Sidebar */
.all_news_contact {
  background: #1F2C4C;
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  position: sticky;
  top: 20px;
  max-height: -moz-fit-content;
  max-height: fit-content;
  overflow-y: auto;
}

.all_news_contact h3 {
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.all_news_contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: unset;
  margin-bottom: 5px;
}

.all_news_contact a:hover {
  text-decoration: underline;
}

/* Contact Sections Spacing */
.contact_maps_form_address,
.contact_maps_form_contact,
.contact_maps_form_hours {
  margin-bottom: 30px;
}

.contact_maps_form_address:last-child,
.contact_maps_form_contact:last-child,
.contact_maps_form_hours:last-child {
  margin-bottom: 0;
}

/* Address */
.contact_maps_form_address_content {
  font-style: normal;
  line-height: 1.6;
}

.contact_maps_form_address_line {
  margin-bottom: 5px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

/* Contact Details */
.contact_maps_form_contact_phone,
.contact_maps_form_contact_email {
  margin-bottom: 8px;
}

/* Opening Hours */
.contact_maps_form_hours_day,
.contact_maps_form_hours_workweek_group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-family: "Open Sans", sans-serif;
}

.contact_maps_form_hours_day:last-child,
.contact_maps_form_hours_workweek_group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact_maps_form_hours_day_name {
  font-weight: 600;
}

.contact_maps_form_hours_workweek {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

/* Pagination */
.all_news_pagination {
  padding-top: 30px;
  border-top: 2px solid #e5e5e5;
}

.all_news_pagination_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.all_news_pagination_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 35px;
  padding: 4px 8px;
  background: #1F2C4C;
  color: white;
  text-decoration: none;
  border: 2px solid #1F2C4C;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
	border-radius: 8px;
}

.all_news_pagination_link:hover {
  background: transparent;
  color: #1F2C4C;
  border-color: #1F2C4C;
}

.all_news_pagination_current {
  background: transparent;
  color: #ffffff;
  border-color: #1F2C4C;
  color: #1F2C4C;
  cursor: default;
  pointer-events: none;
  font-family: "Open Sans", sans-serif;
}

.all_news_pagination_next {
  background: #1F2C4C;
  color: white;
  text-decoration: none;
  border: 2px solid #1F2C4C;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
}

.all_news_pagination_next:hover {
  background-color: transparent;
  color: #1F2C4C;
}

/* Empty State */
.all_news_empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 18px;
}

@media (min-width: 1025px) {
  nav.all_news_pagination.mobile {
    display: none;
  }
}
/* ========================================
   Responsive: Tablet
   ======================================== */
@media (max-width: 1024px) {
  .all_news_grid {
    grid-template-columns: 1fr;
  }
  .all_news_contact {
    position: relative;
    top: 0;
    max-height: none;
  }
  nav.all_news_pagination.desktop {
    display: none;
  }
}
/* ========================================
   Responsive: Mobile
   ======================================== */
@media (min-width: 769px) {
  .all_news_post_content.all_news_post_content_mobile {
    display: none;
  }
}
@media (max-width: 768px) {
	.all_news_post_large:first-child {
		flex: 100%;
		max-width: 100%;
	}
	
	.all_news_post_large:nth-child(2) { 
		flex: 40%;
		
	}
	
	.all_news_post_large:nth-child(2) .all_news_post_image {
		height: unset;
	}
	
	.all_news_post:nth-child(3) { 
		flex: 40%;
	}
	
	.all_news_post {
		flex: 100%;
	}
	
  .all_news_container {
    padding: 20px 30px;
  }
  .all_news_post_large:first-child .all_news_post_title_overlay {
    display: unset;
  }
  .all_news_post_title_overlay {
    display: none;
  }
  /* Mobile Grid Layout - terug naar 2 kolommen op mobile */
  .all_news_posts {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
	
	.all_news_title {
		padding-top: 170px;
		font-size: 44px !important;
	}
	
  /* Post 1: Volledig breed */
  .all_news_post_large:first-child {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  /* Post 2: 50% breed - links */
  .all_news_post_large:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  /* Post 3: 50% breed - rechts */
  .all_news_post_small:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  /* Post 4-11: Volledig breed onder elkaar */
  .all_news_post_small:nth-child(n+4) {
    grid-column: 1/3;
  }
  /* ==========================================
     NIEUW: Post 4-11 horizontale layout
     Image links, content rechts
     ========================================== */
  .all_news_post_small:nth-child(n+4) .all_news_post_link {
    display: flex;
    align-items: stretch;
  }
  .all_news_post_small:nth-child(n+4) .all_news_post_image {
    flex: 0 0 40%; /* 40% breedte voor image */
    padding-bottom: 0;
    min-height: 150px;
  }
  .all_news_post_small:nth-child(n+4) .all_news_post_content {
    flex: 1; /* Rest van de ruimte voor content */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* Aanpassingen voor grote posts */
  .all_news_post_large .all_news_post_image {
    padding-bottom: 75%; /* 4:3 aspect ratio op mobile */
  }
  .all_news_post_title_overlay {
    padding: 20px;
  }
  .all_news_post_title_overlay .all_news_post_title {
    font-size: 18px;
  }
  .all_news_post_content .all_news_post_title {
    font-size: 16px;
    color: black;
    line-height: 1.3;
  }
  .all_news_post_large:nth-child(2) .all_news_post_image {
    padding-bottom: 140px;
  }
  .all_news_post_image {
    padding-bottom: 140px;
  }
  /* Contact op mobile */
  .all_news_contact {
    padding: 20px;
    margin-top: 30px;
  }
  /* Pagination op mobile */
  .all_news_pagination_link {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .all_news_post_excerpt {
    display: none;
  }
  .all_news_post_small:nth-child(n+4) .all_news_post_link {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .all_news_pagination_inner {
    gap: 5px;
  }
    .all_news_pagination_link {
        min-width: 30px;
        height: 30px;
        padding: 5px 10px;
        font-size: 14px;
    }
  /* Kleinere image op zeer kleine schermen */
  .all_news_post_small:nth-child(n+4) .all_news_post_image {
    flex: 0 0 35%; /* 35% breedte voor image */
    min-height: 120px;
  }
	
	.all_news_title {
        padding-top: 140px;
        font-size: 36px !important;
    }
}

.all_news_title {
    font-family: "Clash Grotesk", sans-serif;
    margin: 0;
    font-weight: 500;
    font-size: 56px;
}

@media (min-width: 768px) {
	.all_news_post {
		max-width: 33%;
	}
}


/*# sourceMappingURL=all_news.css.map */