section.news {
  padding-top: 75px;
  padding-bottom: 120px;
  background-color: #f7f8f9;
}

.news .heading {
  text-align: center;
}

.news h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.news {
  background-color: #f7f8f9;
}

.news .video-container {
  position: relative;
  height: 40vh;
  background-color: #151414;
  background-image: url('../assets/videos/banner.jpg');
  background-size: cover;
  background-position: center;
}

.news .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news .video-container h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  z-index: 1;
  color: var(--uttc-white);
  width: calc(100% - 32px);
  text-align: center;
}

.news .news__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 100%;
  margin: 90px auto 0;
}

.news .news__item {
  position: relative;
  flex: 0 0 290px;
  background-color: var(--uttc-white);
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .1);
  border-radius: 4px;
}

.news .news__item::after {
  content: "\30FB\30FB\30FB";
  position: absolute;
  font-size: 20px;
  letter-spacing: -12px;
  left: 22px;
  bottom: 20px;
  color: #1e1e1e;
  opacity: .3;
}

.news .news__item-image {
  max-width: 100%;
  overflow: hidden;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.news .news__item-image img {
  max-width: 100%;
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.news .news__item-content {
  padding: 15px 20px 30px;
}

.news .news__item-date {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--uttc-gray);
}

.news .news__item-title {
  font-size: 22px;
  line-height: 1.182;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--uttc-black);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news .news__item-description {
  font-size: 14px;
  line-height: 1.429;
  color: var(--uttc-gray);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 60px;
}

.news .news__item-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  border-radius: 4px;
  transition: all .5s;
}

.news .news__item:hover .news__item-overlay {
  opacity: 1;
  pointer-events: all;
  background-color: rgba(0, 0, 0, .85);
}

.news .news__item-overlay .btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  background-color: transparent;
  color: var(--uttc-white);
  border: 2px solid var(--uttc-white);
  border-radius: 4px;
  padding: 12px 36px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: all .2s;
  white-space: nowrap;
}

.news .news__item-overlay .btn:hover {
  background-color: var(--uttc-gold);
  border: 2px solid var(--uttc-gold);
}

.news .news__item a {
  text-decoration: none;
}

@media (max-width: 991.98px) {
  section.news {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .news h2 {
    font-size: 36px;
  }

  .news .news__items {
    margin-top: 60px;
  }

  .news .news__item {
    flex: 0 0 330px;
  }

  .news__item-overlay {
    display: none;
  }
}

header .header__links a {
  position: relative;
}

header .header__links a:nth-child(3)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: var(--uttc-gold);
  content: '';
}