/* =========================================================
   RESRP - Publishing Ethics & Publication Policy
   Modern Academic Design
   ========================================================= */

.resrp-policy {
    --resrp-navy: #073b6f;
    --resrp-blue: #1268a8;
    --resrp-light-blue: #eaf4fb;
    --resrp-pale: #f6f9fc;
    --resrp-border: #dce8f2;
    --resrp-text: #263746;
    --resrp-muted: #647587;
    --resrp-white: #ffffff;

    max-width: 1180px;
    margin: 35px auto;
    padding: 0 20px;

    font-family:
        "Tajawal",
        "Cairo",
        "Noto Sans Arabic",
        Tahoma,
        Arial,
        sans-serif;

    color: var(--resrp-text);
    line-height: 1.95;
}


/* HEADER */

.resrp-policy-header {
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 32px 38px;
    margin-bottom: 25px;

    color: #fff;

    background:
        linear-gradient(135deg, #052f59, #0a5790);

    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(7, 59, 111, .16);
}

.resrp-policy-header h1 {
    margin: 0 0 5px;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
}

.resrp-policy-header p {
    margin: 0;
    font-size: 17px;
    color: #eaf5ff;
}

.resrp-policy-header span {
    font-size: 13px;
    color: #bcd9ee;
}

.resrp-policy-icon {
    width: 75px;
    height: 75px;

    flex: 0 0 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;

    font-size: 38px;
    background: rgba(255,255,255,.10);
}


/* INTRO */

.resrp-policy-intro {
    display: flex;
    gap: 22px;

    padding: 28px 32px;
    margin-bottom: 25px;

    background: var(--resrp-pale);

    border: 1px solid var(--resrp-border);
    border-right: 5px solid var(--resrp-blue);

    border-radius: 14px;
}

.resrp-policy-intro h2 {
    margin: 0 0 8px;

    color: var(--resrp-navy);
    font-size: 23px;
}

.resrp-policy-intro p {
    margin: 7px 0;
}

.resrp-policy-intro-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;
    background: var(--resrp-blue);

    font-size: 25px;
    font-weight: bold;
}


/* PRINCIPLES */

.resrp-principles {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    margin-bottom: 35px;
}

.resrp-principle {
    padding: 23px 15px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--resrp-border);
    border-radius: 13px;

    box-shadow: 0 5px 18px rgba(20,70,110,.06);
}

.resrp-principle-icon {
    width: 48px;
    height: 48px;

    margin: auto auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--resrp-light-blue);
    color: var(--resrp-blue);

    font-size: 23px;
    font-weight: bold;
}

.resrp-principle h3 {
    margin: 5px 0;

    color: var(--resrp-navy);
    font-size: 18px;
}

.resrp-principle p {
    margin: 0;

    color: var(--resrp-muted);
    font-size: 13px;
}


/* SECTION */

.resrp-section {
    margin: 42px 0;
}

.resrp-section-title {
    display: flex;
    align-items: center;
    gap: 17px;

    margin-bottom: 20px;

    padding-bottom: 15px;

    border-bottom: 1px solid var(--resrp-border);
}

.resrp-section-title > span {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #fff;
    background: var(--resrp-navy);

    font-size: 17px;
    font-weight: 800;
}

.resrp-section-title small {
    display: block;

    color: var(--resrp-blue);

    font-size: 12px;
    font-weight: 700;
}

.resrp-section-title h2 {
    margin: 0;

    color: var(--resrp-navy);

    font-size: 25px;
    font-weight: 800;
}


/* CARDS */

.resrp-card {
    margin: 15px 0;
    padding: 25px 28px;

    background: #fff;

    border: 1px solid var(--resrp-border);

    border-radius: 13px;

    box-shadow: 0 4px 15px rgba(20,70,110,.045);
}

.resrp-card h3 {
    margin: 0 0 12px;

    color: var(--resrp-navy);

    font-size: 19px;
}

.resrp-card p {
    margin: 9px 0;
}

.resrp-card ul,
.resrp-card ol {
    margin: 12px 0;
    padding-right: 25px;
}

.resrp-card li {
    margin: 6px 0;
}


/* NOTE */

.resrp-note {
    margin-top: 18px;
    padding: 15px 18px;

    background: var(--resrp-light-blue);

    border-right: 4px solid var(--resrp-blue);

    border-radius: 8px;

    color: #244a68;
}


/* HIGHLIGHT GRID */

.resrp-highlight-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-bottom: 18px;
}

.resrp-mini-card {
    padding: 20px;

    text-align: center;

    background: var(--resrp-pale);

    border: 1px solid var(--resrp-border);

    border-radius: 11px;
}

