/* DETAIL */

.article-container > *:not(.article-intro-wrapper) {
    max-width:1000px;
    margin: 0 auto;
}

.article-intro-wrapper .article-intro{
    max-width:1000px;
    margin: 0 auto;
    padding-top:150px;
}

.article-container {
  padding: 40px 0px;
  font-family: "Source Sans 3", sans-serif;
}

.article-title {
  font-size: 80px;
  line-height: 100px;
  text-align: center;
  color: #2b517a;
}

.article-date {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.article-image img {
  width: 100%;
  max-height: 450px;
  margin-bottom: 50px;
  display: block;
  object-fit: cover;
}

.article-intro-wrapper {
  background-color: #F6F7FF;
  padding: 30px 20px;
  margin-bottom: 40px;
}

.article-intro p {
  font-weight: bold;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
  color: #2B517A;
}

.article-content p {
  margin-bottom: 50px;
  line-height: 1.8;
  font-size: 15px;
  color: #333;
}

.back-link {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 100px;
  font-family: "Futura Condensed Medium";
    text-transform: uppercase;
}

.back-link a {
  color: #2B517A;
  font-weight: bold;
  text-decoration: underline;
  font-size: 28px;
}

@media screen and (max-width: 1000px){
.article-title{
    font-size: 40px;
    line-height: 60px;
    }
.article-content p {
    padding-left: 20px;
    padding-right: 20px;
}
}

/* OVERZICHT */

.blog-page {
  padding: 100px 30px;
  max-width: 1400px;
  margin: auto;
  font-family: 'Source Sans 3', sans-serif;
}

.blog-page h1{
    margin-bottom: 100px;
}

.featured-posts {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.featured-post {
  background: #f7f9ff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden;
  flex: 1;
}

.featured-post .content {
    min-height: fit-content!important;
    background-color: #F6F7FF;
}

.featured-post .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post .category-tag{
    margin-bottom: 10px;
}

.featured-post .content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list-item .category-tag{
      margin-top: 12px;
}

.category-tag{
  background: #71AAFB;
  color: white;
  font-weight: 500;
  font-size: 16px;
  padding: 6px 10px;
  display: inline-block;
  margin-right: 10px; 
}

.list-item:not(:last-child) {
  border-bottom: 1px solid #eee;

}

.list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
    padding-bottom: 25px;
  padding-top: 25px;
}

.content h2 a{
    font-size:34px;
    margin: 20px 0 10px 0;

}

.content p{
    font-size: 16px;
}

.post-title {
  font-weight: bold;
  color: #2B517A;
  font-family: Futura Condensed Extra Bold;
  font-size: 36px;
  flex-grow: 1;
  text-transform: uppercase;
}

.read-more {
  color: #2B517A;
  text-decoration: underline;
  font-weight: 400;
  font-size: 20px;
}

.mobile-only-list {
  display: none;
}

@media screen and (max-width: 1000px) {
  .featured-posts {
    display: none;
  }

  .mobile-only-list {
    display: block;
  }
}