.ads-wrap {
  background: #fff;
  padding: 14px 20px 10px;
  border-bottom: 1px solid #e8edf2;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
#ads {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 12px;
  background: transparent;
  margin: 0 auto;
  max-width: 1200px;
}
#ads > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 76px;
  box-sizing: border-box;
}
#ads img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(24,24,24,.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: block;
  border: none;
  background: linear-gradient(135deg,#fff,#fff);
  cursor: pointer;
}
#ads a {
  display: inline-block;
  text-decoration: none;
  border-radius: 15px;
}
#ads img:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 24px rgba(24,24,24,.2);
}
#ads figcaption,
#ads .caption {
  height: 15px;
  font-size: 11px;
  color: #555;
  text-align: center;
  max-width: 76px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 6px;
  line-height: 15px;
}
@media(max-width:480px){
  #ads > div { width: 72px; }
  #ads img { width: 60px; height: 60px; }
}
