.videos-container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 145px 20px 60px;
}

.videos-header {
  margin-bottom: 32px;
}

.videos-title {
  margin: 50px 0 24px;
  text-align: center;
}

.videos-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.videos-meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.videos-meta-right {
  gap: 16px;
  display: flex;
  align-items: center;
}

.videos-issues-label {
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
}

.videos-count {
  font-size: 15px;
  font-weight: 300;
  color: var(--navy-90);
}

.videos-search-input {
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--grey-40);
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--blue-100);
  background: #fff;
  min-width: 240px;
  outline: none;
  transition: border-color 0.2s;
}

.videos-search-input:focus {
  border-color: var(--orange-100);
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 16px;
  row-gap: 16px;
}

.videos-no-results {
  color: var(--grey-90);
  font-size: 15px;
}

.iks-videos {
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
}

.iks-videos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
}

.iks-videos-see-all {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.iks-videos-list {
  display: flex;
  gap: 20px;
}

.iks-videos-item {
  width: 328px;
  height: 405px;
  border-radius: 8px;
  border: 1px solid var(--grey-70);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.iks-videos-item-thumbnail {
  width: 100%;
  height: 205px;
  overflow: hidden;
  position: relative;
}

.iks-videos-item-thumbnail:hover .iks-videos-item-play {
  opacity: 1;
}

.iks-videos-item-thumbnail img {
  width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
}

.iks-videos-item-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.iks-videos-item-text {
  font-weight: 400;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.iks-videos-item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
}

.iks-videos-item-excerpt {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}

.iks-videos-item-button {
  display: block;
  width: 40px;
  height: 40px;
  background: url("../images/icon-play.svg") center no-repeat;
  background-size: 24px 24px;
}
