/* Bericht-Likes */

.article-like {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.article-like:disabled {
  cursor: default;
  opacity: 1;
}

.article-like-icon {
  width: 23px;
  height: 23px;
  display: block;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.18s ease, stroke 0.18s ease, transform 0.18s ease;
}

.article-like.liked {
  color: #e32945;
}

.article-like.liked .article-like-icon {
  fill: #e32945;
  stroke: #e32945;
  animation: article-like-pop 0.22s ease;
}

.article-like-count {
  min-width: 12px;
  line-height: 1;
}

@keyframes article-like-pop {
  0% { transform: scale(0.82); }
  70% { transform: scale(1.16); }
  100% { transform: scale(1); }
}

.berichte-slider-card {
  display: flex;
  flex-direction: column;
  height: auto;
}

.berichte-slider-main-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.berichte-slider-main-link:hover {
  color: inherit;
}

.berichte-slider-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.berichte-slider-text p {
  flex: 1;
}

.berichte-slider-like {
  display: flex;
  align-items: center;
  padding: 0 24px 24px;
}

.bericht-actions{
  display:flex;
  align-items:center;

  gap:18px;

  margin-top:28px;
}

.bericht-card{
  display:flex;
  flex-direction:column;
}

.article-like{
  margin-left:auto;
}

.bericht-card-content{
  display:flex;
  flex-direction:column;
  flex:1;
}

.bericht-actions .article-like {
  margin: 0;
}

@media (max-width: 700px) {
  .article-like {
    gap: 7px;
    font-size: 14px;
  }

  .article-like-icon {
    width: 22px;
    height: 22px;
  }

  .berichte-slider-like {
    padding: 0 20px 22px;
  }

  .bericht-actions {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-like-icon {
    transition: none;
  }

  .article-like.liked .article-like-icon {
    animation: none;
  }
}
