﻿/* =============================================
   RULES PAGE - قوانین سایت
   ============================================= */

/* ----- کانتینر ----- */
.initial-txt-pad-right {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- متن اصلی ----- */
.txt-style {
    font-size: 15px;
    line-height: 2.2;
    color: #4b5563;
    margin-bottom: 20px;
    text-align: justify;
}

/* ----- هشدار قرمز ----- */
.text-danger.txt-style {
    background: rgba(239, 68, 68, 0.05);
    border-right: 4px solid #ef4444;
    padding: 16px 20px;
    border-radius: 12px;
    color: #dc2626;
    font-weight: 600;
}

/* ----- لیست اصلی (ul) ----- */
.txt-style > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .txt-style > ul > li {
        margin-bottom: 30px;
    }

/* ----- تیتر هر بخش ----- */
.page-header.h2-size,
h2.page-header {
    font-size: 18px !important;
    font-weight: 700;
    color: #1f2937;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(239, 68, 68, 0.15);
    position: relative;
}

    .page-header.h2-size::after,
    h2.page-header::after {
        content: "";
        position: absolute;
        bottom: -2px;
        right: 0;
        width: 50px;
        height: 2px;
        background: #ef4444;
        border-radius: 2px;
    }

/* ----- پاراگراف‌های قوانین ----- */
.txt-style ul li p {
    font-size: 14px;
    line-height: 2.1;
    color: #4b5563;
    margin-bottom: 10px;
    padding-right: 15px;
}

/* ----- هدر اصلی ----- */
.page-header.h1-size {
    font-size: 28px !important;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: none !important;
    position: relative;
}

    .page-header.h1-size::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(to left, #ef4444, #f87171);
        border-radius: 4px;
    }

/* ----- Dark mode ----- */
.dark-mode .txt-style {
    color: #d1d5db;
}

.dark-mode .text-danger.txt-style {
    background: rgba(239, 68, 68, 0.08);
    color: #fca5a5;
}

.dark-mode .page-header.h2-size,
.dark-mode h2.page-header {
    color: #f3f4f6;
    border-bottom-color: rgba(239, 68, 68, 0.25);
}

.dark-mode .page-header.h1-size {
    color: #f3f4f6;
}

.dark-mode .txt-style ul li p {
    color: #d1d5db;
}

/* ----- موبایل ----- */
@media (max-width: 767px) {
    .txt-style {
        font-size: 14px;
        line-height: 2;
    }

    .page-header.h2-size,
    h2.page-header {
        font-size: 16px !important;
    }

    .page-header.h1-size {
        font-size: 22px !important;
    }

    .txt-style ul li p {
        font-size: 13px;
        padding-right: 10px;
    }

    .text-danger.txt-style {
        padding: 12px 16px;
    }
}
