.news-visual-bg {
  background-image: url("../images/visual__itmedia-img.webp");
}

.news-grid {
  padding: 100px 0;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateY(-8px);
}

.news-thumb {
  position: relative;
  padding-bottom: 66.67%;
  overflow: hidden;
}

.news-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 24px;
}

.news-content .date {
  display: block;
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.news-content .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #111;
}

.news-content .desc {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    padding: 60px 0;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .news-content {
    padding: 20px;
  }

  .news-content .title {
    font-size: 18px;
  }

  .news-content .desc {
    font-size: 14px;
  }
}