.resrp-mini-card strong {
    display: block;

    color: var(--resrp-navy);

    font-size: 17px;
}

.resrp-mini-card span {
    color: var(--resrp-muted);

    font-size: 13px;
}


/* AI */

.resrp-ai-box {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-bottom: 18px;
    padding: 25px;

    background:
        linear-gradient(
            135deg,
            #eef7fd,
            #f8fbfd
        );

    border: 1px solid #cfe3f1;

    border-radius: 14px;
}

.resrp-ai-symbol {
    width: 65px;
    height: 65px;

    flex: 0 0 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: white;
    background: var(--resrp-navy);

    font-weight: 900;
    font-size: 19px;
}

.resrp-ai-box p {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.resrp-warning {
    margin-top: 18px;
    padding: 17px;

    background: #fff8e8;

    border-right: 4px solid #d69e2e;

    border-radius: 8px;
}


/* ITEMS */

.resrp-items,
.resrp-transparency {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin: 20px 0;
}

.resrp-items span,
.resrp-transparency span {
    padding: 8px 14px;

    color: var(--resrp-navy);

    background: var(--resrp-light-blue);

    border: 1px solid #d3e7f4;

    border-radius: 20px;

    font-size: 13px;
    font-weight: 600;
}


/* VIOLATIONS */

.resrp-violations {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}

.resrp-violations div {
    padding: 14px 17px;

    background: #fff;

    border: 1px solid var(--resrp-border);

    border-radius: 9px;

    color: var(--resrp-blue);

    font-size: 14px;
}

.resrp-violations strong {
    color: var(--resrp-text);

    margin-right: 7px;
}


/* PROCESS */

.resrp-process {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 17px;
}

.resrp-process-step {
    position: relative;

    padding: 25px 20px;

    background: #fff;

    border: 1px solid var(--resrp-border);

    border-radius: 12px;
}

.resrp-process-step > span {
    display: flex;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 50%;

    color: white;
    background: var(--resrp-blue);

    font-weight: 800;
}

.resrp-process-step h3 {
    margin: 0 0 8px;

    color: var(--resrp-navy);

    font-size: 17px;
}

.resrp-process-step p {
    margin: 0;

    color: var(--resrp-muted);

    font-size: 13px;
}


/* CONCLUSION */

.resrp-conclusion {
    margin: 50px 0 20px;
    padding: 40px 35px;

    text-align: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #062f58,
            #0c6098
        );

    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(7,59,111,.15);
}

.resrp-conclusion-mark {
    font-size: 45px;
    opacity: .7;
}

.resrp-conclusion h2 {
    margin: 0 0 15px;

    color: white;

    font-size: 27px;
}

.resrp-conclusion p {
    max-width: 850px;

    margin: auto;

    color: #eef8ff;

    font-size: 16px;
    line-height: 2;
}

.resrp-conclusion strong {
    color: white;
}

.resrp-conclusion-line {
    width: 80px;
    height: 2px;

    margin: 25px auto 15px;

    background: rgba(255,255,255,.6);
}

.resrp-conclusion span {
    color: #c8e3f5;

    font-size: 13px;
}


/* LINKS */

.resrp-policy a {
    color: var(--resrp-blue);
}

.resrp-policy a:hover {
    color: var(--resrp-navy);
}


/* MOBILE */

@media (max-width: 900px) {

    .resrp-principles,
    .resrp-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resrp-process {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 600px) {

    .resrp-policy {
        padding: 0 10px;
    }

    .resrp-policy-header {
        padding: 25px 20px;

        flex-direction: column;

        text-align: center;
    }

    .resrp-policy-header h1 {
        font-size: 23px;
    }

    .resrp-policy-intro {
        flex-direction: column;
    }

    .resrp-principles,
    .resrp-highlight-grid,
    .resrp-process,
    .resrp-violations {
        grid-template-columns: 1fr;
    }

    .resrp-section-title h2 {
        font-size: 20px;
    }

    .resrp-card {
        padding: 20px 18px;
    }

    .resrp-ai-box {
        flex-direction: column;
        text-align: center;
    }

}
/* =========================================================
   RESRP — Professional Academic Journal Style
   ========================================================= */

.resrp-about {
    --navy: #102a43;
    --navy-2: #163d5c;
    --gold: #c79a45;
    --gold-light: #f4ead7;
    --text: #243746;
    --muted: #6b7c8c;
    --bg: #f7f9fb;
    --white: #ffffff;
    --border: #e5eaf0;
    --success: #287d5a;

    direction: rtl;
    max-width: 1180px;
    margin: 40px auto;
    padding: 0 24px 60px;
    color: var(--text);
    font-family:
        "Cairo",
        "Tajawal",
        "Noto Kufi Arabic",
        Arial,
        sans-serif;
    line-height: 1.9;
}

/* =========================================================
   Main Header
   ========================================================= */

.resrp-about-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 42px 46px;
    margin-bottom: 28px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(199,154,69,.18),
            transparent 28%
        ),
        linear-gradient(135deg, #0c2439 0%, #163d5c 100%);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(16,42,67,.14);
}

