.categories-mag {
  background: #1f2023;
}
.categories-mag__container {
  padding: 0 15px;
}
.categories-mag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1410px) {
  .categories-mag__list {
    gap: 24px;
  }
}
.categories-mag__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 22.5px);
          flex: 0 0 calc(25% - 22.5px);
  max-width: calc(25% - 22.5px);
  padding: 15px 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #3a3a3a;
  border-radius: 20px;
  background: linear-gradient(39deg, #1e212a 0%, #1b3b89 100%);
}
@media (max-width: 1410px) {
  .categories-mag__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% - 18px);
            flex: 0 0 calc(25% - 18px);
    max-width: calc(25% - 18px);
  }
}
@media (max-width: 1200px) {
  .categories-mag__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 12px);
            flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .categories-mag__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 100%;
  }
}
.categories-mag__item-photo {
  margin: 0;
  overflow: hidden;
}
.categories-mag__item-photo-image {
  display: block;
  min-width: 100%;
  width: 100%;
  height: auto;
}
.categories-mag__item-title {
  margin: 24px 0 0;
  font-family: "Onest", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  color: #fff;
}
.categories-mag__item-description {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 2px 0 0;
  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #a8aaae;
}
.categories-mag__item-actions {
  margin: 20px 0 0;
}
.categories-mag__item-actions-button {
  display: inline-block;
  width: 100%;
  padding: 10px;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 8px;
  background-color: #285bd9;
  -webkit-transition: background-color ease-out 0.2s;
  transition: background-color ease-out 0.2s;
  cursor: pointer;
}
.categories-mag__item-actions-button:hover {
  background-color: #224fc2;
}