/* =========================================================
   WEBLINKUS
   SINGLE ENGLISH BLOG
   PREMIUM ARTICLE DESIGN
========================================================= */


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

.single-enblog-page {
    width: 100%;
    padding: 70px 0 100px;

    direction: ltr;

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


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

.single-enblog-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================================================
   03. MAIN LAYOUT
   ARTICLE + SIDEBAR
========================================================= */

.single-enblog-layout {
    display: grid;

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

    gap: 30px;

    align-items: start;

    direction: ltr;
}


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

.single-enblog-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);

    direction: ltr;

    text-align: left;
}


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

.single-enblog-header {
    margin-bottom: 30px;

    direction: ltr;

    text-align: left;
}


.single-enblog-title {
    margin: 0 0 18px;

    color: #03142d;

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

    line-height: 1.35;

    font-weight: 800;

    letter-spacing: -0.5px;

    direction: ltr;

    text-align: left;
}


/* =========================================================
   06. META
========================================================= */

.single-enblog-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    direction: ltr;
}


.single-enblog-date,
.single-enblog-category {
    display: inline-flex;

    align-items: center;

    padding: 7px 13px;

    background: #f3f6fa;

    border-radius: 8px;

    color: #667085;

    font-size: 13px;

    line-height: 1.5;
}


.single-enblog-category a {
    color: #155eef;

    text-decoration: none;

    font-weight: 600;
}


.single-enblog-category a:hover {
    color: #0b4dcc;
}


/* =========================================================
   07. FEATURED IMAGE
========================================================= */

.single-enblog-featured {
    width: 100%;

    margin-bottom: 35px;

    overflow: hidden;

    border-radius: 16px;

    background: #eef2f7;
}


.single-enblog-featured-image {
    display: block;

    width: 100%;

    height: auto;

    max-height: 540px;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.single-enblog-featured:hover
.single-enblog-featured-image {
    transform: scale(1.025);
}


/* =========================================================
   08. CONTENT
   PREMIUM ENGLISH TYPOGRAPHY
========================================================= */

.single-enblog-content {
    color: #344054;

    font-size: 18px;

    line-height: 1.9;

    font-weight: 400;

    word-wrap: break-word;

    overflow-wrap: break-word;

    direction: ltr;

    text-align: left;
}


/* =========================================================
   08.1 PARAGRAPHS
========================================================= */

.single-enblog-content p {
    margin: 0 0 26px;

    color: #344054;

    font-size: 18px;

    line-height: 1.9;

    text-align: left;
}


/* First paragraph */

.single-enblog-content > p:first-child {
    color: #26364a;

    font-size: 19px;

    line-height: 2;

    font-weight: 500;
}


/* =========================================================
   08.2 HEADINGS
========================================================= */

.single-enblog-content h2 {
    position: relative;

    margin: 50px 0 22px;

    padding-left: 16px;

    color: #03142d;

    font-size: 28px;

    line-height: 1.45;

    font-weight: 800;

    direction: ltr;

    text-align: left;
}


.single-enblog-content h2::before {
    content: "";

    position: absolute;

    left: 0;

    top: 7px;

    width: 5px;

    height: calc(100% - 14px);

    background: #155eef;

    border-radius: 5px;
}


.single-enblog-content h3 {
    margin: 38px 0 17px;

    color: #03142d;

    font-size: 24px;

    line-height: 1.5;

    font-weight: 800;

    direction: ltr;

    text-align: left;
}


.single-enblog-content h4 {
    margin: 30px 0 14px;

    color: #03142d;

    font-size: 21px;

    line-height: 1.55;

    font-weight: 700;

    direction: ltr;

    text-align: left;
}


/* =========================================================
   08.3 STRONG / BOLD
========================================================= */

.single-enblog-content strong,
.single-enblog-content b {
    color: #03142d;

    font-weight: 800;
}


/* =========================================================
   08.4 LINKS
========================================================= */

.single-enblog-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;
}


.single-enblog-content a:hover {
    color: #0b4dcc;

    text-decoration: none;

    border-bottom-color: #0b4dcc;
}


/* =========================================================
   09. LISTS
========================================================= */

.single-enblog-content ul,
.single-enblog-content ol {
    margin: 0 0 28px;

    padding-left: 30px;

    color: #344054;

    font-size: 18px;

    line-height: 1.9;

    direction: ltr;
}


.single-enblog-content li {
    margin-bottom: 11px;

    padding-left: 5px;
}


