 
/* =========================================================
   WEBLINKUS
   NORMAL PAGE
   PREMIUM PAGE DESIGN
========================================================= */


/* =========================================================
   01. PAGE
========================================================= */

.page-page {

    width: 100%;

    padding: 70px 0 100px;

    direction: rtl;

    background:
        linear-gradient(
            180deg,
            #f8faff 0%,
            #f4f7fb 100%
        );
}


/* =========================================================
   02. CONTAINER
========================================================= */

.page-container {

    width: min(1200px, 92%);

    margin: 0 auto;
}


/* =========================================================
   03. LAYOUT
   9 COLUMNS + 3 COLUMNS
========================================================= */

.page-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 9fr)
        minmax(270px, 3fr);

    gap: 30px;

    align-items: start;
}


/* =========================================================
   04. MAIN ARTICLE
========================================================= */

.page-article {

    min-width: 0;

    padding: 38px;

    background: #ffffff;

    border: 1px solid rgba(3, 20, 45, 0.05);

    border-radius: 20px;

    box-shadow:
        0 15px 45px rgba(3, 20, 45, 0.06);
}


/* =========================================================
   05. HEADER
========================================================= */

.page-header {

    margin-bottom: 30px;
}


.page-title {

    margin: 0;

    color: #03142d;

    font-size: clamp(28px, 3vw, 36px);

    line-height: 1.45;

    font-weight: 800;

    letter-spacing: -0.5px;
}


/* =========================================================
   06. FEATURED IMAGE
========================================================= */

.page-featured {

    width: 100%;

    margin-bottom: 35px;

    overflow: hidden;

    border-radius: 16px;

    background: #eef2f7;
}


