.section03 {
  padding: 30px 20px;
  background: #f4f4f4;
  display: flex;
    gap: 20px;
}

.section03 h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

/* === CSS Post Grid (2x3) === */
.section03 .post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.section03 .post {
  
}

.section03 .thumb_div img.thumbnail-1280 {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.section03 .title p {
  font-size: 14px;
  margin-top: 10px;
  
  color: #333;
}

.section03 .description p {
    font-size: 14px;
  
  font-weight: 400;
  color: gray;
}

/* === Python Post Layout === */
.section03 .python-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0px;
}

.section03 .post-top {
  width: 100%;
}

.section03 .post-row-bottom {
  display: flex;
  gap: 20px;
}

.section03 .post-bottom {
  flex: 1;
}

.thumb_div4 {
    width: 100%;
}

/* === Responsive === */
@media (max-width: 768px) {
  .section03 .post-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section03 .post-row-bottom {
    flex-direction: row;
  }
  
  .section03 {
      display: block;
  }
  .section03 .title p {
  font-size: 12px;
  
}
}
