/**
 * Post Subtitle (زیرعنوان) — Frontend Styles
 *
 * Clean, minimal, RTL-friendly styles for the subtitle displayed
 * below the main <h1> title on single posts and archive cards.
 *
 * @package Strategic_Club
 * @since   1.1.0
 */

/* ──────────────────────────────────────────────
 *  BASE SUBTITLE STYLE — <h2 class="post-subtitle">
 * ────────────────────────────────────────────── */
.post-subtitle {
    direction: rtl;
    text-align: right;
    font-family: 'IRANSansX', 'Tahoma', 'Arial', sans-serif;
    font-weight: 400;
    font-size: 1rem;          /* 16px */
    line-height: 1.75;
    color: #a0a4b0;           /* Muted gray — adapts to dark backgrounds */
    margin-top: 4px;
    margin-bottom: 8px;
    padding: 0;
    letter-spacing: 0;
    align-self: flex-start;
}

/* ──────────────────────────────────────────────
 *  SINGLE NEWS POST — .news-post-subtitle
 * ────────────────────────────────────────────── */
.news-post-subtitle {
    font-size: 1rem;
    color: #a0a4b0;
    margin-top: 6px;
    margin-bottom: 12px;
    width: -webkit-fit-content;
    width: fit-content;
}

/* ──────────────────────────────────────────────
 *  NEWS CATEGORY POST — .ncp-post-subtitle
 * ────────────────────────────────────────────── */
.ncp-post-subtitle {
    font-size: 1rem;          /* 16px — matches article/guide/review subtitles */
    color: #a0a4b0;
    margin-top: 6px;
    margin-bottom: 12px;
}

/* ──────────────────────────────────────────────
 *  ARTICLE POST — .article-post-subtitle
 * ────────────────────────────────────────────── */
.article-post-subtitle {
    font-size: 1rem;
    color: #a0a4b0;
    margin-top: 6px;
    margin-bottom: 12px;
}

/* ──────────────────────────────────────────────
 *  GUIDE POST — .guide-post-subtitle
 * ────────────────────────────────────────────── */
.guide-post-subtitle {
    font-size: 1rem;
    color: #a0a4b0;
    margin-top: 6px;
    margin-bottom: 12px;
}

/* ──────────────────────────────────────────────
 *  REVIEW POST — .review-post-subtitle
 * ────────────────────────────────────────────── */
.review-post-subtitle {
    font-size: 1rem;
    color: #a0a4b0;
    margin-top: 6px;
    margin-bottom: 12px;
}

/* ──────────────────────────────────────────────
 *  MOD POST — .mod-post-subtitle
 * ────────────────────────────────────────────── */
.mod-post-subtitle {
    font-size: 0.9375rem;     /* 15px */
    color: #8f96a3;
    margin-top: 6px;
    margin-bottom: 12px;
}

/* ──────────────────────────────────────────────
 *  MOD DOWNLOAD POST — .mdp-post-subtitle
 * ────────────────────────────────────────────── */
.mdp-post-subtitle {
    font-size: 0.9375rem;
    color: #8f96a3;
    margin-top: 4px;
    margin-bottom: 8px;
}

/* ──────────────────────────────────────────────
 *  GAME DOWNLOAD POST — .gdp-post-subtitle
 * ────────────────────────────────────────────── */
.gdp-post-subtitle {
    font-size: 0.9375rem;
    color: #8f96a3;
    margin-top: 4px;
    margin-bottom: 8px;
}

/* ──────────────────────────────────────────────
 *  ARCHIVE / LOOP CARD — .post-card-subtitle
 * ────────────────────────────────────────────── */
.post-card-subtitle {
    font-size: 0.8125rem;     /* 13px */
    color: #8f96a3;
    margin-top: 2px;
    margin-bottom: 6px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;    /* Limit to 2 lines in cards */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ──────────────────────────────────────────────
 *  RESPONSIVE
 * ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .post-subtitle {
        font-size: 0.875rem;  /* 14px on mobile */
        line-height: 1.6;
        text-align: center;
    }

    .post-card-subtitle {
        font-size: 0.75rem;   /* 12px on mobile cards */
    }
}