.resrp-about-header::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -90px;
    bottom: -120px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.resrp-about-header::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    left: 20px;
    bottom: -70px;
    border: 1px solid rgba(199,154,69,.3);
    border-radius: 50%;
}

.resrp-about-badge {
    position: relative;
    z-index: 2;
    flex: 0 0 105px;
    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--navy);
    background: #fff;
    border: 5px solid rgba(199,154,69,.55);
    border-radius: 22px;

    font-size: 23px;
    font-weight: 900;
    letter-spacing: 1px;

    box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.resrp-about-header > div:last-child {
    position: relative;
    z-index: 2;
}

.resrp-about-header h1 {
    margin: 0 0 7px;
    color: #fff;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.45;
    font-weight: 800;
}

.resrp-about-header p {
    margin: 0 0 15px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
}

.resrp-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #f8dfaa;
    font-size: 13px;
    font-weight: 700;
}

/* =========================================================
   Sections
   ========================================================= */

.resrp-about-section {
    position: relative;
    margin-top: 20px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 7px 28px rgba(16,42,67,.055);
}

.resrp-about-section:hover {
    box-shadow: 0 12px 34px rgba(16,42,67,.08);
}

/* Section heading */

.resrp-about-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;

    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.resrp-about-title::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(
        to left,
        transparent,
        var(--border)
    );
}

.resrp-about-title h2 {
    margin: 0;
    color: var(--navy);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
}

.resrp-about-section p {
    color: var(--text);
    font-size: 15px;
}

.resrp-about-section p:last-child {
    margin-bottom: 0;
}

.resrp-about strong {
    color: var(--navy);
    font-weight: 800;
}

/* =========================================================
   Bibliographic Information
   ========================================================= */

.resrp-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.resrp-info-card {
    position: relative;
    min-height: 105px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: var(--muted);
    background: #f9fafc;
    border: 1px solid var(--border);
    border-radius: 14px;

    font-size: 13px;
    transition: .25s ease;
}

.resrp-info-card::before {
    content: "";
    position: absolute;
    right: 0;
    top: 15px;
    bottom: 15px;
    width: 3px;
    background: var(--gold);
    border-radius: 3px 0 0 3px;
}

.resrp-info-card:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: rgba(199,154,69,.35);
    box-shadow: 0 8px 22px rgba(16,42,67,.07);
}

.resrp-info-card strong {
    margin: 3px 0;
    font-size: 20px;
    color: var(--navy);
}

.resrp-info-card small {
    color: var(--muted);
    font-size: 11px;
}

/* =========================================================
   Institution
   ========================================================= */

.resrp-institution {
    display: flex;
    align-items: center;
    gap: 22px;

    padding: 24px;
    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #fff
        );
    border: 1px solid var(--border);
    border-radius: 16px;
}

.resrp-institution-icon {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);
    background: var(--navy);
    border-radius: 15px;

    font-size: 23px;
    box-shadow: 0 8px 20px rgba(16,42,67,.15);
}

.resrp-institution h3 {
    margin: 0 0 3px;
    color: var(--navy);
    font-size: 18px;
}

.resrp-institution p {
    margin: 2px 0;
    color: var(--muted);
    font-size: 14px;
}

.resrp-institution .resrp-country {
    color: var(--gold);
    font-weight: 700;
}

/* =========================================================
   Quality
   ========================================================= */

.resrp-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.resrp-quality-grid > div {
    padding: 24px;
    background: #fafbfd;
    border: 1px solid var(--border);
    border-radius: 15px;
    transition: .25s ease;
}

.resrp-quality-grid > div:hover {
    transform: translateY(-4px);
    border-color: rgba(199,154,69,.35);
}

.resrp-quality-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 16px;
}

.resrp-quality-grid strong::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;
    margin-left: 8px;

    color: #fff;
    background: var(--gold);
    border-radius: 50%;

    font-size: 12px;
}

.resrp-quality-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   Statistics
   ========================================================= */

