.page-blog {
  padding-bottom: 30px;
}

.page-blog {
  padding: 100px 0 30px 0;
  display: flex;
  flex-direction: column;
}

.page-blog .page-blog__hero__container {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

.page-blog__hero__title {
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 800;
  color: oklch(14.5% 0 0);
  text-align: center;
  margin-bottom: 12px;
}

.page-blog .page-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.page-blog .page-blog__card {
  height: 100%;
}

.page-blog .page-blog__card__image-wrapper {
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/10;
  background-color: rgb(245 246 254);
}

.page-blog .page-blog__card__image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-blog .page-blog__card__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 12px;
  color: oklch(14.5% 0 0);
  white-space: nowrap;       
  overflow: hidden;          
  text-overflow: ellipsis;   
  display: block;           
  width: 100%;              
}

.page-blog .page-blog__desc {
  display: block;
  font-size: 14px;
  margin-top: 8px;
}

.page-blog .page-blog__pagination {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 32px;
  font-family: 'inter', sans-serif;
}

.page-blog .page-blog__pagination a {
  color: oklch(14.5% 0 0);
}

.page-blog .page-numbers {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog .page-numbers.current {
  background-color: #3582c4;
  color: #fff;
}

.page-blog .page-numbers.next, .page-blog .page-numbers.prev {
  width: auto;
}

@media (min-width: 768px) {
  .page-blog .page-blog__grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
  }
}