.single-enblog-content li::marker {
    color: #155eef;

    font-weight: 800;
}


/* =========================================================
   10. BLOCKQUOTE
========================================================= */

.single-enblog-content blockquote {
    position: relative;

    margin: 38px 0;

    padding: 25px 30px;

    background: #f4f7fb;

    border-left: 5px solid #155eef;

    border-right: 0;

    border-radius: 12px;

    color: #03142d;

    font-size: 18px;

    line-height: 1.9;

    font-weight: 600;

    direction: ltr;

    text-align: left;
}


.single-enblog-content blockquote p {
    margin: 0;

    color: #03142d;

    font-size: 18px;

    line-height: 1.9;

    text-align: left;
}


/* =========================================================
   11. CONTENT IMAGES
========================================================= */

.single-enblog-content img {
    display: block;

    max-width: 100%;

    height: auto;

    margin: 30px auto;

    border-radius: 14px;
}


.single-enblog-content figure {
    margin: 35px 0;
}


.single-enblog-content figcaption {
    margin-top: 10px;

    color: #667085;

    text-align: center;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   12. HORIZONTAL LINE
========================================================= */

.single-enblog-content hr {
    margin: 40px 0;

    border: 0;

    border-top: 1px solid #e5e7eb;
}


/* =========================================================
   13. TABLE
========================================================= */

.single-enblog-content table {
    width: 100%;

    margin: 35px 0;

    border-collapse: collapse;

    overflow: hidden;

    font-size: 16px;

    line-height: 1.8;

    background: #ffffff;

    direction: ltr;
}


.single-enblog-content th,
.single-enblog-content td {
    padding: 14px 16px;

    border: 1px solid #e5e7eb;

    text-align: left;

    vertical-align: middle;
}


.single-enblog-content th {
    background: #f3f6fa;

    color: #03142d;

    font-weight: 800;
}


.single-enblog-content td {
    color: #344054;
}


/* =========================================================
   14. CODE
========================================================= */

.single-enblog-content code {
    padding: 3px 7px;

    background: #f1f4f8;

    color: #155eef;

    border-radius: 6px;

    font-size: 14px;
}


.single-enblog-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;
}


.single-enblog-content pre code {
    padding: 0;

    background: transparent;

    color: inherit;

    border-radius: 0;
}


/* =========================================================
   15. PAGINATION
========================================================= */

.single-enblog-pagination {
    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #e5e7eb;

    direction: ltr;

    text-align: left;
}


/* =========================================================
   16. SHARE
========================================================= */

.single-enblog-share {
    margin-top: 45px;

    padding-top: 30px;

    border-top: 1px solid #e8edf3;

    direction: ltr;
}


.single-enblog-share .share-heading {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-bottom: 20px;
}


.single-enblog-share .share-heading h3 {
    margin: 0;

    color: #03142d;

    font-size: 18px;

    font-weight: 800;

    text-align: center;
}


.single-enblog-share .share-line {
    width: 45px;

    height: 1px;

    background: #dce3ec;
}


.single-enblog-share .share-buttons {
    display: flex;

    justify-content: center;

    gap: 10px;

    direction: ltr;
}


.single-enblog-share .share-button {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    padding: 0;

    border: 0;

    border-radius: 12px;

    cursor: pointer;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

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


.single-enblog-share .share-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(3, 20, 45, 0.12);
}


.single-enblog-share .share-facebook {
    background: #1877f2;

    color: #ffffff;
}


.single-enblog-share .share-whatsapp {
    background: #25d366;

    color: #ffffff;
}


.single-enblog-share .share-x {
    background: #03142d;

    color: #ffffff;
}


.single-enblog-share .share-copy {
    background: #eef3f9;

    color: #03142d;
}


.single-enblog-share .share-copy.copied {
    background: #155eef;

    color: #ffffff;
}


/* =========================================================
   17. RELATED POSTS
========================================================= */

.single-enblog-article .related-posts {
    margin-top: 55px;

    padding-top: 40px;

    border-top: 1px solid #e8edf3;

    direction: ltr;
}


/* =========================================================
   18. RELATED HEADING
========================================================= */

.single-enblog-article .related-heading {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-bottom: 28px;

    text-align: center;
}


.single-enblog-article .related-heading > div {
    flex-shrink: 0;
}


