.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  direction: rtl;
  font-family: sans-serif;
  max-width: 400px;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}
.blog-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-card-body {
  padding: 22px;
}

.blog-meta-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 12px;
}

.blog-category {
  background: #fde6c8;
  color: var(--color-brand-accent);
  padding: 5px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.2s;
  font-weight: 600;
}
.blog-category:hover {
  background: var(--color-brand-accent);
  color: #fff;
}

.blog-title {
  font-size: 20px;
  margin: 0 0 12px;
  line-height: 1.5;
}
.blog-title a {
  text-decoration: none;
  color: #222;
  transition: 0.2s;
}
.blog-title a:hover {
  color: var(--color-brand-accent);
}

.blog-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-tags {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.blog-tag {
  background: #f2f2f2;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
  color: #555;
  transition: 0.2s;
}
.blog-tag:hover {
  background: var(--color-brand-accent);
  color: #fff;
}

.blog-meta-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
  padding-top: 14px;
  border-top: 1px solid #eee;
}

.blog-author, .blog-date, .blog-readtime {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #777;
}

.blog-readmore {
  display: flex;
  gap: 3px;
  margin-top: 16px;
  font-weight: 600;
  text-decoration: none;
  align-items: center;
  color: var(--color-brand-accent);
  transition: 0.2s;
}
.blog-readmore svg {
  width: 16px;
}
.blog-readmore:hover {
  color: rgb(122, 74, 31);
}

/*# sourceMappingURL=blog-card.css.map */
