.commercial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.commercial__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 30px 0;
  width: 100%;
  box-shadow: 0 12px 12px 0 rgba(212, 210, 210, 0.1);
}
.commercial__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 25px 60px;
  width: 100%;
  background-color: #ffffff;
}
.commercial__content__date {
  color: #e22927;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 17.6px;
  line-height: 1.1rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.commercial__content__name {
  margin: 5px 0;
  height: 72px;
  width: 100%;
  color: #1b191c;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 36px;
  line-height: 2.25rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 600;
}
.commercial__video {
  position: relative;
  overflow: hidden;
  display: flex;
  margin: 0;
  padding-top: 56.25%;
  width: 100%;
  height: auto;
  max-height: 460px;
}
.commercial__video__item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .commercial {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .commercial__item {
    margin: 12px;
    width: 49%;
  }
  .commercial__content {
    padding: 40px 25px 90px;
  }
}
@media only screen and (min-width: 1400px) {
  .commercial__item {
    max-width: 490px;
  }
  .commercial__content {
    padding: 50px 50px 100px;
  }
  .commercial__content__name {
    padding-right: 100px;
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 44px;
    line-height: 2.75rem;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
  }
}
@media only screen and (max-width: 767px) {
  .commercial__item {
    max-width: 327px;
  }
}