.single-enblog-article .related-label {
    display: block;

    margin-bottom: 4px;

    color: #155eef;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}


.single-enblog-article .related-heading h2 {
    margin: 0;

    color: #03142d;

    font-size: 26px;

    font-weight: 800;

    text-align: center;
}


.single-enblog-article .related-line {
    width: 70px;

    height: 1px;

    background: #dce3ec;
}


/* =========================================================
   19. RELATED GRID
========================================================= */

.single-enblog-article .related-grid {
    display: grid;

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

    gap: 18px;

    direction: ltr;
}


/* =========================================================
   20. RELATED CARD
========================================================= */

.single-enblog-article .related-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8edf3;

    border-radius: 14px;

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


.single-enblog-article .related-card:hover {
    transform: translateY(-5px);

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


/* =========================================================
   21. RELATED IMAGE
========================================================= */

.single-enblog-article .related-image {
    display: block;

    width: 100%;

    height: 165px;

    overflow: hidden;

    background: #eef2f7;
}


.single-enblog-article .related-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.single-enblog-article .related-card:hover
.related-image img {
    transform: scale(1.06);
}


.single-enblog-article .related-no-image {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

    background:
        linear-gradient(
            135deg,
            #03142d,
            #155eef
        );

    color: #ffffff;

    font-size: 18px;

    font-weight: 800;
}


/* =========================================================
   22. RELATED CONTENT
========================================================= */

.single-enblog-article .related-content {
    padding: 18px;

    direction: ltr;

    text-align: left;
}


.single-enblog-article .related-date {
    display: block;

    margin-bottom: 8px;

    color: #98a2b3;

    font-size: 12px;
}


.single-enblog-article .related-content h3 {
    margin: 0 0 15px;

    min-height: 55px;

    line-height: 1.6;

    font-size: 17px;

    font-weight: 800;

    text-align: left;
}


.single-enblog-article .related-content h3 a {
    color: #03142d;

    text-decoration: none;
}


.single-enblog-article .related-content h3 a:hover {
    color: #155eef;
}


.single-enblog-article .related-read {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #155eef;

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;
}


.single-enblog-article .related-read span {
    transition:
        transform 0.25s ease;
}


.single-enblog-article .related-read:hover span {
    transform: translateX(4px);
}


/* =========================================================
   23. SIDEBAR
========================================================= */

.single-enblog-layout .single-sidebar {
    position: sticky;

    top: 25px;

    display: flex;

    flex-direction: column;

    gap: 22px;

    direction: ltr;
}


/* =========================================================
   24. SIDEBAR BOX
========================================================= */

.single-enblog-layout .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);

    direction: ltr;

    text-align: left;
}


/* =========================================================
   25. SIDEBAR ABOUT
========================================================= */

.single-enblog-layout .sidebar-about {
    border-top: 4px solid #155eef;
}


.single-enblog-layout .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;
}


.single-enblog-layout .sidebar-label {
    display: block;

    margin-bottom: 4px;

    color: #155eef;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


.single-enblog-layout .sidebar-box h2 {
    margin: 0 0 15px;

    color: #03142d;

    font-size: 23px;

    line-height: 1.4;

    font-weight: 800;

    direction: ltr;

    text-align: left;
}


.single-enblog-layout .sidebar-box p {
    margin: 0 0 20px;

    color: #667085;

    font-size: 14px;

    line-height: 1.9;

    direction: ltr;

    text-align: left;
}


/* =========================================================
   26. SIDEBAR FEATURES
========================================================= */

.single-enblog-layout .sidebar-features {
    margin: 0;

    padding: 0;

    list-style: none;

    direction: ltr;
}


.single-enblog-layout .sidebar-features li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-bottom: 13px;

    color: #344054;

    font-size: 13px;

    line-height: 1.7;

    direction: ltr;

    text-align: left;
}


.single-enblog-layout .sidebar-features li:last-child {
    margin-bottom: 0;
}


.single-enblog-layout .sidebar-features li span {
    flex-shrink: 0;

    color: #155eef;

    font-weight: 800;
}


.single-enblog-layout .sidebar-features li strong {
    color: #03142d;
}


/* =========================================================
   27. CONTACT BOX
========================================================= */

.single-enblog-layout .sidebar-contact {
    background:
        linear-gradient(
            145deg,
            #03142d,
            #082c5c
        );
}


.single-enblog-layout .sidebar-contact::after {
    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    right: -65px;

    bottom: -70px;

    border-radius: 50%;

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


.single-enblog-layout .contact-label {
    position: relative;

    z-index: 2;

    display: block;

    margin-bottom: 8px;

    color: #8db5ff;

    font-size: 12px;

    font-weight: 700;

    direction: ltr;

    text-align: left;
}


.single-enblog-layout .sidebar-contact h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.4;

    font-weight: 800;

    direction: ltr;

    text-align: left;
}