.resrp-stat-note {
    margin-bottom: 18px;
    padding: 10px 15px;

    color: var(--muted) !important;
    background: #f8fafc;
    border-right: 3px solid var(--gold);
    border-radius: 6px;

    font-size: 13px !important;
}

.resrp-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.resrp-stat-card {
    position: relative;
    padding: 22px 20px;

    text-align: center;

    color: var(--muted);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px;

    font-size: 13px;
}

.resrp-stat-card strong {
    display: block;
    margin: 4px 0;

    color: var(--navy);
    font-size: 29px;
    font-weight: 900;
}

.resrp-stat-card small {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.resrp-stat-card.resrp-impact {
    background:
        linear-gradient(
            145deg,
            #102a43,
            #163d5c
        );
    border: none;
    color: rgba(255,255,255,.75);
}

.resrp-stat-card.resrp-impact strong {
    color: #f3d38e;
}

.resrp-stat-card.resrp-impact small {
    color: rgba(255,255,255,.6);
}

/* =========================================================
   Update Note
   ========================================================= */

.resrp-update-note {
    margin-top: 18px;
    padding: 20px 22px;

    background: #fffaf1;
    border: 1px solid #efdfbd;
    border-radius: 14px;
}

.resrp-update-note strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
}

.resrp-update-note p {
    margin: 4px 0 12px;
    color: var(--muted);
    font-size: 13px;
}

.resrp-update-note a,
.resrp-indexing a {
    display: inline-flex;
    align-items: center;

    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    transition: .2s ease;
}

.resrp-update-note a:hover,
.resrp-indexing a:hover {
    color: var(--gold);
}

/* =========================================================
   Topics
   ========================================================= */

.resrp-topic-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.resrp-topic-grid > div {
    padding: 13px 10px;

    text-align: center;

    color: var(--navy);
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: .2s ease;
}

.resrp-topic-grid > div:hover {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
}

/* =========================================================
   Indexing
   ========================================================= */

.resrp-indexing {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 25px;

    background:
        linear-gradient(
            135deg,
            #f7faf9,
            #fff
        );

    border: 1px solid #dcebe5;
    border-radius: 16px;
}

.resrp-indexing-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: var(--success);
    border-radius: 50%;

    font-size: 22px;
    font-weight: 900;
}

.resrp-indexing h3 {
    margin: 0 0 3px;
    color: var(--navy);
    font-size: 17px;
}

.resrp-indexing p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   Mission
   ========================================================= */

.resrp-about-section.resrp-mission {
    position: relative;
    overflow: hidden;

    color: #fff;
    background:
        linear-gradient(
            135deg,
            #102a43,
            #163d5c
        );

    border: none;
}

.resrp-mission::before {
    content: "“";
    position: absolute;
    left: 30px;
    top: -30px;

    color: rgba(199,154,69,.18);
    font-family: Georgia, serif;
    font-size: 180px;
    line-height: 1;
}

.resrp-mission .resrp-about-title {
    color: #e0b968;
}

.resrp-mission .resrp-about-title h2 {
    color: #fff;
}

.resrp-mission .resrp-about-title::after {
    background: linear-gradient(
        to left,
        transparent,
        rgba(255,255,255,.2)
    );
}

.resrp-mission > p {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: 0 auto;

    color: rgba(255,255,255,.86);
    text-align: center;

    font-size: 17px;
    line-height: 2.1;
}

/* =========================================================
   Links
   ========================================================= */

.resrp-about a {
    position: relative;
}

.resrp-about a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: .25s ease;
}

.resrp-about a:hover::after {
    width: 100%;
}

/* =========================================================
   Responsive — Tablet
   ========================================================= */

@media (max-width: 900px) {

    .resrp-info-grid,
    .resrp-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resrp-quality-grid {
        grid-template-columns: 1fr;
    }

    .resrp-topic-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .resrp-about-header {
        padding: 32px;
    }
}

/* =========================================================
   Responsive — Mobile
   ========================================================= */

