.advList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1380px;
  margin:auto;
  padding: 12px 50px;
}

.advList .advListItem {
  width: 100%;
  min-height: 60px;
  aspect-ratio: 636 / 60;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}

.advList .advListItem .advListImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 824px) {
  .advList {
    gap: 8px;
    justify-content: flex-start;
  }
  
  .advList .advListItem {
    width: calc((100% - 8px) / 2);
  }
}

@media screen and (max-width: 824px) {
  .advList{
    padding: 16px;
  }

  .advList .advListItem {
    display: flex;
    height: 64px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 0px;
  }
}

