/* سکشن مطالب مشابه */
.rpc-related {
  margin-top: 40px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

/* تیتر سکشن */
.rpc-related h2 {
  font-size: 20px;
  margin-bottom: 15px;
  padding: 10px 14px;
  background: #ff9800;
  color: #fff !important;
  border-radius: 6px;
  text-align: center;
  border: none !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* گرید آیتم‌ها */
.rpc-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.rpc-item {
  flex: 1 1 calc(25% - 15px);
  box-sizing: border-box;
  text-align: center;
}

/* تصویر شاخص */
.rpc-item img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 6px;
}

/* —————— حذف قطعی هر خط/underline در محدوده مطالب مشابه —————— */

/* خنثی‌سازی همه لینک‌ها در این سکشن */
.rpc-related a,
.rpc-related a * {
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

/* اگر قالب با pseudo-element خط می‌اندازد */
.rpc-related a::before,
.rpc-related a::after {
  content: none !important;
  display: none !important;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
}

/* اگر تیتر شامل <u> یا تگ‌های تزئینی باشد */
.rpc-related u,
.rpc-item h3 u {
  text-decoration: none !important;
}

/* اگر underline با text-decoration-thickness/offset اعمال شده باشد */
.rpc-related a {
  text-decoration-thickness: 0 !important;
  text-underline-offset: 0 !important;
  -webkit-text-decoration: none !important;
}

/* —————— استایل خوانا برای تیتر هر پست —————— */

/* خود تیتر هر پست */
.rpc-item h3 {
  font-size: 16px;
  margin-top: 10px;
  padding: 8px 10px;
  background: #f1f1f1;
  color: #222 !important;
  border-radius: 6px;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border: none !important;
  text-decoration: none !important;
}

/* لینک داخل تیتر — بدون هیچ خط */
.rpc-item h3 a {
  display: inline-block !important;  /* جلوگیری از baseline underline */
  color: #222 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

/* خاموشی کامل pseudo-element‌ها روی h3 و لینک */
.rpc-item h3::before,
.rpc-item h3::after,
.rpc-item h3 a::before,
.rpc-item h3 a::after {
  content: none !important;
  display: none !important;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
}

/* حالات لینک هم بدون خط بماند */
.rpc-item h3 a:link,
.rpc-item h3 a:visited,
.rpc-item h3 a:hover,
.rpc-item h3 a:active {
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background: none !important;
  color: #222 !important;
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .rpc-item {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 480px) {
  .rpc-item {
    flex: 1 1 100%;
  }
}
