.news-block-one {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin:20px;
}

.news-block-one:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.image-box {
  position: relative;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.news-block-one:hover .image-box img {
  transform: scale(1.05);
}

.view-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}

.view-btn a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px;
  border-radius: 50%;
  color: #333;
  transition: background 0.3s;
}

.view-btn a:hover {
  background: #007bff;
  color: #fff;
}

.lower-content {
  padding: 20px 15px;
  text-align: center;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #007bff;
}