.c-block {
  margin: clamp(32px, 6vw, 104px) 0;
}

.c-block__grid {
  row-gap: clamp(24px, 4vw, 40px);
}

.c-block__card-footer {
  border-top: 1px solid #000;
  padding-top: clamp(16px, 2vw, 24px);
}

.c-block__card-footer .btn {
  font-size: 13px;
  padding: 8px 29px;
}

.c-block__card-footer .btn:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.c-block__card-excerpt {
  margin-bottom: clamp(16px, 2vw, 24px);
  font-size: clamp(14px, 1.5vw, 20px);
}

.c-block__card-title {
  color: #ffeb6c;
  text-decoration: underline;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.c-block__card-thumb {
  margin-bottom: clamp(16px, 2vw, 24px);
  z-index: 1;
}

.c-block__card-thumb:before {
  padding-top: 51%;
}

.c-block__card-thumb img {
  object-fit: cover;
  object-position: 50% 50%;
}

.c-block__card-thumb:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(0deg, rgba(0,0,0,0.35), transparent 75%);
  transition: 0.4s ease opacity;
}

.c-block__card:hover .c-block__card-thumb:after {
  opacity: 0;
}

.c-block__card-cat {
  right: clamp(16px, 2vw, 24px);
  top: clamp(16px, 2vw, 24px);
  width: auto;
  left: auto;
  font-weight: bold;
  height: auto;
  font-size: 13px;
  padding: 5px 10px;
  color: #fff;
  background: #333;
}

.c-block__card-cat.Blogs {
  background: #00c7fd;
}

.c-block__card-cat.Podcasts {
  background: #ff5662;
}

.c-block__card-cat.Case_Studies {
  background: #90ba29;
}

.c-block__card-cat.Press_Releases {
  background: #e96115;
}

.c-block__card-cat.In_the_News {
  background: #edb200;
}

.c-block__card-cat.Videos {
  background: #00c7fd;
}

.c-block__controls select {
  display: block;
  height: 36px;
  border: none;
  padding: 0 15px;
  border-radius: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 30.727 30.727'%3E%3Cpath d='M29.994 10.183L15.363 24.812.733 10.184a2.5 2.5 0 1 1 3.536-3.536l11.095 11.093L26.461 6.647a2.5 2.5 0 1 1 3.533 3.536z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}

@media screen and (min-width: 576px) {
  .c-block__controls {
    width: calc(50% - 0.8rem);
  }
}

@media screen and (min-width: 992px) {
  .c-block__controls {
    width: calc(25% - 1rem);
  }
}