.seo-wrapper {
  display: flex;
  gap: 30px;
  max-height: 490px;
}
.seo-title {
  margin-bottom: 30px;
}
.seo-image {
  width: 42%;
  border-radius: 15px;
  overflow: hidden;
}
.seo-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.seo-holder {
  width: 58%;
  overflow-y: auto;
  padding-right: 27px;
}
.seo-holder::-webkit-scrollbar {
  width: 3px;
}
.seo-holder::-webkit-scrollbar-track {
  border-radius: 10px;
  background: linear-gradient(to left, rgba(175, 175, 178, 0) 0%, rgba(175, 175, 178, 0) 30%, rgb(224, 224, 224) 50%, rgba(175, 175, 178, 0) 70%, rgba(175, 175, 178, 0) 100%);
}
.seo-holder::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--secondary);
}

@media (max-width: 992px) {
  .seo-block {
    padding: 20px 0 !important;
  }
  .seo-wrapper {
    flex-direction: column;
    gap: 20px;
    max-height: unset;
  }
  .seo-image {
    width: 100%;
    height: 320px;
  }
  .seo-image img {
    height: 100%;
  }
  .seo-title {
    margin-bottom: 20px;
  }
  .seo-holder {
    width: 100%;
    height: 280px;
    padding-right: 15px;
  }
}/*# sourceMappingURL=block.css.map */