* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-y: auto;
}

.widget {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 18px 18px;
}

#videos {
  width: 100%;
}

.video {
  width: 100%;
  padding: 0 0 13px;
  margin: 0 0 13px;
  border-bottom: 1px solid #ddd;
}

.video:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.video-thumbnail {
  display: block;
  width: 100%;
  margin: 0 0 7px;
}

.video-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-info {
  width: 100%;
}

.video-title {
  display: block;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.video-title a {
  color: #005cb9;
  text-decoration: none;
}

.video-title a:hover,
.video-title a:focus {
  text-decoration: underline;
}

.video-date {
  margin: 3px 0 0;
  font-size: 14px;
  line-height: 1.3;
  color: #555;
}

.status {
  margin: 0;
  font-size: 14px;
  color: #666;
}

@media (max-width: 480px) {
  .widget {
    padding: 12px 14px 16px;
  }

  .video-title {
    font-size: 15px;
  }

  .video-date {
    font-size: 13px;
  }
}