.single-enblog-layout .sidebar-contact p {
    position: relative;

    z-index: 2;

    color: #d8e4f5;

    font-size: 14px;

    line-height: 1.9;

    direction: ltr;

    text-align: left;
}


/* =========================================================
   28. PHONE
========================================================= */

.single-enblog-layout .sidebar-phone {
    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    padding: 14px 12px;

    background: #ffffff;

    color: #03142d;

    border-radius: 10px;

    font-size: 16px;

    font-weight: 800;

    text-decoration: none;

    direction: ltr;

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


.single-enblog-layout .sidebar-phone:hover {
    color: #03142d;

    transform: translateY(-3px);

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


.single-enblog-layout .phone-icon {
    font-size: 19px;
}


/* =========================================================
   29. TABLET
========================================================= */

@media (max-width: 991px) {

    .single-enblog-page {
        padding: 50px 0 70px;
    }


    .single-enblog-layout {
        grid-template-columns: 1fr;
    }


    .single-enblog-layout .single-sidebar {
        position: static;

        display: grid;

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

        gap: 20px;
    }


    .single-enblog-article .related-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   30. MOBILE
========================================================= */

@media (max-width: 767px) {

    .single-enblog-page {
        padding: 30px 0 55px;
    }


    .single-enblog-container {
        width: 94%;
    }


    .single-enblog-article {
        padding: 22px 18px;

        border-radius: 15px;
    }


    .single-enblog-title {
        font-size: 27px;

        line-height: 1.45;
    }


    .single-enblog-meta {
        gap: 7px;
    }


    .single-enblog-date,
    .single-enblog-category {
        font-size: 12px;

        padding: 6px 10px;
    }


    .single-enblog-featured {
        margin-bottom: 25px;

        border-radius: 12px;
    }


    /* =====================================================
       MOBILE CONTENT
    ===================================================== */

    .single-enblog-content {
        font-size: 16px;

        line-height: 1.85;
    }


    .single-enblog-content p {
        margin-bottom: 22px;

        font-size: 16px;

        line-height: 1.85;

        text-align: left;
    }


    .single-enblog-content > p:first-child {
        font-size: 17px;

        line-height: 1.95;
    }


    .single-enblog-content h2 {
        margin: 38px 0 18px;

        padding-left: 13px;

        font-size: 23px;

        line-height: 1.5;
    }


    .single-enblog-content h2::before {
        width: 4px;

        left: 0;

        top: 6px;

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


    .single-enblog-content h3 {
        margin: 30px 0 14px;

        font-size: 21px;

        line-height: 1.5;
    }


    .single-enblog-content h4 {
        margin: 25px 0 12px;

        font-size: 19px;
    }


    .single-enblog-content ul,
    .single-enblog-content ol {
        padding-left: 25px;

        font-size: 16px;

        line-height: 1.85;
    }


    .single-enblog-content blockquote {
        margin: 30px 0;

        padding: 20px;

        font-size: 16px;

        line-height: 1.85;
    }


    .single-enblog-content blockquote p {
        font-size: 16px;

        line-height: 1.85;
    }


    .single-enblog-content table {
        display: block;

        overflow-x: auto;

        white-space: nowrap;

        font-size: 14px;
    }


    .single-enblog-content th,
    .single-enblog-content td {
        padding: 11px 12px;
    }


    .single-enblog-content pre {
        padding: 16px;

        font-size: 13px;
    }


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

    .single-enblog-layout .single-sidebar {
        display: flex;

        flex-direction: column;

        gap: 18px;
    }


    .single-enblog-layout .sidebar-box {
        padding: 23px 20px;

        border-radius: 14px;
    }


    /* =====================================================
       MOBILE SHARE
    ===================================================== */

    .single-enblog-share {
        margin-top: 35px;
    }


    .single-enblog-share .share-buttons {
        gap: 8px;
    }


    .single-enblog-share .share-button {
        width: 42px;

        height: 42px;
    }


    /* =====================================================
       MOBILE RELATED
    ===================================================== */

    .single-enblog-article .related-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .single-enblog-article .related-image {
        height: 190px;
    }


    .single-enblog-article .related-content h3 {
        min-height: auto;
    }


    .single-enblog-article .related-heading {
        gap: 10px;
    }


    .single-enblog-article .related-line {
        width: 30px;
    }

}