.main-blog {
  background-color: rgb(var(--color-background));
}

.main-blog__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.main-blog__list {
  --gap: 22px;
}

.main-blog__title {
  color: white;
}

.main-blog__load-more-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.main-blog__loader {
  display: none;
  justify-content: center;
  padding: 8px 0;
}

.main-blog__loader--active {
  display: flex;
}

.main-blog__loader::after {
  content: "";
  width: 28px;
  height: 28px;
  border: 2px solid #e0e0e0;
  border-top-color: var(--color-text);
  border-radius: 50%;
  animation: main-blog-spin 0.7s linear infinite;
}

@keyframes main-blog-spin {
  to {
    transform: rotate(360deg);
  }
}

.blog-category-hero-section {
  margin-left: calc(var(--page-width-padding) * -1);
  margin-right: calc(var(--page-width-padding) * -1);
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #333;
  color: #FFFFFF;
  margin-bottom: 60px;
  aspect-ratio: 1440 / 720;
  min-height: 300px;
  max-height: 720px;
  background-attachment: scroll !important;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.blog-category-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.main-blog__button-back {
  padding-block-start: 40px;
  text-align: center;
}
.main-blog__button-back svg {
  transform: rotate(90deg);
}
.blog-hero-section__wrapper {
  position: relative;
  z-index: var(--zindex-s);
  padding-top: var(--size-48);
  padding-bottom: var(--size-48);
}