.blog-section {
  padding: 60px 0;
  background: transparent;
}
.blog-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-title {
  text-align: center;
  font-size: 5em;
  color: #28a4fa;
  opacity: 0.7;
  margin-bottom: 20px;
}

.blog-grid {
  font-family: "Montserrat", sans-serif;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.blog-main {
  flex: 0 0 60%;
}
.blog-sidebar {
  flex: 0 0 40%;
}
.feature-post {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.post-media .post-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
}
.post-content {
  padding: 18px 20px;
}
.post-title {
  font-size: 22px;
  margin: 0 0 8px 0;
  font-weight: 600;
}
.post-excerpt {
  color: #555;
  margin: 0 0 12px 0;
}
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #777;
  font-size: 14px;
}
.post-meta.small {
  font-size: 13px;
}
.meta-item {
  display: inline-flex;
  align-items: center;
  margin-right: 16px;
  gap: 10px;
}
.meta-icon {
  width: 18px;
  height: 18px;
  color: #666;
  display: inline-block;
}

.side-posts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.side-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
.side-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.side-title {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
}
.side-content {
  flex: 1;
}
.side-excerpt {
  color: #666;
  font-size: 13px;
  margin: 4px 0 6px 0;
  line-height: 1.4;
}

.post-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.feature-post {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.post-link:hover .feature-post {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.side-post-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}
.side-post {
  transition: all 0.3s ease;
}
.side-post-link:hover .side-post {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(40, 164, 250, 0.12);
  background: #f8fbff;
}

@media (max-width: 900px) {
  .blog-grid {
    flex-direction: column;
  }
  .blog-main,
  .blog-sidebar {
      flex: 0 0 100%;
      width: 95%;
    }
  .post-media .post-img {
    height: 220px;
  }
  .side-post-link,
  .side-post {
    width: 100%;
  }
  .side-post {
    display: flex;
  }
}
