.blog{
  /* background:#000; */
  /* color:#fff; */
  /* padding:100px 20px; */
  /* font-family: Arial, sans-serif; */
}

.blog__container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.blog__header{
  text-align:center;
  margin-bottom:60px;
}

.blog__header h2{
  font-size:42px;
  font-weight:800;
}

.blog__header h2 span{
  border-bottom:2px solid #fff;
}

.blog__header p{
  color:#aaa;
  margin-top:10px;
}

/* GRID */
.blog__grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:30px;
}

/* CARD */
.blog__card{
  background:#0a0a0a;
  border:1px solid #222;
  border-radius:14px;
  overflow:hidden;
  transition:0.4s;
  position:relative;
}

.blog__card:hover{
  transform:translateY(-8px);
  border-color:#fff;
}

/* IMAGE */
.blog__img{
  height:200px;
  background:linear-gradient(135deg,#111,#000);
  border-bottom:1px solid #222;
}

/* CONTENT */
.blog__content{
  padding:25px;
}

.blog__content span{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#888;
}

.blog__content h3{
  font-size:20px;
  margin:10px 0;
  line-height:1.4;
}

.blog__content p{
  font-size:14px;
  color:#bbb;
  line-height:1.6;
}

.blog__content a{
  display:inline-block;
  margin-top:15px;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  border-bottom:1px solid #fff;
  padding-bottom:2px;
  transition:0.3s;
}

.blog__content a:hover{
  opacity:0.6;
}

/* RESPONSIVE */
@media(max-width:768px){
  .blog__grid{
    grid-template-columns:1fr;
  }

  .blog__header h2{
    font-size:32px;
  }
}