@media (max-width: 600px) {

    .resrp-about {
        margin: 20px auto;
        padding: 0 12px 35px;
    }

    .resrp-about-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 22px;
        border-radius: 17px;
    }

    .resrp-about-badge {
        width: 78px;
        height: 78px;
        flex-basis: 78px;
        border-radius: 16px;
        font-size: 18px;
    }

    .resrp-about-header h1 {
        font-size: 23px;
    }

    .resrp-about-header p {
        font-size: 13px;
    }

    .resrp-status {
        gap: 5px;
        font-size: 11px;
    }

    .resrp-about-section {
        padding: 22px 17px;
        border-radius: 15px;
    }

    .resrp-about-title h2 {
        font-size: 18px;
    }

    .resrp-info-grid,
    .resrp-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .resrp-info-card {
        min-height: 90px;
        padding: 15px;
    }

    .resrp-info-card strong {
        font-size: 17px;
    }

    .resrp-stat-card {
        padding: 18px 10px;
    }

    .resrp-stat-card strong {
        font-size: 24px;
    }

    .resrp-topic-grid {
        grid-template-columns: 1fr 1fr;
    }

    .resrp-institution,
    .resrp-indexing {
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
    }

    .resrp-institution-icon,
    .resrp-indexing-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .resrp-institution h3,
    .resrp-indexing h3 {
        font-size: 15px;
    }

    .resrp-mission > p {
        font-size: 14px;
        line-height: 2;
    }
}

/* =========================================================
   Very Small Screens
   ========================================================= */

@media (max-width: 400px) {

    .resrp-info-grid,
    .resrp-stat-grid,
    .resrp-topic-grid {
        grid-template-columns: 1fr;
    }

    .resrp-about-header {
        padding: 24px 18px;
    }
}

.resrp-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin: -5px 20px 25px;
    position: relative;
    z-index: 5;

    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(16,42,67,.08);
}

.resrp-highlights > div {
    padding: 17px;
    text-align: center;
    background: #fff;
}

.resrp-highlights strong {
    display: block;
    color: #102a43;
    font-size: 20px;
    font-weight: 900;
}

.resrp-highlights span {
    display: block;
    color: #7a8996;
    font-size: 11px;
}

@media (max-width: 600px) {
    .resrp-highlights {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 8px;
        margin-right: 8px;
    }
}

============ -->

<div class="resrp-banner">

<h1>مجلة الدراسات الإستراتيجية<br>والبحوث السياسية</h1>

<p>مجلة علمية دولية، سداسية (تُصدر عددين سنوياً)، ومحكمة، تتبنى نموذج الوصول المفتوح والمجاني</p>

</div>

<div class="resrp-indexing">

<h2>الفهرسة والشراكات الأكاديمية</h2>

<p class="sub">المجلة مفهرسة ومرتبطة بالمنصات والقواعد العلمية التالية</p>

<div class="resrp-index-grid"><a class="resrp-index-item" href="https://asjp.cerist.dz/en/PresentationRevue/845" target="_blank" rel="noopener">

<div class="resrp-badge">ASJP</div>

<div class="name">منصة ASJP</div>

<div class="desc">الفهرسة الجزائرية للمجلات العلمية</div>

</a><a class="resrp-index-item" href="REPLACE_WITH_RESEARCHGATE_URL" target="_blank" rel="noopener">

<div class="resrp-badge">RG</div>

<div class="name">ResearchGate</div>

<div class="desc">صفحة المجلة على الشبكة البحثية</div>

</a><a class="resrp-index-item" href="REPLACE_WITH_ORCID_URL" target="_blank" rel="noopener">

<div class="resrp-badge">iD</div>

<div class="name">ORCID</div>

<div class="desc">معرّف الباحثين الدولي</div>

</a><a class="resrp-index-item" href="REPLACE_WITH_GOOGLE_SCHOLAR_URL" target="_blank" rel="noopener">

<div class="resrp-badge">GS</div>

<div class="name">Google Scholar</div>

<div class="desc">فهرسة الاستشهادات العلمية</div>

</a><a class="resrp-index-item" href="REPLACE_WITH_FACEBOOK_URL" target="_blank" rel="noopener">

<div class="resrp-badge">FB</div>

<div class="name">فيسبوك</div>

<div class="desc">صفحة المجلة الرسمية</div>

</a></div>

</div>

<!--


/* =========================================================
   تنسيق أكاديمي لمجلة الدراسات الإستراتيجية والبحوث السياسية
   يتطلب استيراد خطي Amiri و Lora من Google Fonts (انظر التعليمات المرفقة)
   ========================================================= */

:root{
  --ink:#22262b;
  --paper:#f7f3ea;
  --paper-deep:#efe8d8;
  --navy:#152744;
  --navy-deep:#0d1a2e;
  --brass:#a5812f;
  --brass-soft:#c9a45c;
  --rule: rgba(21,39,68,0.18);
  --max: 780px;
}

*{box-sizing:border-box;}

html,body{
  margin:0;
  padding:0;
  background:var(--paper);
  color:var(--ink);
}

body{
  font-family:'Amiri', 'Lora', serif;
  line-height:1.9;
}