.page-featured-image {

    display: block;

    width: 100%;

    height: auto;

    max-height: 540px;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.page-featured:hover .page-featured-image {

    transform: scale(1.025);
}


/* =========================================================
   07. CONTENT
========================================================= */

.page-content {

    color: #344054;

    font-size: 18px;

    line-height: 2.05;

    font-weight: 400;

    word-wrap: break-word;

    overflow-wrap: break-word;

    text-align: right;
}


/* =========================================================
   08. PARAGRAPHS
========================================================= */

.page-content p {

    margin: 0 0 26px;

    color: #344054;

    font-size: 18px;

    line-height: 2.05;

    text-align: justify;

    text-justify: inter-word;
}


/* =========================================================
   09. HEADINGS
========================================================= */

.page-content h2 {

    position: relative;

    margin: 50px 0 22px;

    padding-right: 16px;

    color: #03142d;

    font-size: 28px;

    line-height: 1.5;

    font-weight: 800;
}


.page-content h2::before {

    content: "";

    position: absolute;

    right: 0;

    top: 7px;

    width: 5px;

    height: calc(100% - 14px);

    background: #155eef;

    border-radius: 5px;
}


.page-content h3 {

    margin: 38px 0 17px;

    color: #03142d;

    font-size: 24px;

    line-height: 1.55;

    font-weight: 800;
}


.page-content h4 {

    margin: 30px 0 14px;

    color: #03142d;

    font-size: 21px;

    line-height: 1.6;

    font-weight: 700;
}


/* =========================================================
   10. STRONG
========================================================= */

.page-content strong,
.page-content b {

    color: #03142d;

    font-weight: 800;
}


/* =========================================================
   11. LINKS
========================================================= */

.page-content a {

    color: #155eef;

    font-weight: 700;

    text-decoration: none;

    border-bottom: 1px solid transparent;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}


.page-content a:hover {

    color: #0b4dcc;

    border-bottom-color: #0b4dcc;
}


/* =========================================================
   12. LISTS
========================================================= */

.page-content ul,
.page-content ol {

    margin: 0 0 28px;

    padding-right: 30px;

    color: #344054;

    font-size: 18px;

    line-height: 2;
}


.page-content li {

    margin-bottom: 11px;

    padding-right: 5px;
}


.page-content li::marker {

    color: #155eef;

    font-weight: 800;
}


/* =========================================================
   13. BLOCKQUOTE
========================================================= */

.page-content blockquote {

    position: relative;

    margin: 38px 0;

    padding: 25px 30px;

    background: #f4f7fb;

    border-right: 5px solid #155eef;

    border-radius: 12px;

    color: #03142d;

    font-size: 18px;

    line-height: 2;

    font-weight: 600;
}


.page-content blockquote p {

    margin: 0;

    color: #03142d;

    font-size: 18px;

    line-height: 2;
}


/* =========================================================
   14. IMAGES
========================================================= */

.page-content img {

    display: block;

    max-width: 100%;

    height: auto;

    margin: 30px auto;

    border-radius: 14px;
}


.page-content figure {

    margin: 35px 0;
}


.page-content figcaption {

    margin-top: 10px;

    color: #667085;

    text-align: center;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   15. TABLE
========================================================= */

.page-content table {

    width: 100%;

    margin: 35px 0;

    border-collapse: collapse;

    font-size: 16px;

    line-height: 1.8;

    background: #ffffff;
}


.page-content th,
.page-content td {

    padding: 14px 16px;

    border: 1px solid #e5e7eb;

    text-align: right;

    vertical-align: middle;
}


.page-content th {

    background: #f3f6fa;

    color: #03142d;

    font-weight: 800;
}


.page-content td {

    color: #344054;
}


/* =========================================================
   16. CODE
========================================================= */

.page-content code {

    padding: 3px 7px;

    background: #f1f4f8;

    color: #155eef;

    border-radius: 6px;

    font-size: 14px;
}


.page-content pre {

    margin: 30px 0;

    padding: 22px;

    overflow-x: auto;

    direction: ltr;

    text-align: left;

    background: #0b1628;

    color: #e6edf7;

    border-radius: 12px;

    line-height: 1.7;
}


.page-content pre code {

    padding: 0;

    background: transparent;

    color: inherit;
}


/* =========================================================
   17. PAGINATION
========================================================= */

.page-pagination {

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #e5e7eb;
}


/* =========================================================
   18. SIDEBAR
========================================================= */

.page-sidebar {

    position: sticky;

    top: 25px;

    display: flex;

    flex-direction: column;

    gap: 22px;
}


/* =========================================================
   19. SIDEBAR BOX
========================================================= */

.page-sidebar-box {

    position: relative;

    padding: 28px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(3, 20, 45, 0.05);

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(3, 20, 45, 0.07);
}


/* =========================================================
   20. ABOUT / PROMO
========================================================= */

.page-sidebar-about {

    border-top: 4px solid #155eef;
}


.page-sidebar-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 46px;

    height: 46px;

    margin-bottom: 15px;

    background: #eef4ff;

    color: #155eef;

    border-radius: 12px;

    font-size: 22px;

    font-weight: 800;
}


.page-sidebar-label {

    display: block;

    margin-bottom: 5px;

    color: #155eef;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


.page-sidebar-box h2 {

    margin: 0 0 15px;

    color: #03142d;

    font-size: 23px;

    line-height: 1.5;

    font-weight: 800;
}


.page-sidebar-box p {

    margin: 0 0 20px;

    color: #667085;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   21. SIDEBAR FEATURES
========================================================= */

.page-sidebar-features {

    margin: 0;

    padding: 0;

    list-style: none;
}


.page-sidebar-features li {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-bottom: 13px;

    color: #344054;

    font-size: 13px;

    line-height: 1.7;
}


.page-sidebar-features li:last-child {

    margin-bottom: 0;
}


.page-sidebar-features li span {

    flex-shrink: 0;

    color: #155eef;

    font-weight: 800;
}


/* =========================================================
   22. CONTACT
========================================================= */

.page-sidebar-contact {

    background:
        linear-gradient(
            145deg,
            #03142d,
            #082c5c
        );
}


.page-sidebar-contact::after {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    left: -65px;

    bottom: -70px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);
}


.page-contact-label {

    position: relative;

    z-index: 2;

    display: block;

    margin-bottom: 8px;

    color: #8db5ff;

    font-size: 12px;

    font-weight: 700;
}


.page-sidebar-contact h3 {

    position: relative;

    z-index: 2;

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.5;

    font-weight: 800;
}


.page-sidebar-contact p {

    position: relative;

    z-index: 2;

    color: #d8e4f5;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   23. PHONE
========================================================= */

.page-sidebar-phone {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    margin-top: 20px;

    padding: 14px 12px;

    background: #ffffff;

    color: #03142d;

    border-radius: 10px;

    font-size: 16px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.page-sidebar-phone:hover {

    color: #03142d;

    transform: translateY(-3px);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.15);
}


.page-phone-icon {

    font-size: 19px;
}


/* =========================================================
   24. TABLET
========================================================= */

@media (max-width: 991px) {

    .page-page {

        padding: 50px 0 70px;
    }


    .page-layout {

        grid-template-columns: 1fr;
    }


    .page-sidebar {

        position: static;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

}


/* =========================================================
   25. MOBILE
========================================================= */

@media (max-width: 767px) {

    .page-page {

        padding: 30px 0 55px;
    }


    .page-container {

        width: 94%;
    }


    .page-article {

        padding: 22px 18px;

        border-radius: 15px;
    }


    .page-title {

        font-size: 27px;

        line-height: 1.5;
    }


    .page-featured {

        margin-bottom: 25px;

        border-radius: 12px;
    }


    .page-content {

        font-size: 16px;

        line-height: 1.95;
    }


    .page-content p {

        margin-bottom: 22px;

        font-size: 16px;

        line-height: 1.95;

        text-align: right;
    }


    .page-content h2 {

        margin: 38px 0 18px;

        padding-right: 13px;

        font-size: 23px;

        line-height: 1.55;
    }


    .page-content h2::before {

        width: 4px;

        top: 6px;

        height: calc(100% - 12px);
    }


    .page-content h3 {

        margin: 30px 0 14px;

        font-size: 21px;
    }


    .page-content h4 {

        margin: 25px 0 12px;

        font-size: 19px;
    }


    .page-content ul,
    .page-content ol {

        padding-right: 25px;

        font-size: 16px;

        line-height: 1.9;
    }


    .page-content blockquote {

        margin: 30px 0;

        padding: 20px;

        font-size: 16px;

        line-height: 1.9;
    }


    .page-content blockquote p {

        font-size: 16px;

        line-height: 1.9;
    }


    .page-content table {

        display: block;

        overflow-x: auto;

        white-space: nowrap;

        font-size: 14px;
    }


    .page-content th,
    .page-content td {

        padding: 11px 12px;
    }


    .page-content pre {

        padding: 16px;

        font-size: 13px;
    }


    /* =====================================================
       MOBILE SIDEBAR
    ===================================================== */

    .page-sidebar {

        display: flex;

        gap: 18px;
    }


    .page-sidebar-box {

        padding: 23px 20px;

        border-radius: 14px;
    }

}
 
