/*
  Blog card (shared styles for "Other blogs" / sidebar cards).

  Notes:
  - Keep page-specific layout (container padding, carousel sizing) in page CSS.
  - This file targets the existing markup/classes to avoid risky renames.

  Sources (initial extraction):
  - static/css/blog-detail.css
  - static/css/blog-detail-mobile.css (partial)
  - static/css/encyclopedia.css
*/

.blog-div-right .card {
  padding: 16px;
  border-radius: 16px;
}

.blog-div-right .card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-div-right .card-body p {
  margin-bottom: 0;
}

.blog-div-right .card .ai-top-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

.blog-div-right .card-footer a {
  color: var(--Pink-Dark, #D57BC8);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