/* أضيفوا هذا الصنف لعنصر <body> أو الحاوية الرئيسية عند عرض المحتوى بالإنجليزية أو الفرنسية */
body.lang-en{
  font-family:'Lora', serif;
  line-height:1.75;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 90px;
}

/* ---------- شريط تبديل اللغة ---------- */
.topbar{
  display:flex;
  justify-content:center;
  padding: 18px 0 0;
}
.lang-toggle{
  display:inline-flex;
  border:1px solid var(--rule);
  border-radius:999px;
  overflow:hidden;
  background: var(--paper-deep);
}
.lang-toggle button{
  font-family:'Lora', serif;
  font-size:13px;
  letter-spacing:.03em;
  padding:8px 20px;
  border:none;
  background:transparent;
  color:var(--navy);
  cursor:pointer;
  transition: background .25s ease, color .25s ease;
}
.lang-toggle button.active{
  background:var(--navy);
  color:var(--paper);
}

/* ---------- الترويسة ---------- */
header.masthead{
  text-align:center;
  padding: 46px 0 30px;
}

.emblem{
  width:64px;
  height:64px;
  margin:0 auto 22px;
  display:block;
}

.kicker{
  font-family:'Lora', serif;
  font-size:12.5px;
  letter-spacing:.14em;
  color:var(--brass);
  margin-bottom:10px;
}
body.lang-en .kicker{ letter-spacing:.16em; }

h1.title{
  font-family:'Amiri', serif;
  font-weight:700;
  font-size: 2.35rem;
  line-height:1.35;
  color:var(--navy-deep);
  margin: 0 0 6px;
}
body.lang-en h1.title{
  font-family:'Lora', serif;
  font-size:2.05rem;
}

.subtitle{
  font-size:1rem;
  color:#4b5361;
  font-style:italic;
  margin:0 0 22px;
}

.attribution{
  font-size:.98rem;
  color:#5b5140;
  max-width: 560px;
  margin: 0 auto;
}
.attribution b{
  color:var(--navy);
  font-weight:600;
}

hr.rule{
  border:none;
  border-top:1px solid var(--rule);
  margin: 40px 0;
}

/* ---------- الفاصل الزخرفي (نجمة) ---------- */
.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin: 38px 0;
  color: var(--brass);
}
.divider .line{
  height:1px;
  width:70px;
  background: linear-gradient(90deg, transparent, var(--rule));
}
.divider .line.flip{
  background: linear-gradient(270deg, transparent, var(--rule));
}
.divider svg{ width:16px; height:16px; }

/* ---------- شريط الأرقام السريعة ---------- */
.facts{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  margin: 8px 0 42px;
}
.facts div{
  text-align:center;
  padding: 18px 10px;
  border-inline-start: 1px solid var(--rule);
}
.facts div:first-child{ border-inline-start:none; }
.facts .num{
  display:block;
  font-family:'Lora', serif;
  font-weight:600;
  font-size:1.05rem;
  color:var(--navy-deep);
  margin-bottom:4px;
}
.facts .lab{
  font-size:.82rem;
  color:#6b7280;
}

/* ---------- فقرات المحتوى ---------- */
section.block{
  margin-bottom: 34px;
}

h2.h2{
  font-family:'Amiri', serif;
  font-weight:700;
  font-size:1.35rem;
  color:var(--navy);
  margin: 0 0 14px;
  padding-inline-start: 16px;
  border-inline-start: 3px solid var(--brass);
}
body.lang-en h2.h2{ font-family:'Lora', serif; font-size:1.2rem; }

p{
  margin: 0 0 16px;
  font-size:1.04rem;
  color:#2b2f36;
}
body.lang-en p{ font-size:1.01rem; }

.field-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
  margin: 6px 0 4px;
  padding:0;
  list-style:none;
}
.field-list li{
  font-size:.92rem;
  color:var(--navy);
  background: var(--paper-deep);
  border:1px solid var(--rule);
  padding:6px 14px;
  border-radius:3px;
}

/* ---------- لوحة رسوم النشر ---------- */
.charges{
  background: var(--navy-deep);
  color: #efe8d8;
  border-radius:4px;
  padding: 30px 32px;
  margin: 44px 0 8px;
  position:relative;
  overflow:hidden;
}
.charges::before{
  content:"";
  position:absolute;
  inset-inline-end:-40px;
  top:-40px;
  width:140px;
  height:140px;
  border:1px solid rgba(201,164,92,0.25);
  border-radius:50%;
}
.charges h3{
  font-family:'Amiri', serif;
  font-weight:700;
  font-size:1.2rem;
  margin:0 0 16px;
  color: var(--brass-soft);
}
body.lang-en .charges h3{ font-family:'Lora', serif; }

