/* ============================================
   Parin Sanat Shared Styles
   ============================================ */
/* add 3 new local font */
@font-face {
  font-family: "yekanbakh";
  src: url("../fonts/YekanBakh-Regular.woff2") format("woff2");
  font-style: normal;
}
@font-face {
  font-family: "yekanbakh-bold";
  src: url("../fonts/YekanBakh-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "yekanbakh-semibold";
  src: url("../fonts/YekanBakh-SemiBold.woff2") format("woff2");
  font-style: normal;
}

/* ============================================
   Font Utilities
   ============================================ */

.font-yekanbakh {
  font-family: "yekanbakh", "Vazirmatn", sans-serif;
}

.font-yekanbakh-bold {
  font-family: "yekanbakh-bold", "Vazirmatn", sans-serif;
  font-weight: bold;
}

.font-yekanbakh-semibold {
  font-family: "yekanbakh-semibold", "Vazirmatn", sans-serif;
  font-weight: 600;
}

/* ============================================
   Scrollbar Hide Utility
   ============================================ */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ============================================
   Landing Page Styles
   ============================================ */

.menu-item {
  transition: all 0.2s ease-in-out;
}

.menu-item:hover .icon-box {
  color: white;
  background-color: #0ea5e9;
}

.menu-item:hover .text-label {
  color: #0ea5e9;
  padding-right: 8px;
}

/* ============================================
   Article Content Styles
   ============================================ */

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}

.article-content th,
.article-content td {
  padding: 12px;
  border: 1px solid #eee;
  text-align: center;
}

.article-content tr:nth-child(even) {
  background-color: #f9f9f9;
}

.article-content th {
  background-color: #f0f0f0;
  font-weight: bold;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #232933;
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #232933;
}

.article-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #424750;
  font-size: 1rem;
  text-align: justify;
}

.article-content ul {
  list-style-type: disc;
  padding-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* ============================================
   Force blog area to use YekanBakh like main site
   ============================================ */
.blog, .blog * {
  font-family: "YekanBakh", "YekanBakh FD", "IranYekanX", var(--psp-font-sans, Tahoma), system-ui, -apple-system, "Segoe UI", sans-serif !important;
}

