.block-blog-article-card {
  color: #4e4030;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  overflow: hidden;
  border-radius: var(--border-radius);
  &.article-card-border{
    border: 1px solid rgb(var(--color-entry-line));
  }
}

.block-blog-article-card__cover {
  width: 184px;
  height: 184px;
}

.block-blog-article-card__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 184px;
  aspect-ratio: var(--aspect-ratio);
  padding: var(--padding);
  overflow: hidden;
  background-color: rgb(243 243 243 / 100%);
}

.block-blog-article-card__image-wrapper svg,
.block-blog-article-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-blog-article-card__date-author {
  opacity: 0.6;
  .row-gap{
    width: 6px;
    display: inline-block;
  }
}

.block-blog-article-card__button {
  padding-block-end: 2px;
}

.block-blog-article-card__title {
  display: -webkit-box;
  flex-shrink: 0;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-weight: 400;
}

.block-blog-article-card__info {
  color: rgb(var(--color-text));
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.block-blog-article-card__info-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.block-blog-article-card__button{
  border-radius: 24px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  gap: 10px;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  background: rgb(var(--color-button-background));
  color: rgb(var(--color-button-text));
}

.block-blog-article-card__button.no-underline::after{
  content: "";
  display: none!important;
}

@media (max-width: 959px) {
  .block-blog-article-card{
    padding: 16px;
    gap: 16px;
  }
  .block-blog-article-card__image-wrapper {
    width: 102px;
    height: 102px;
  }
  .block-blog-article-card__button{
    height: 40px;
    padding: 13px 16px;
    font-size: 14px;
  }
  .block-blog-article-card__title {
    max-width: 120px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}