.post {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 20px 70px;
  direction: rtl;
  font-family: sans-serif;
}
.post-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-brand-accent);
  font-weight: 800;
  margin-bottom: 18px;
  transition: opacity 0.15s ease;
}
.post-back:hover {
  opacity: 0.8;
}
.post-header {
  margin-bottom: 26px;
}
.post-title {
  margin: 14px 0 16px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.35;
  color: var(--color-brand-accent);
  font-weight: 900;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #4A5565;
  font-size: 14px;
  align-items: center;
}
.post-meta span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}
.post-tags .tag-ico {
  width: 25px;
  color: var(--color-background);
}
.post-hero {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  margin: 26px 0 36px;
}
.post-hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}
.post-body {
  line-height: 2;
  color: #222;
  font-size: 17px;
}
.post-body h2,
.post-body h3 {
  margin: 26px 0 10px;
  color: var(--color-brand-primary);
}
.post-body p {
  margin: 0 0 16px;
}
.post-body a {
  color: var(--color-brand-accent);
  font-weight: 800;
}
.post-body img {
  max-width: 100%;
  border-radius: 12px;
}

.ico {
  opacity: 0.85;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.chip:hover {
  transform: translateY(-1px);
}
.chip-category {
  background: #fde6c8;
  color: var(--color-brand-accent);
}
.chip-category:hover {
  background: var(--color-brand-accent);
  color: #fff;
}
.chip-tag {
  background: #f2f2f2;
  color: #555;
  padding: 6px 12px;
  font-size: 12.5px;
}
.chip-tag:hover {
  background: var(--color-brand-accent);
  color: #fff;
}

.author-box {
  margin-top: 46px;
  background: #FFFBEB;
  border-left: 4px solid var(--color-brand-accent);
  border-radius: 14px;
  padding: 18px;
}

.author-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  object-fit: cover;
}
.author-avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.06);
  color: #333;
  font-size: 28px;
}

.author-title {
  margin: 0 0 6px;
  color: var(--color-brand-accent);
  font-size: 18px;
  font-weight: 900;
}

.author-bio {
  margin: 0;
  color: #555;
  line-height: 1.9;
}

.author-more {
  color: var(--color-brand-accent);
}
.author-more:hover {
  color: var(--color-background);
}

.section-h {
  margin: 48px 0 14px;
  font-size: 22px;
  font-weight: 900;
  color: var(--color-brand-accent);
}

.muted {
  color: #777;
  line-height: 1.9;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.related-card {
  text-decoration: none;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.1);
}
.related-card:hover .related-media img {
  transform: scale(1.05);
}

.related-media {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-body {
  padding: 14px;
}

.related-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: #222;
}

.related-excerpt {
  margin: 0;
  color: #4A5565;
  line-height: 1.8;
  font-size: 13.5px;
}

@media (max-width: 760px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

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