main {
  margin-top: 100px;
  width: 100%;
  padding: 0;
}

.banner {
  width: 100%;
  height: 300px;
  background: url('../../../pictures/blog/elefant\ colour.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 40px;
}


/* BLOG GRID */
.blog-container-wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

.blog-container{
  display:grid;
  gap:30px;
}

/* POST */
.blog-post{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  background:#fff;
  transition:.3s;
}

.blog-post:hover{
  transform:translateY(-5px);
}

.blog-image img{
  width:100%;
  height:300px;
  object-fit:cover;
  user-select:none;
}

.blog-content{
  padding:20px;
}

.blog-content h2{
  color:var(--accent-green);
}

.blog-content p{
  color:var(--muted);
  line-height:1.6;
}

.read-more{
  display:inline-block;
  margin-top:10px;
  color:var(--accent-yellow);
  font-weight:600;
}

.new-badge{
  position:absolute;
  margin:10px;
  background:var(--accent-yellow);
  padding:6px 10px;
  border-radius:8px;
  font-weight:bold;
}