.news-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 8px;
  margin: 60px 0 210px 0;
  -webkit-box-shadow: 0 5px 15px 0 rgba(37, 44, 97, 0.07), 0 2px 4px 0 rgba(93, 100, 148, 0.15);
  box-shadow: 0 5px 15px 0 rgba(37, 44, 97, 0.07), 0 2px 4px 0 rgba(93, 100, 148, 0.15);
}

.news-container:before {
  content: "";
  position: absolute;
  bottom: -140px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url("/public/img/prostars-logo-gray.svg") no-repeat center center;
  background-size: contain;
  width: 260px;
  height: 70px;
  opacity: 0.4;
}

.news-container .left-side {
  width: 260px;
  border-top-left-radius: inherit;
  overflow: hidden;
}

.news-container .left-side .title-block {
  background: #ca3436;
  font-size: 42px;
  line-height: 60px;
  padding: 90px 30px;
  font-weight: 600;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.news-container .left-side .title-block:before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -10px;
  width: 260px;
  height: 80px;
  background: url(/public/img/prostars-logo-white.svg) no-repeat center center;
  background-size: contain;
  opacity: 0.1;
}

.news-container .right-side {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.news-container .right-side .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 40px;
  border-bottom: 1px solid #e3e2e2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-container .right-side .header .title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 30px;
  font-weight: 500;
}

.news-container .right-side .header .categories-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.news-container .right-side .header .category {
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 22px;
  margin: 0 0 0 20px;
  font-size: 13px;
  color: #9b9b9b;
  font-weight: 500;
  -webkit-transition: all 120ms ease-out;
  transition: all 120ms ease-out;
}

.news-container .right-side .header .category:hover {
  color: #000;
}

.news-container .right-side .header .category.-active {
  background: #ca3537;
  -webkit-box-shadow: 0 5px 12px -4px rgba(174, 40, 42, 0.8);
  box-shadow: 0 5px 12px -4px rgba(174, 40, 42, 0.8);
  color: #fff;
  -webkit-transition: all 240ms ease-out;
  transition: all 240ms ease-out;
  background-image: linear-gradient(0deg, #ca3537 0%, #ea3335 100%);
}

.news-container .right-side .news-bar {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}

.news-container.-loading .right-side .news-bar {
  opacity: 0;
  -webkit-transition: opacity 120ms ease-out;
  transition: opacity 120ms ease-out;
  visibility: hidden;
}

.news-container .right-side .news-block {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 33%;
  border-left: 1px solid #e3e2e2;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}

.news-container .subscribe-block {
  position: relative;
  padding: 30px;
}

.news-container .subscribe-block .title {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
}

.news-container .subscribe-block .description {
  font-size: 14px;
  line-height: 1.3;
  color: #888888;
  margin: 20px 0 30px;
}

.news-container .subscribe-block .input-container {
  position: relative;
  border-radius: 24px;
}

.news-container .subscribe-block input[type="text"] {
  border-radius: inherit;
  padding: 12px 22px 12px 46px;
  border: 1px solid #e3e2e2;
  background: #f6f6f6;
}

.news-container .subscribe-block input[type="text"]:focus {
  border-color: darkgrey;
}

.news-container .subscribe-block input[type="submit"] {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  padding: 20px;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: #ca3537;
  color: #fff;
  -webkit-transition: all 240ms ease-out;
  transition: all 240ms ease-out;
  border: none;
  background-image: linear-gradient(0deg, #ca3537 0%, #ea3335 100%);
}

.news-container .subscribe-block i {
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 20px;
  pointer-events: none;
}

.news-container .subscribe-block i:before {
  content: "mail_outline";
}

.news-container .subscribe-block input[type="submit"]:hover {
  -webkit-box-shadow: 0 7px 12px -2px rgba(174, 40, 42, 0.79);
  box-shadow: 0 7px 12px -2px rgba(174, 40, 42, 0.79);
}

.news-container .news-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.news-container .news-block .publish-date {
  font-size: 13px;
  line-height: 22px;
  color: #9b9b9b;
  font-weight: 500;
}

.news-container .news-block .news-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  margin: 10px 0 20px 0;
  height: 70px;
  overflow: hidden;
}

.news-container .news-block .news-title:hover {
  text-decoration: underline;
}

.news-container .news-block .news-category {
  font-size: 16px;
  line-height: 1;
  color: #4e4e4e;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.news-container .news-block .news-category:hover {
  color: #ca3436;
}

.news-container .news-block .news-image {
  height: 170px;
  background: #f6f6f6;
  border-radius: 18px;
  overflow: hidden;
  margin: 30px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.news-container .news-block .news-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
  color: #9b9b9b;
  font-weight: 400;
  text-align: justify;
  max-height: 180px;
  overflow: hidden;
  position: relative;
  line-height: 1.4;
}

.news-container .news-block .news-content:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-box-shadow: 0 0 14px 9px #fff;
  box-shadow: 0 0 14px 9px #fff;
  z-index: 1;
}

.news-container .news-block .news-footer {
  padding: 20px 0 0 0;
}

.news-container .news-block .learn-more {
  font-size: 16px;
  display: inline-block;
  padding: 10px 0;
}
