.info {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  align-items: flex-start;
}

.left {
  width: 100%;
  max-width: calc(100% - 380px);
}

.right {
  width: 320px;
  flex-shrink: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.news-item {
  display: flex;
  gap: 16px;
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  align-items: flex-start;
}

.news-title {
  font-weight: bold;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title:hover {
  color: #4375FF; 
}

.news-img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.news-placeholder {
  width: 160px;
  height: 100px;
  background: #dcdcdc;
  border-radius: 8px;
  flex-shrink: 0;
}

.news-content {
  display: flex;
  flex-direction: column;
}

.news-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.news-content p {
  margin: 8px 0 6px;
  color: #333;
  font-size: 14px;
}

.news-date {
  font-size: 12px;
  color: #3371e3;
  font-weight: 500;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.pagination span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  background: #e0e0e0;
  color: #000;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 50%; 
  border: none;
}

.pagination .active {
  background: #4375FF;
  color: white;
  font-size: 14px;
}

.pagination .arrow {
  background: none;
  color: #4375FF;
  font-size: 28px;
  font-weight: bold;
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 0px 24px;
}

.pagination .arrow.disabled {
  color: #999;
  cursor: not-allowed;
}

.pagination .ellipsis {
  cursor: default;
  background: transparent;
  color: #999;
  font-size: 16px;
  width: auto;
  height: auto;
  padding: 0 8px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.news-views {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #444;
  line-height: 1; 
}

.eye-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}



