.search .main-banner div {
    top: 0;
    width: 100%;
    height: 80px;
    background-repeat: no-repeat;
}
.search #main-title {
    margin-bottom: 40px;
}
.search figure img {
    width: 100%;
    border-radius: 10px;
}
.search figure .thumbnail {
    height: 210px;
    overflow: hidden;
    border-radius: 10px;
}
.search .detail {
    padding: 15px 0px;
}
.search .detail .title {
    font-weight: bold;
    line-height: 1.6;
    font-size: 18px;
    color: var(--blue-color);
}
.search figure:hover .title {
    color: var(--orange-color);
}

.search figure .block-type {
    font-size: 15px;
}
.search figure .block-type .label {
    color: var(--black-color);
}
.search figure .block-type .type {
    font-weight: bold;
    color: var(--green-color);
}

/* iPad */
@media(max-width: 769px) {
    .search .col-4 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .search figure .thumbnail {
        height: 190px;
    }
}

  /* Mobile */
  @media(max-width: 576px) {
      .search .col-4 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
      }
      .search .main-banner {
          margin-bottom: 0px !important;
      }
      .search #main-title {
          margin-bottom: 25px !important;
      }
  }