.blockCards {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    max-width: 820px;
}
.blockCard__like {
    width: 18px;
}

.blockCard__clock {
    width: 15px;
  vertical-align: middle;
    fill: #AD7D52;
}
.blockCard__time {
    font-size: 12px;
    color: #AD7D52;
    vertical-align: middle;
    margin-left: 5px;
}

.blockCard__clock-info {
    float: right;
}

.blockCard__img {
  visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 235px;
  border-top-left-radius: 12px;
border-top-right-radius: 12px;
  
}

.blockCard__info-hover {
    position: absolute;
    padding: 16px;
  width: 100%;
  opacity: 0;
  top: 0;
}

.blockCard__img--hover {
  transition: 0.2s all ease-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
  position: absolute;
    height: 235px;
top: 0;
  
}
.blockCard {
  transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
  background-color: rgba(200, 163, 99, 0.03);
  position: relative;
  overflow: hidden;
}
.blockCard:hover {
  box-shadow: 0px 30px 18px -8px rgba(0, 0, 0,0.1);
    transform: scale(1.10, 1.10);
        border-radius: 10px;
}

.blockCard__info {
z-index: 2;
  background-color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 16px 24px 24px 24px;
}

.blockCard__category {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #868686;
}

.blockCard__title {
    margin-top: 5px;
    margin-bottom: 10px;
}

.blockCard__by {
    font-size: 12px;
    font-weight: 500;
}

.blockCard__page {
    font-weight: 600;
    text-decoration: none;
    color: #AD7D52;
}

.blockCard:hover .blockCard__img--hover {
    height: 100%;
    opacity: 0.3;
}

.blockCard:hover .blockCard__info {
    background-color: transparent;
    position: relative;
}

.blockCard:hover .blockCard__info-hover {
    opacity: 1;
}
.card {
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: none;
    border-radius: 0;
}