.common__header {
  text-align: center;
  padding: 8% 0 4%;
}
.common__title-main {
  font-size: 32.5px;
  padding-bottom: 25px;
  font-weight: bold;
  color: #222;
}
.Msiyoutube__video-closebtn:focus {
  outline: 1px auto #000;
}
.video {
  max-width: 1330px;
  padding: 0 25px;
  margin: 0 auto;
}
.video .list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 50px 0;
}
.video .list__item {
  align-content: stretch;
  flex-direction: column;
  justify-content: stretch;
  vertical-align: top;
  width: calc(100% / 4 - 20px);
  margin: 40px 10px 10px 10px;
}
.video .list__item:hover {
  background: #f7f5f6;
}
.video .list__item:hover .list__img {
  transform: scale(1.1);
}
.video .list__item article {
  overflow: hidden;
  word-break: break-all;
}
.video .list__figure {
  cursor: pointer;
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.video .list__figure::after {
  display: inline-block;
  content: url('../../imgs/video/play-icon.png');
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.video .list__img {
  width: 100%;
  transition: 0.3s all ease-in;
}
.video .list__txt {
  padding: 15px 10px 25px;
}
.video .list__date,
.video .list__desc {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
.video .list__date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-gray-500);
}
.video .list__date svg {
  margin: 0 5px 0 0;
}
.video .list__title {
  padding: 10px 0;
  font-size: var(--title-sm);
  font-weight: bold;
  color: #222;
}
@media (max-width: 991px) {
  .video .list__item {
    width: calc(100% / 2 - 20px);
  }
}
@media (max-width: 640px) {
  .video .list__item {
    width: 100%;
    margin: 25px auto 10px;
  }
}
.video .pagination {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.video .pagination__btn {
  height: 100%;
  padding: 5px 15px;
  border: 1px solid #f7f5f6;
  border-radius: 5px;
  margin: 0 5px;
  background: #fff;
  font-family: var(--MSIBodyFont);
}
.video .pagination__btn:hover {
  background: #f7f5f6;
}
.video .pagination__btn:disabled {
  cursor: not-allowed;
}
.video .pagination__btn:focus {
  outline: 1px auto #000;
}
@media (max-width: 640px) {
  .video .pagination__btn {
    width: calc(50% - 10px);
  }
}