.charge-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size:.98rem;
}
.charge-row:first-of-type{ border-top:none; }
.charge-row .val{
  font-family:'Lora', serif;
  font-weight:600;
  color: var(--brass-soft);
  letter-spacing:.02em;
}

footer.foot{
  text-align:center;
  margin-top:54px;
  font-size:.85rem;
  color:#8a8375;
}

/* ---------- الجوال ---------- */
@media (max-width:560px){
  h1.title{ font-size:1.7rem; }
  .facts{ grid-template-columns: 1fr; }
  .facts div{ border-inline-start:none; border-top:1px solid var(--rule); }
  .facts div:first-child{ border-top:none; }
  .charges{ padding:24px 20px; }
}
/* =========================================================
   RESRP - INTERNATIONAL JOURNAL ABOUT PAGE
   Journal of Strategic Studies and Political Research
   ========================================================= */

.resrp-page {
    --navy: #0b2742;
    --navy2: #123d60;
    --blue: #1b6ca8;
    --cyan: #3b9ac4;
    --light: #f4f8fb;
    --lighter: #f8fafc;
    --border: #dce6ee;
    --text: #273746;
    --muted: #6c7b88;
    --white: #ffffff;

    max-width: 1180px;
    margin: 0 auto;
    color: var(--text);
    font-family: Arial, "Segoe UI", sans-serif;
    line-height: 1.85;
}

/* ---------- HERO ---------- */

.resrp-hero {
    position: relative;
    overflow: hidden;
    padding: 65px 45px;
    margin-bottom: 28px;
    text-align: center;
    color: #fff;
    border-radius: 16px;
    background:
        radial-gradient(circle at 85% 20%,
        rgba(255,255,255,.10) 0,
        rgba(255,255,255,0) 30%),
        linear-gradient(135deg,
        #081f35 0%,
        #0e3554 55%,
        #15547b 100%);
    box-shadow: 0 15px 40px rgba(11,39,66,.18);
}

.resrp-hero:before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    right: -150px;
    top: -180px;
}

.resrp-hero:after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    left: -140px;
    bottom: -160px;
}

.resrp-hero-content {
    position: relative;
    z-index: 2;
}

.resrp-journal-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.resrp-hero h1 {
    margin: 8px 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.45;
}

.resrp-hero .resrp-en-title {
    margin: 0 0 16px;
    color: rgba(255,255,255,.85);
    font-size: 18px;
    font-weight: 400;
}

.resrp-hero-description {
    max-width: 850px;
    margin: 0 auto 22px;
    color: rgba(255,255,255,.92);
    font-size: 15px;
}

.resrp-badge {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
}

/* ---------- QUICK INFO ---------- */

.resrp-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.resrp-stat {
    padding: 23px 15px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(11,39,66,.06);
    transition: .25s ease;
}

.resrp-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11,39,66,.11);
}

.resrp-stat-icon {
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 25px;
}

.resrp-stat strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
}

.resrp-stat span {
    color: var(--muted);
    font-size: 13px;
}

/* ---------- SECTIONS ---------- */

.resrp-section {
    margin: 28px 0;
    padding: 32px 35px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 13px;
    box-shadow: 0 5px 20px rgba(11,39,66,.045);
}

.resrp-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.resrp-title-line {
    width: 5px;
    height: 30px;
    border-radius: 5px;
    background: var(--blue);
}

.resrp-title h2 {
    margin: 0;
    color: var(--navy);
    font-size: 23px;
}

.resrp-section p {
    margin: 0 0 15px;
    font-size: 15px;
    text-align: justify;
}

.resrp-section strong {
    color: var(--navy);
}

/* ---------- TOPICS ---------- */

.resrp-topics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-top: 22px;
}

.resrp-topic {
    padding: 13px 16px;
    background: var(--light);
    border-left: 4px solid var(--blue);
    border-radius: 7px;
    color: #405463;
    font-size: 14px;
}

[dir="rtl"] .resrp-topic {
    border-left: 0;
    border-right: 4px solid var(--blue);
}

/* ---------- QUALITY ---------- */

.resrp-quality {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 22px;
}

