/* ===== reduce headings sizes ===== */
.single-post h1 {
    font-size: 26px !important;
}
@media (max-width:768px) {
    .single-post h1 {
    margin-top: -60px !important
    }
}

.single-post h2 {
    font-size: 24px !important;
}
.single-post h3 {
    font-size: 22px !important;
}
.single-post h4 {
    font-size: 20px !important;
}

/* ===== rounding images ===== */
.single-post img {
  border-radius: 16px !important;
}

/* ===== remove previous & next ===== */
.ast-single-post-navigation,
.post-navigation,
.nav-links {
    display: none !important;
}

/* ===== reduce space headings and contents ===== */
.single-post .entry-content h2 {
    margin-top: 20px !important;    /* فاصله از پاراگراف بالایی */
    margin-bottom: 15px !important; /* فاصله تا پاراگراف پایینی */
}
.single-post .entry-content h3 {
    margin-top: 20px !important;    /* فاصله از پاراگراف بالایی */
    margin-bottom: 15px !important; /* فاصله تا پاراگراف پایینی */
}
.single-post .entry-content h4 {
    margin-top: 20px !important;    /* فاصله از پاراگراف بالایی */
    margin-bottom: 15px !important; /* فاصله تا پاراگراف پایینی */
}

/* ===== justify text ===== */
.single-post .entry-content p:not(.has-text-align-center):not(.has-text-align-left):not(.has-text-align-right),
.single-post .entry-content .wp-block-paragraph:not(.has-text-align-center):not(.has-text-align-left):not(.has-text-align-right),
.single-post .entry-content blockquote:not(.has-text-align-center):not(.has-text-align-left):not(.has-text-align-right) {
  text-align: justify;
  text-align-last: right;
  text-justify: inter-word;
}

/* شکست کلمات (بدون دست‌زدن به align) */
.single-post .entry-content {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}