﻿ 
/* ===== استایل universal و امن برای تمام صفحات ===== */
.flight-contentpage-p .sfm-flightinex-head {
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px 45px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    box-shadow: 0 2px 18px rgba(30,60,90,.06);
}

/* تیترها */
.flight-contentpage-p .sfm-flightinex-head h2 {
    color: #1a365d;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    margin: 38px 0 16px;
    padding-right: 16px;
    border-right: 4px solid #3182ce;
}

    .flight-contentpage-p .sfm-flightinex-head h2:first-child {
        margin-top: 0;
        font-size: 24px;
    }

/* پاراگراف‌ها */
.flight-contentpage-p .sfm-flightinex-head p {
    font-size: 15px;
    line-height: 2.2;
    color: #4a5568;
    text-align: justify;
    margin: 14px 0;
}

.flight-contentpage-p .sfm-flightinex-head strong {
    color: #2b6cb0;
}

/* لینک‌ها — همیشه داخل متن می‌مونن، هیچوقت دکمه نمیشن */
.flight-contentpage-p .sfm-flightinex-head a {
    color: #2b6cb0;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed #90cdf4;
    transition: color .2s, border-color .2s;
}

    .flight-contentpage-p .sfm-flightinex-head a:hover {
        color: #1a365d;
        border-bottom: 1px solid #2b6cb0;
    }

/* لیست‌ها — عمودی، مناسب متن کوتاه و بلند */
.flight-contentpage-p .sfm-flightinex-head ul {
    list-style: none;
    margin: 22px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .flight-contentpage-p .sfm-flightinex-head ul li {
        position: relative;
        padding: 12px 48px 12px 16px;
        background: #f8fafc;
        border: 1px solid #edf2f7;
        border-radius: 10px;
        font-size: 14.5px;
        color: #2d3748;
        line-height: 1.9;
        transition: background .2s, border-color .2s;
    }

        .flight-contentpage-p .sfm-flightinex-head ul li:hover {
            background: #f0f7ff;
            border-color: #bfdbfe;
        }

        .flight-contentpage-p .sfm-flightinex-head ul li::before {
            content: "✓";
            position: absolute;
            right: 14px;
            top: 14px;
            width: 22px;
            height: 22px;
            line-height: 22px;
            text-align: center;
            background: #e6fffa;
            color: #2f855a;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
        }

/* موبایل */
@media (max-width:768px) {
    .flight-contentpage-p .sfm-flightinex-head {
        padding: 25px 20px;
        margin: 20px 12px;
    }

        .flight-contentpage-p .sfm-flightinex-head h2 {
            font-size: 18px;
        }

            .flight-contentpage-p .sfm-flightinex-head h2:first-child {
                font-size: 21px;
            }
}

 