.content-item {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  border-radius: 10px;
  overflow: hidden;
  color: #333;
  margin-bottom: 15px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.content-item .img-wrap {
  aspect-ratio: 16 / 9;
}
.content-item img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.content-item .overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.content-item .title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background-color: #fff;
  padding: 0 10px;
}

.content-item .title p {
  margin: 0;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: bold;
  flex: 1;
}

.content-item .title .svg-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #000;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.content-item .title .svg-wrap svg {
  color: #fff;
  height: 32px;
  width: 32px;
}

.content-item:hover .overlay {
  display: block;
}

.content-item:hover p {
  text-decoration: underline;
}
