.block-feature-article-card {
  flex: 1;
  height: 712px;
  color: #4e4030;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.block-feature-article-card__cover {
  width: 100%;
  height: 100%;
}

.block-feature-article-card .block-feature-article-card__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: var(--padding);
  overflow: hidden;
  background-color: rgb(243 243 243 / 100%);
  border-radius: var(--border-radius);
}

.block-feature-article-card__image-wrapper svg,
.block-feature-article-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-feature-article-card__date-author {
  opacity: 0.6;
  .row-gap{
    width: 6px;
    display: inline-block;
  }
}

.block-feature-article-card__button {
  padding-block-end: 2px;
}

.block-feature-article-card__title {
  display: -webkit-box;
  flex-shrink: 0;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-weight: 400;
  z-index: 1;
}
.block-feature-article-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px;
  color: #fff;
  &::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    opacity: var(--opacity);
    z-index: 0;
  }
}
.block-feature-article-card__info-content{
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}

.block-content{

}