.g-top-panel--relative {
  display: none;
}
.btn_more {
  display: flex;
  justify-content: center;
}
.btn_more span {
  border-radius: 250px;
  border: 1px solid #4ED7B4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11.5px 32px;
  color: #000;
  font-size: 18px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn_more span:hover {
  background: #4ED7B4;
  color: #fff;
}
.g-pagination {
  display: none;
}
.g-article-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 24px;
  margin: 0 auto 50px;
}
.g-article-list .g-article--simple-view {
  position: relative;
  border-radius: 8px;
  margin: 0;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  border: none;
  transition: all 0.3s;
  overflow: hidden;
}
.g-article-list .g-article--simple-view:hover .g-article__name {
  color: #3fd4ae;
}
.g-article-list .g-article--simple-view:hover .g-article__image {
  transform: scale(1.1);
}
.g-article-list .g-article--simple-view:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 32.42%, rgba(0, 0, 0, 0) 100%);
  border-radius: 8px;
}
.g-article-list .g-article--simple-view .g-article__name {
  position: relative;
  z-index: 4;
  color: #FFF;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.g-article-list .g-article--simple-view .g-article__image {
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: 0;
  border-radius: 8px;
}
.g-article-list .g-article--simple-view .g-article__image a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.g-article--simple-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.g-article--simple-view:nth-child(13n + 1) {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 504px;
}
.g-article--simple-view:nth-child(13n + 2), .g-article--simple-view:nth-child(13n + 3) {
  grid-column: span 2;
  min-height: 240px;
}
.g-article--simple-view:nth-child(13n + 4), .g-article--simple-view:nth-child(13n + 5), .g-article--simple-view:nth-child(13n + 6), .g-article--simple-view:nth-child(13n + 7) {
  grid-column: span 3;
  min-height: 400px;
}
.g-article--simple-view:nth-child(13n + 8), .g-article--simple-view:nth-child(13n + 9), .g-article--simple-view:nth-child(13n + 10), .g-article--simple-view:nth-child(13n + 11), .g-article--simple-view:nth-child(13n + 12), .g-article--simple-view:nth-child(13n + 13) {
  grid-column: span 2;
  min-height: 280px;
}
@media (max-width: 960px) {
  .g-article-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .g-article-list .g-article--simple-view {
    min-height: 240px !important;
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .g-article-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .g-article-list .g-article--simple-view {
    min-height: 240px !important;
    grid-column: auto;
    grid-row: auto;
  }
}
