 
   * {
      margin: 0; padding: 0; box-sizing: border-box;font-family:  'iran';
    }
    @font-face {
      font-family: 'mellat';
      src: url('/assets/fonts/mellat/Mellat.ttf') format('truetype');
      font-weight: bold;
      font-style: bold;
    }
    @font-face {
      font-family: 'zain';
      src: url('/assets/fonts/zain/Zain-Bold.woff2') format(woff2);
      font-weight: bold;
      font-style: bold;
    }
    @font-face {
      font-family: 'zain';
      src: url('/assets/fonts/zain/Zain-Regular.woff2') format(woff2);
      font-weight: bold;
      font-style: bold;
    }
    @font-face {
      font-family: 'zain';
      src: url('/assets/fonts/zain/Zain-Regular.woff2') format(woff2);
      font-weight: bold;
      font-style: bold;
    }
    @font-face {
      font-family: 'iran';
      src: url('/assets/fonts/iran/iran-Black.woff') format(woff);
      font-weight: normal;
    }
        @font-face {
      font-family: 'iran';
      src: url('/assets/fonts/iran/iran-Bold.woff') format(woff);
      font-weight: bold;
    }
        @font-face {
      font-family: 'iran';
      src: url('/assets/fonts/iran/iran-Regular.woff') format(woff);
      font-weight: normal;
    }
    html, body {
      height: 100%;
      font-family:  'iran';
      background-color: #061a27;
      color: #fff;
      overflow-x: hidden;
      font-weight: 400;
    }
    body {
      display: flex; flex-direction: column;
    }
    header {
      padding: 1rem;
      position: relative;
      z-index: 2;
      text-align: left;
    }
    .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    font-family: 'mellat';
    }
    .slogan {
      font-size: 0.77rem;
      color: #dedede;
      margin-top: 0.2rem;
      text-align: left;
      font-family: serif;
    }

    .menu-toggle {
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      position: absolute;
      top: 1rem;
      right: 1rem;
      z-index: 3;
      cursor: pointer;
    }

    .main-menu {
      display: none;

    }

    .main-menu li {
      display: block;
    }

    .main-menu li a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      padding: 0.5rem 1rem;
      text-align: right;
    }

    .main-menu li a:hover {
      border-bottom: 2px solid #fff;
    }

    .menu-overlay {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      background-color: #061a27;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      transition: right 0.5s ease;
      z-index: 1000;
    }

    .menu-overlay.active {
      right: 0; 
    }

    .menu-avatar {
      text-align: center;
      margin-top: 40px;
    }

    .avatar-box {
      width: 125px;
      height: 125px;
      border-radius: 20%;
      border-bottom: 3px solid #fff;
      overflow: hidden;
      margin: 0 auto;
    }

    .avatar-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .avatar-name {
      margin-top: 10px;
      font-weight: bold;
      font-size: 0.8rem;
      color: #fff;
      font-family: serif;
    }

    .menu-overlay ul {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
      text-align: center;
    }

    .menu-overlay ul li {
      margin: 1rem 0;
    }

    .menu-overlay ul li a {
      font-size: 1.1rem;
      font-weight: bold;
      display: block;
      color: #fff;
      text-decoration: none;
      text-align: right;
    }
    .menu-overlay ul li a:hover {
      border-bottom: 2px solid #fff;
    }
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 0.8rem;
      font-size: 1.2rem;
      margin-top: 2rem;
    }

    .social-icons a {
      color: #fff;
    }

    .menu-overlay .close-btn {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.7rem;
      color: red;
      cursor: pointer;
    }


--------------------------------------------------------

---------------------------------------------------------

/* نسخه ریسپانسیو */
@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 12px;
        padding: 10px 0;
    }
}
    :root {
      --grid-gap: 1rem;
    }

    .post-grid {
      display: grid;
      gap: var(--grid-gap);
      padding: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      padding: 1rem;
	text-align:justify;
    }

    .post-grid > div {
      background: #061a27;
      color: #fdfdfd;
      padding: 1rem;
      border-radius: 15px;
      text-align:justify;
      font-family:'iran';
    }
    .post-grid > div > h2 > a{
      text-decoration: none;
      color:#fff;
}
    @media (max-width: 575.98px) {
      .post-grid {
        grid-template-columns: 1fr;
      }
      .menu-toggle { display: block; }
      .main-menu { display: none !important; }
    }

    @media (min-width: 576px) and (max-width: 767.98px) {
      .post-grid {
        grid-template-columns: 1fr;
      }
      .menu-toggle { display: block; }
      .main-menu { display: none !important; }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
      .post-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .menu-toggle { display: block; }
      .main-menu { display: none !important; }
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
      .post-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .menu-toggle { display: none; }
      .main-menu { display: flex; gap: 1rem; list-style: none; margin-top: 1rem; }
    }

    @media (min-width: 1200px) {
      .post-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .menu-toggle { display: none; }
      .main-menu { display: flex; gap: 1rem; list-style: none; margin-top: 1rem; }
    }

    footer {
      padding: 1rem;
      background: #061a27;
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
    }

    .footer-social-icons {
      margin-top: 1rem;
      display: flex;
      gap: 1.2rem;
      font-size: 1.8rem;
    }

    .footer-social-icons a {
      color: #fff;
    }

    .copyright {
      font-size: 0.7rem;
      margin-top: 1rem;
      color: #a1a1a1;
      text-align: center;
      padding-bottom: 7px;
    }
  
    /* breadcrumb */

    .custom-breadcrumb {
    background-color: #061a27;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 20px 0;
    display: block;
    direction: rtl;
    text-align: right;
    font-family: 'iran';
    font-weight: bold;
    font-size: 14px;
}

.custom-breadcrumb a {
    color: #dedede;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
    display: inline-block;
}

.custom-breadcrumb a:hover {
    color: #a1a1a1;
}

.custom-breadcrumb span {
    color: #fff;
    margin: 0 5px;
    display: inline-block;
}

.custom-breadcrumb .separator {
    margin: 0 5px;
    color: #dedede;
    display: inline-block;
}

.custom-breadcrumb i {
    vertical-align: middle;
    transform: scaleX(-1); /* آیکون رو در راست‌چین برعکس کن */
}