.resrp-quality-card {
    padding: 23px 19px;
    background: var(--lighter);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.resrp-quality-card .number {
    color: var(--blue);
    font-size: 25px;
    font-weight: bold;
}

.resrp-quality-card h3 {
    margin: 7px 0;
    color: var(--navy);
    font-size: 16px;
}

.resrp-quality-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* ---------- FREE PUBLISHING ---------- */

.resrp-free {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 32px;
    margin: 30px 0;
    border-radius: 14px;
    background: linear-gradient(135deg,#edf6fb,#ffffff);
    border: 1px solid #c9dce8;
}

.resrp-free-icon {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 28px;
}

.resrp-free h2 {
    margin: 0 0 5px;
    color: var(--navy);
    font-size: 22px;
}

.resrp-free p {
    margin: 0;
    color: var(--muted);
}

.resrp-fees {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.resrp-fee {
    padding: 8px 13px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: #405463;
    font-size: 13px;
}

.resrp-fee b {
    color: #278348;
}

/* ---------- ACADEMIC LINKS ---------- */

.resrp-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 13px;
}

.resrp-link {
    display: block;
    padding: 18px 12px;
    text-align: center;
    text-decoration: none !important;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: .25s ease;
}

.resrp-link:hover {
    transform: translateY(-3px);
    border-color: #9db9cb;
    box-shadow: 0 8px 20px rgba(11,39,66,.08);
}

.resrp-link-logo {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--navy);
    font-weight: 800;
    font-size: 17px;
}

.resrp-link span {
    color: var(--muted);
    font-size: 11px;
}

/* ---------- INDEXING ---------- */

.resrp-indexing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.resrp-index {
    position: relative;
    padding: 20px 12px;
    text-align: center;
    background: #f9fbfc;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.resrp-index-name {
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
}

.resrp-index-status {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 9px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
}

.resrp-current {
    background: #e5f4ea;
    color: #277342;
}

.resrp-target {
    background: #eef2f6;
    color: #697887;
}

/* ---------- BUTTONS ---------- */

.resrp-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.resrp-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 7px;
    background: var(--navy);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    transition: .2s;
}

.resrp-button:hover {
    background: var(--blue);
}

/* ---------- UNIVERSITY ---------- */

.resrp-institution {
    text-align: center;
    padding: 30px;
    margin-top: 28px;
    background: var(--light);
    border-radius: 13px;
    border: 1px solid var(--border);
}

.resrp-institution h2 {
    margin: 0 0 7px;
    color: var(--navy);
    font-size: 20px;
}

.resrp-institution p {
    margin: 0;
    color: var(--muted);
}

/* ---------- FOOTER ---------- */

.resrp-footer-note {
    margin-top: 25px;
    padding: 18px;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    border-top: 1px solid var(--border);
}

/* ---------- RESPONSIVE ---------- */

@media(max-width:900px) {

    .resrp-stat-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .resrp-quality {
        grid-template-columns: repeat(2,1fr);
    }

    .resrp-topics {
        grid-template-columns: repeat(2,1fr);
    }

    .resrp-links {
        grid-template-columns: repeat(3,1fr);
    }

    .resrp-indexing {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {

    .resrp-hero {
        padding: 40px 20px;
    }

    .resrp-hero h1 {
        font-size: 25px;
    }

    .resrp-stat-grid,
    .resrp-quality,
    .resrp-topics,
    .resrp-links,
    .resrp-indexing {
        grid-template-columns: 1fr;
    }

    .resrp-section {
        padding: 24px 19px;
    }

    .resrp-free {
        flex-direction: column;
        text-align: center;
    }
}

.resrp-side-block{
  background:#0d1a2e;
  color:#efe8d8;
  border-radius:6px;
  padding:20px;
  margin-bottom:20px;
}
.resrp-side-title{
  font-size:1rem;
  margin:0 0 14px;
  color:#c9a45c;
  border-bottom:1px solid rgba(255,255,255,0.15);
  padding-bottom:10px;
}
.resrp-side-list{
  list-style:none;
  padding:0;
  margin:0 0 16px;
}
.resrp-side-list li{
  font-size:.88rem;
  padding:7px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.resrp-side-icon{
  color:#c9a45c;
  margin-inline-end:6px;
}
.resrp-side-cta{
  display:block;
  text-align:center;
  background:#c9a45c;
  color:#0d1a2e;
  font-weight:600;
  padding:10px;
  border-radius:4px;
  text-decoration:none;
  font-size:.9rem;
}
.resrp-side-issues{
  list-style:none;
  padding:0;
  margin:0;
}
.resrp-side-issues li{
  padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.resrp-side-issues a{
  color:#efe8d8;
  text-decoration:none;
  font-size:.9rem;
}
.resrp-side-date{
  color:#8a8375;
  font-size:.78rem;
  display:block;
}