.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

:root {
  --main-orange: #e25200;
  --light-orange: #ffede2;
  --grey-light: #f5f5f5;
  --border: #e5e5e5;
  --error: #e25200;
  --success: #00904b;
  --sidePopinWidth: 700px;
}

.discover__component__block ul,
.discover__component__block li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.discover__component__title {
  font-size: 1.875rem;
  font-weight: 400;
  text-transform: initial;
  color: #1c1c1c;
  line-height: 30px;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .discover__component__title {
    font-size: 2rem;
  }
}
.discover__component__title.text-left {
  text-align: left;
}
.discover__component__title.text-right {
  text-align: right;
}
.discover__component__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0;
}
@media screen and (min-width: 1000px) {
  .discover__component__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.discover__component__item {
  position: relative;
}
.discover__component__link {
  display: block;
  height: 100%;
}
.discover__component__figure {
  position: relative;
  margin: 0;
  height: 100%;
}
.discover__component__image {
  display: block;
  width: 100%;
  height: auto;
}
.discover__component__video {
  position: relative;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1000px) {
  .discover__component__video {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.discover__component__figcaption {
  font-size: 0.875rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  inset: auto 10px 10px auto;
  background-color: #1c1c1c;
  border-radius: 5px;
  color: #ffffff;
  padding: 5px 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.discover__component__empty {
  text-align: center;
  padding: 60px 20px;
  color: #767676;
}
