.YoutubeVideoList_defaultSlider{
	margin-bottom:10px;
}
.GridPanel {
    padding: 5px;
    border: 1px solid #5473e424;
}
.YoutubeVideoList_defaultSlider .VideoHeader {
  position: relative;
  margin-bottom: 0px;
  padding-bottom: 10px;
}

.YoutubeVideoList_defaultSlider .VideoHeader .Text {
    width: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  border-left: 4px solid #1e73be;
  border-radius: 0 7px 7px 0;
  background: linear-gradient(90deg, rgba(7, 87, 127, 0.05), rgba(7, 87, 127, 0));
  color: #1e73be;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0;
}


.YoutubeVideoList_defaultSlider {
  padding: 0;
  background: transparent;
}

.YoutubeVideoList_defaultSlider .VideoList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.YoutubeVideoList_defaultSlider .VideoItem {
  flex: 0 0 calc((100% - 72px) / 5);
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(8, 82, 118, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(4, 48, 72, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.YoutubeVideoList_defaultSlider .VideoItem:hover {
  transform: translateY(-0px);
  border-color: rgba(3, 91, 135, 0.42);
  box-shadow: 0 12px 28px rgba(4, 48, 72, 0.14);
}

.YoutubeVideoList_defaultSlider .VideoItem .image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef6fa;
}

.YoutubeVideoList_defaultSlider .VideoItem .image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 3px solid #1e73be;
  background: linear-gradient(to top, rgba(3, 47, 70, 0.22), transparent 45%);
  pointer-events: none;
}

.YoutubeVideoList_defaultSlider .VideoItem .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.YoutubeVideoList_defaultSlider .VideoItem:hover .image img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.03);
}

.YoutubeVideoList_defaultSlider .VideoItem .title {
  min-height: 50px;
  padding: 10px 12px 12px;
  font-size: 13px;
  font-weight: 600;
    text-align: left;
  line-height: 1.35;
  color: #1e73be;
  background: #fff;
}

.YoutubeVideoList_defaultSlider .GridPanel > span:has(.CurrentPage, .NumberPage) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  flex-wrap: wrap;
    margin-bottom:5px;
}

.YoutubeVideoList_defaultSlider .GridPanel > span:has(.CurrentPage, .NumberPage) .CurrentPage,
.YoutubeVideoList_defaultSlider .GridPanel > span:has(.CurrentPage, .NumberPage) .NumberPage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.YoutubeVideoList_defaultSlider .GridPanel > span:has(.CurrentPage, .NumberPage) .CurrentPage {
  color: #fff;
  border: 1px solid #1e73be;
  background: #1e73be;
  box-shadow: 0 6px 16px rgba(7, 87, 127, 0.28);
}

.YoutubeVideoList_defaultSlider .GridPanel > span:has(.CurrentPage, .NumberPage) .NumberPage {
  color: #1e73be;
  border: 1px solid rgba(7, 87, 127, 0.28);
  background: #fff;
}

.YoutubeVideoList_defaultSlider .GridPanel > span:has(.CurrentPage, .NumberPage) .NumberPage:hover {
  transform: translateY(-0px);
  color: #fff;
  border-color: #1e73be;
  background: #1e73be;
  box-shadow: 0 8px 18px rgba(7, 87, 127, 0.25);
}

/* <= 1023px: 3 video / dòng */
@media (max-width: 1023px) {
  .YoutubeVideoList_defaultSlider .VideoItem {
    flex-basis: calc((100% - 44px) / 3);
  }
}

/* <= 798px: 2 video / dòng */
@media (max-width: 798px) {
  .YoutubeVideoList_defaultSlider .VideoItem {
    flex-basis: calc((100% - 22px) / 2);
  }

  .YoutubeVideoList_defaultSlider .VideoItem .title {
    font-size: 14px;
  }
}