﻿/* =========================================================
   CORPORATE DARK
   MAIN THEME
   Black + Yellow
   Mobile First
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background: #1d1f22;
    color: #ffffff;
    font-family: Tahoma, Arial, sans-serif;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.corporate-header {
    width: 100%;
    background: #191a1d;
    border-bottom: 1px solid rgba(252, 185, 0, 0.12);
    position: relative;
    z-index: 1000;
}


/* =========================================================
   HEADER INNER
   ========================================================= */

.corporate-header-inner {
    width: 100%;
    min-height: 72px;
    margin: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    direction: rtl;
}


/* =========================================================
   LOGO
   ========================================================= */

.corporate-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 0;
    margin-left: 40px;
    text-decoration: none;
}

    .corporate-logo img {
        display: block;
        width: auto;
        max-width: 145px;
        max-height: 55px;
    }

.corporate-logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.corporate-menu-toggle {
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

    .corporate-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #ffffff;
        transition: 0.25s ease;
    }


/* =========================================================
   NAVIGATION
   ========================================================= */

.corporate-navigation {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 10px 15px;
    background: #191a1d;
    border-top: 1px solid rgba(252, 185, 0, 0.10);
}


    /* MOBILE OPEN */

    .corporate-navigation.is-open {
        display: flex;
    }


/* =========================================================
   NAV LINK
   ========================================================= */

.corporate-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin: 3px 0;
    padding: 0 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: color 0.25s ease, background 0.25s ease;
}


    /* =========================================================
   HOVER BACKGROUND
   ========================================================= */

    .corporate-nav-link:hover {
        color: #fcb900;
        background: rgba(252, 185, 0, 0.06);
    }


    /* =========================================================
   HOVER LINE
   ========================================================= */

    .corporate-nav-link::after {
        content: "";
        position: absolute;
        right: 20px;
        left: 20px;
        bottom: 7px;
        height: 2px;
        background: #fcb900;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.25s ease;
    }


    .corporate-nav-link:hover::after {
        transform: scaleX(1);
    }


    /* =========================================================
   ACTIVE
   ========================================================= */

    .corporate-nav-link.active {
        background: #fcb900;
        color: #111111;
    }


        /* Active doesn't need the hover line */

        .corporate-nav-link.active::after {
            display: none;
        }


        .corporate-nav-link.active:hover {
            background: #d99d00;
            color: #111111;
        }


/* =========================================================
   HERO
   ========================================================= */

.corporate-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 72px);
    overflow: hidden;
    background: #1d1f22;
}


/* =========================================================
   HERO BACKGROUND
   ========================================================= */

.corporate-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient( circle at 20% 50%, rgba(252, 185, 0, 0.10), transparent 35% ), radial-gradient( circle at 80% 20%, rgba(252, 185, 0, 0.06), transparent 30% );
}


/* =========================================================
   HERO INNER
   ========================================================= */

.corporate-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    min-height: calc(100vh - 20px);
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.corporate-hero-content {
    width: 100%;
    max-width: 650px;
}


/* =========================================================
   HERO LABEL
   ========================================================= */

.corporate-hero-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 7px 14px;
    border: 1px solid rgba(252, 185, 0, 0.25);
    border-radius: 30px;
    background: rgba(252, 185, 0, 0.06);
    color: #fcb900;
    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.corporate-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.45;
    font-weight: 700;
}

    .corporate-hero h1 strong {
        display: block;
        color: #fcb900;
        font-weight: 800;
    }


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.corporate-hero-description {
    max-width: 600px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 2.1;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.corporate-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}


/* =========================================================
   BUTTON
   ========================================================= */

.corporate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

    .corporate-btn:hover {
        transform: translateY(-2px);
    }


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.corporate-btn-primary {
    background: #fcb900;
    color: #111111;
}

    .corporate-btn-primary:hover {
        background: #d99d00;
        color: #111111;
    }


/* =========================================================
   OUTLINE BUTTON
   ========================================================= */

.corporate-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
}

    .corporate-btn-outline:hover {
        border-color: rgba(252, 185, 0, 0.5);
        background: rgba(252, 185, 0, 0.06);
        color: #fcb900;
    }


/* =========================================================
   HERO VISUAL
   ========================================================= */

.corporate-hero-visual {
    position: relative;
    width: 100%;
    min-height: 300px;
    margin-top: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   HERO CIRCLES
   ========================================================= */

.corporate-hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(252, 185, 0, 0.15);
}

.circle-one {
    width: 230px;
    height: 230px;
}

.circle-two {
    width: 330px;
    height: 330px;
    border-color: rgba(252, 185, 0, 0.07);
}


/* =========================================================
   HERO CARD
   ========================================================= */

.corporate-hero-card {
    position: relative;
    z-index: 2;
    width: 260px;
    min-height: 150px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}


/* =========================================================
   HERO CARD ICON
   ========================================================= */

.hero-card-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fcb900;
    color: #111111;
    font-size: 24px;
    font-weight: 300;
}


/* =========================================================
   HERO CARD CONTENT
   ========================================================= */

.hero-card-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .hero-card-content strong {
        color: #ffffff;
        font-size: 15px;
    }

    .hero-card-content span {
        color: rgba(255, 255, 255, 0.5);
        font-size: 13px;
    }


/* =========================================================
   HERO SCROLL
   ========================================================= */

.corporate-hero-scroll {
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 35px;
    background: rgba(252, 185, 0, 0.35);
}


/* =========================================================
   CORPORATE PAGES
   ========================================================= */

.corporate-page {
    width: 100%;
    min-height: 70vh;
    padding: 15px 5px 10px;
}

.corporate-page-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================================
   PAGE HEADER
   ========================================================= */

.corporate-page-header {
    position: relative;
    text-align: center;
    margin-bottom: 5px;
}

    .corporate-page-header::after {
        content: "";
        display: block;
        width: 55px;
        height: 3px;
        margin: 18px auto 0;
        background: #fcb900;
    }


/* =========================================================
   PAGE LABEL
   ========================================================= */

.corporate-page-label {
    display: block;
    margin-bottom: 8px;
    color: #fcb900;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   PAGE TITLE
   ========================================================= */

.corporate-page-title {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 800;
}


/* =========================================================
   PAGE INTRO
   ========================================================= */

.corporate-page-intro {
    max-width: 760px;
    margin: 12px auto 0;
    color: #aeb4bb;
    font-size: 15px;
    line-height: 2;
}


/* =========================================================
   PAGE CONTENT
   ========================================================= */

.corporate-page-content {
    background: #191a1d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px 20px;
    color: #d7d9dc;
    font-size: 15px;
    line-height: 2.2;
}


    /* =========================================================
   CONTENT HEADINGS
   ========================================================= */

    .corporate-page-content h2 {
        margin: 35px 0 18px;
        padding-right: 14px;
        border-right: 3px solid #fcb900;
        color: #ffffff;
        font-size: 23px;
        line-height: 1.7;
    }

    .corporate-page-content h3 {
        margin: 30px 0 15px;
        color: #ffffff;
        font-size: 19px;
    }

    .corporate-page-content h4 {
        color: #ffffff;
    }


    /* =========================================================
   CONTENT PARAGRAPHS
   ========================================================= */

    .corporate-page-content p {
        margin: 0 0 20px;
    }


    /* =========================================================
   CONTENT LINKS
   ========================================================= */

    .corporate-page-content a {
        color: #fcb900;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .corporate-page-content a:hover {
            color: #ffd45c;
            text-decoration: underline;
        }


    /* =========================================================
   CONTENT LIST
   ========================================================= */

    .corporate-page-content ul,
    .corporate-page-content ol {
        margin: 20px 0;
        padding-right: 25px;
    }

    .corporate-page-content li {
        margin-bottom: 10px;
    }


    /* =========================================================
   CONTENT IMAGES
   ========================================================= */

    .corporate-page-content img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 25px auto;
        border-radius: 8px;
    }


    /* =========================================================
   CONTENT TABLE
   ========================================================= */

    .corporate-page-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
    }

    .corporate-page-content th,
    .corporate-page-content td {
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        text-align: right;
    }

    .corporate-page-content th {
        background: #222428;
        color: #ffffff;
    }

    .corporate-page-content td {
        color: #c7cbd0;
    }


    /* =========================================================
   BLOCKQUOTE
   ========================================================= */

    .corporate-page-content blockquote {
        margin: 25px 0;
        padding: 18px 20px;
        border-right: 3px solid #fcb900;
        background: #222428;
        color: #c7cbd0;
    }


/* =========================================================
   PAGE CTA
   ========================================================= */

.corporate-page-cta {
    margin-top: 35px;
    padding: 40px 25px;
    background: linear-gradient( 135deg, #191a1d, #222428 );
    border: 1px solid rgba(252, 185, 0, 0.18);
    border-radius: 12px;
    text-align: center;
}

    .corporate-page-cta h2 {
        margin: 0 0 15px;
        color: #ffffff;
        font-size: 22px;
        line-height: 1.7;
    }

    .corporate-page-cta p {
        max-width: 650px;
        margin: 0 auto 25px;
        color: #aeb4bb;
        line-height: 2;
    }


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 768px) {

    /* =====================================================
       HEADER
       ===================================================== */

    .corporate-header-inner {
        min-height: 88px;
        padding: 0 30px;
        direction: rtl;
        justify-content: flex-start;
    }


    /* =====================================================
       LOGO - RIGHT
       ===================================================== */

    .corporate-logo {
        order: 1;
        flex: 0 0 auto;
        margin-left: 45px;
        margin-right: 0;
    }


    /* =====================================================
       DESKTOP NAVIGATION
       ===================================================== */

    .corporate-navigation {
        position: static;
        display: flex;
        flex: 1 1 auto;
        width: auto;
        max-width: none;
        min-width: 0;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        background: transparent;
        border: 0;
        order: 2;
        gap: 8px;
    }


    .corporate-services-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    /* =====================================================
       DESKTOP NAV LINK
       ===================================================== */

    .corporate-nav-link {
        position: relative;
        min-height: 54px;
        padding: 0 25px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        color: #ffffff;
        white-space: nowrap;
        transition: color 0.25s ease, background 0.25s ease;
    }


        /* =====================================================
           HOVER
           ===================================================== */

        .corporate-nav-link:hover {
            color: #fcb900;
            background: rgba(252, 185, 0, 0.06);
        }


        /* =====================================================
           HOVER UNDERLINE
           ===================================================== */

        .corporate-nav-link::after {
            content: "";
            position: absolute;
            right: 18px;
            left: 18px;
            bottom: 5px;
            height: 2px;
            background: #fcb900;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.25s ease;
        }


        .corporate-nav-link:hover::after {
            transform: scaleX(1);
        }


        /* =====================================================
           ACTIVE
           ===================================================== */

        .corporate-nav-link.active {
            background: #fcb900;
            color: #111111;
        }


            .corporate-nav-link.active::after {
                display: none;
            }


            .corporate-nav-link.active:hover {
                background: #d99d00;
                color: #111111;
            }


    /* =====================================================
       MOBILE MENU BUTTON
       ===================================================== */

    .corporate-menu-toggle {
        display: none;
    }


    /* =====================================================
       HERO - COMPACT DESKTOP
       ===================================================== */

    .corporate-hero {
        min-height: auto;
    }


    .corporate-hero-inner {
        min-height: 520px;
        padding: 5px 15px 95px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }


    .corporate-hero-content {
        flex: 1;
        max-width: 650px;
    }


    .corporate-hero h1 {
        font-size: 54px;
        line-height: 1.4;
    }


    .corporate-hero-description {
        font-size: 17px;
    }


    .corporate-hero-visual {
        flex: 0 0 400px;
        min-height: 420px;
        margin-top: 0;
    }


    .circle-one {
        width: 300px;
        height: 300px;
    }


    .circle-two {
        width: 420px;
        height: 420px;
    }


    .corporate-hero-card {
        width: 300px;
        min-height: 175px;
        padding: 30px;
    }


    /* =====================================================
       SCROLL
       ===================================================== */

    .corporate-hero-scroll {
        display: none;
    }


    /* =====================================================
       PAGES
       ===================================================== */

    .corporate-page {
        padding: 25px 25px 50px;
    }


    .corporate-page-header {
        margin-bottom: 5px;
    }


    .corporate-page-title {
        font-size: 38px;
    }


    .corporate-page-intro {
        font-size: 16px;
    }


    .corporate-page-content {
        padding: 35px 45px;
        font-size: 16px;
    }


    .corporate-page-cta {
        padding: 50px 40px;
    }


        .corporate-page-cta h2 {
            font-size: 27px;
        }
}
/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1100px) {

    .corporate-header-inner {
        padding: 0 30px;
    }

    .corporate-navigation {
        gap: 8px;
    }

    .corporate-nav-link {
        min-height: 56px;
        padding: 0 25px;
        font-size: 16px;
    }

    .corporate-logo img {
        max-width: 170px;
        max-height: 65px;
    }
}
/* =====================================================
   HERO QUICK LINKS
   ===================================================== */

.corporate-hero-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
}


/* =====================================================
   QUICK LINK BUTTON
   ===================================================== */

.corporate-hero-link {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid #fcb900;
    border-radius: 8px;
    background: transparent;
    color: #fcb900;
    text-decoration: none;
    text-align: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}


    /* متن */

    .corporate-hero-link strong {
        color: inherit;
        font-size: 14px;
        font-weight: 700;
    }


    /* هاور */

    .corporate-hero-link:hover {
        background: #fcb900;
        color: #111111;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(252, 185, 0, 0.18);
    }


/* موبایل */

@media (max-width: 600px) {

    .corporate-hero-links {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   HOME PAGE SECTIONS
   Black + Yellow
   ========================================================= */


/* =========================================================
   COMMON CONTAINER
   ========================================================= */

.corporate-section-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   SECTION
   ========================================================= */

.corporate-services,
.corporate-home-content {
    width: 100%;
    padding: 55px 0;
    background: #1d1f22;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.corporate-section-header {
    max-width: 750px;
    margin: 0 auto 35px;
    text-align: center;
}

.corporate-section-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #fcb900;
    font-size: 13px;
    font-weight: 700;
}

.corporate-section-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.6;
    font-weight: 800;
}

.corporate-section-header p {
    margin: 15px auto 0;
    color: rgba(255,255,255,0.62);
    font-size: 15px;
    line-height: 2;
}


/* =========================================================
   SERVICES GRID
   ========================================================= */
.corporate-service-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 8px;
    background: #222428;
}

    .corporate-service-image img {
        display: block;
        width: 300px;
        height: 300px;
        max-width: none;
        object-fit: cover;
    }


/* =========================================================
   SERVICE CARD
   ========================================================= */

.corporate-service-card {
    position: relative;
    padding: 28px 24px;
    background: #191a1d;
    border: 1px solid rgba(252,185,0,0.12);
    border-radius: 10px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .corporate-service-card:hover {
        transform: translateY(-4px);
        border-color: rgba(252,185,0,0.45);
        box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    }


/* =========================================================
   SERVICE ICON
   ========================================================= */

.corporate-service-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #fcb900;
    border-radius: 8px;
    color: #fcb900;
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   SERVICE TITLE
   ========================================================= */

.corporate-service-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.7;
}


/* =========================================================
   SERVICE TEXT
   ========================================================= */

.corporate-service-card p {
    margin: 0 0 20px;
    color: rgba(255,255,255,0.58);
    font-size: 14px;
    line-height: 2;
}


/* =========================================================
   SERVICE LINK
   ========================================================= */

.corporate-service-card a {
    display: inline-flex;
    align-items: center;
    color: #fcb900;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

    .corporate-service-card a:hover {
        color: #ffd45c;
    }


/* =========================================================
   HOME CONTENT
   ========================================================= */

.corporate-home-content {
    background: #191a1d;
}


/* =========================================================
   HOME CONTENT BOX
   ========================================================= */

.corporate-home-content-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 22px;
    background: #1d1f22;
    border: 1px solid rgba(252,185,0,0.10);
    border-radius: 10px;
    color: #d7d9dc;
    font-size: 15px;
    line-height: 2.2;
}


    /* =========================================================
   CONTENT ELEMENTS
   ========================================================= */

    .corporate-home-content-box h2,
    .corporate-home-content-box h3,
    .corporate-home-content-box h4 {
        color: #ffffff;
    }

    .corporate-home-content-box h2 {
        margin: 30px 0 15px;
        padding-right: 12px;
        border-right: 3px solid #fcb900;
    }

    .corporate-home-content-box h3 {
        margin: 25px 0 12px;
    }

    .corporate-home-content-box p {
        margin: 0 0 18px;
    }

    .corporate-home-content-box a {
        color: #fcb900;
        text-decoration: none;
    }

        .corporate-home-content-box a:hover {
            color: #ffd45c;
            text-decoration: underline;
        }

    .corporate-home-content-box img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 25px auto;
        border-radius: 8px;
    }


/* =========================================================
   HOME CTA
   ========================================================= */

.corporate-home-cta {
    width: 100%;
    padding: 50px 0;
    background: #1d1f22;
}


/* =========================================================
   CTA INNER
   ========================================================= */

.corporate-home-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 35px 25px;
    background: linear-gradient( 135deg, #191a1d, #222428 );
    border: 1px solid rgba(252,185,0,0.16);
    border-radius: 12px;
}


    /* =========================================================
   CTA TITLE
   ========================================================= */

    .corporate-home-cta-inner h2 {
        margin: 0 0 12px;
        color: #ffffff;
        font-size: 24px;
        line-height: 1.7;
    }


    /* =========================================================
   CTA TEXT
   ========================================================= */

    .corporate-home-cta-inner p {
        margin: 0;
        color: rgba(255,255,255,0.60);
        font-size: 14px;
        line-height: 2;
    }


/* ========================================
   CorporateDark - Article
   ======================================== */
/* =========================================
    CorporateDark Article
    فقط مخصوص Article/Details.cshtml
    ========================================= */

.corporate-article {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 30px 20px 70px;
    box-sizing: border-box;
    color: #ddd;
}

/* =========================================
   Breadcrumb
   ========================================= */

.corporate-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    padding: 12px 16px;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.8;
}

    .corporate-breadcrumb a {
        color: #d4af37;
        text-decoration: none;
    }

        .corporate-breadcrumb a:hover {
            color: #f2c94c;
        }

    .corporate-breadcrumb span {
        color: #777;
    }


/* =========================================
   Article Header
   ========================================= */

.corporate-article-header {
    margin-bottom: 25px;
}

.corporate-article-title {
    margin: 0 0 15px;
    color: #f5f5f5;
    font-size: 34px;
    line-height: 1.7;
    font-weight: 700;
}

.corporate-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #999;
    font-size: 13px;
}

    .corporate-article-meta span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }


/* =========================================
   Main Layout
   ========================================= */

.corporate-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
    align-items: start;
}


/* =========================================
   Main Article
   ========================================= */

.corporate-article-main {
    min-width: 0;
    padding: 30px;
    background: #111;
    border: 1px solid #292929;
    border-radius: 12px;
    box-sizing: border-box;
}


/* =========================================
   Cover
   ========================================= */

.corporate-article-cover {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 10px;
    background: #181818;
}

    .corporate-article-cover img {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
    }


/* =========================================
   Summary
   ========================================= */

.corporate-article-summary {
    margin-bottom: 25px;
    padding: 18px 20px;
    background: #181818;
    border-right: 3px solid #d4af37;
    border-radius: 7px;
    color: #ccc;
    font-size: 16px;
    line-height: 2;
}


/* =========================================
   Table Of Contents
   ========================================= */

.corporate-article-toc {
    margin-bottom: 28px;
    padding: 18px 20px;
    background: #181818;
    border: 1px solid #292929;
    border-right: 3px solid #d4af37;
    border-radius: 8px;
    line-height: 2;
}

    .corporate-article-toc a {
        color: #d4af37;
        text-decoration: none;
    }

        .corporate-article-toc a:hover {
            color: #f2c94c;
        }


/* =========================================
   Article Content
   ========================================= */

.corporate-article-content {
    color: #d1d1d1;
    font-size: 17px;
    line-height: 2.15;
}

    .corporate-article-content p {
        margin: 0 0 22px;
    }

    .corporate-article-content h2,
    .corporate-article-content h3,
    .corporate-article-content h4 {
        margin-top: 35px;
        margin-bottom: 18px;
        color: #f2f2f2;
        line-height: 1.7;
    }

    .corporate-article-content h2 {
        padding-right: 12px;
        border-right: 3px solid #d4af37;
        font-size: 25px;
    }

    .corporate-article-content h3 {
        font-size: 21px;
    }

    .corporate-article-content h4 {
        font-size: 19px;
    }

    .corporate-article-content a {
        color: #d4af37;
        text-decoration: none;
    }

        .corporate-article-content a:hover {
            color: #f2c94c;
            text-decoration: underline;
        }

    .corporate-article-content img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 25px auto;
        border-radius: 8px;
    }

    .corporate-article-content ul,
    .corporate-article-content ol {
        margin: 20px 0;
        padding-right: 25px;
    }

    .corporate-article-content li {
        margin-bottom: 10px;
    }

    .corporate-article-content blockquote {
        margin: 25px 0;
        padding: 18px 20px;
        background: #181818;
        border-right: 3px solid #d4af37;
        border-radius: 7px;
        color: #bbb;
    }


/* =========================================
   Sidebar
   ========================================= */

.corporate-article-sidebar {
    min-width: 0;
}

.corporate-sidebar-box {
    margin-bottom: 20px;
    padding: 20px;
    background: #111;
    border: 1px solid #292929;
    border-radius: 10px;
}

    .corporate-sidebar-box h3 {
        margin: 0 0 15px;
        padding-bottom: 12px;
        color: #f2f2f2;
        font-size: 19px;
        border-bottom: 1px solid #292929;
    }

    .corporate-sidebar-box a {
        display: block;
        padding: 10px 0;
        color: #bbb;
        text-decoration: none;
        line-height: 1.8;
        border-bottom: 1px solid #222;
    }

        .corporate-sidebar-box a:last-child {
            border-bottom: 0;
        }

        .corporate-sidebar-box a:hover {
            color: #d4af37;
        }


/* =========================================
   Comments
   ========================================= */

.corporate-article-comments {
    margin-top: 35px;
}

    .corporate-article-comments h2,
    .corporate-comment-form h2 {
        margin: 0 0 20px;
        color: #f2f2f2;
        font-size: 22px;
    }

.corporate-comment {
    margin-bottom: 15px;
    padding: 18px;
    background: #181818;
    border: 1px solid #292929;
    border-radius: 8px;
}

    .corporate-comment strong {
        color: #d4af37;
    }

    .corporate-comment small {
        display: block;
        margin-top: 7px;
        color: #777;
    }

    .corporate-comment p {
        margin: 10px 0 0;
        color: #ccc;
        line-height: 1.9;
    }


/* =========================================
   Admin Reply
   ========================================= */

.corporate-admin-reply {
    margin-top: 15px;
    padding: 14px 16px;
    background: #202020;
    border-right: 3px solid #d4af37;
    border-radius: 6px;
}

    .corporate-admin-reply strong {
        color: #d4af37;
    }

    .corporate-admin-reply p {
        margin-bottom: 0;
    }


/* =========================================
   Comment Form
   ========================================= */

.corporate-comment-form {
    margin-top: 35px;
}

.corporate-form-group {
    margin-bottom: 18px;
}

    .corporate-form-group label {
        display: block;
        margin-bottom: 7px;
        color: #ccc;
        font-size: 14px;
    }

    .corporate-form-group input,
    .corporate-form-group textarea {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 11px 13px;
        background: #181818;
        border: 1px solid #333;
        border-radius: 6px;
        color: #eee;
        font-family: inherit;
        font-size: 15px;
        outline: none;
    }

    .corporate-form-group textarea {
        min-height: 130px;
        resize: vertical;
    }

        .corporate-form-group input:focus,
        .corporate-form-group textarea:focus {
            border-color: #d4af37;
        }


/* =========================================
   Submit Button
   ========================================= */

.corporate-comment-form button {
    display: inline-block;
    padding: 11px 25px;
    background: #d4af37;
    border: 0;
    border-radius: 6px;
    color: #111;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

    .corporate-comment-form button:hover {
        background: #f2c94c;
    }


/* =========================================
   Alert
   ========================================= */

.corporate-alert {
    margin-bottom: 20px;
    padding: 12px 15px;
    background: #182018;
    border: 1px solid #304530;
    border-radius: 6px;
    color: #b9d8b9;
}


/* =========================================
   Mobile
   ========================================= */

@media (max-width: 900px) {

    .corporate-article-layout {
        grid-template-columns: 1fr;
    }

    .corporate-article-sidebar {
        order: 2;
    }

    .corporate-article-main {
        padding: 22px;
    }

    .corporate-article-title {
        font-size: 28px;
    }
}


@media (max-width: 600px) {

    .corporate-article {
        padding: 20px 12px 45px;
    }

    .corporate-article-main {
        padding: 17px;
    }

    .corporate-article-title {
        font-size: 23px;
        line-height: 1.8;
    }

    .corporate-article-meta {
        gap: 10px;
        font-size: 12px;
    }

    .corporate-article-content {
        font-size: 16px;
        line-height: 2;
    }

    .corporate-article-summary {
        padding: 14px;
        font-size: 15px;
    }

    .corporate-sidebar-box {
        padding: 17px;
    }
}
/* =========================
   Corporate Article Sidebar
   ========================= */

.corporate-article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sidebar Box */
.corporate-sidebar-box {
    background: #151515;
    border: 1px solid #292929;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

    /* عنوان */
    .corporate-sidebar-box h3 {
        position: relative;
        margin: 0 0 18px;
        padding-bottom: 14px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.6;
        border-bottom: 1px solid #292929;
    }

        /* خط کوچک کنار عنوان */
        .corporate-sidebar-box h3::before {
            content: "";
            position: absolute;
            right: 0;
            bottom: -1px;
            width: 55px;
            height: 3px;
            background: #e0a84c;
            border-radius: 3px;
        }

    /* لینک مقالات */
    .corporate-sidebar-box a {
        display: block;
        position: relative;
        padding: 13px 18px 13px 10px;
        margin-bottom: 8px;
        color: #cfcfcf;
        background: #1b1b1b;
        border: 1px solid transparent;
        border-radius: 9px;
        font-size: 14px;
        line-height: 1.8;
        text-decoration: none;
        transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

        /* فلش کنار لینک */
        .corporate-sidebar-box a::before {
            content: "‹";
            position: absolute;
            right: 7px;
            top: 50%;
            transform: translateY(-50%);
            color: #e0a84c;
            font-size: 18px;
            font-weight: bold;
            transition: transform 0.25s ease;
        }

        /* Hover */
        .corporate-sidebar-box a:hover {
            color: #ffffff;
            background: #222222;
            border-color: #353535;
            transform: translateX(-3px);
        }

            .corporate-sidebar-box a:hover::before {
                transform: translate(-3px, -50%);
            }

        /* آخرین لینک */
        .corporate-sidebar-box a:last-child {
            margin-bottom: 0;
        }


/* =========================
   Article Categories
   ========================= */

.corporate-article-sidebar > div:not(.corporate-sidebar-box) {
    background: #151515;
    border: 1px solid #292929;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}


/* =========================
   Mobile
   ========================= */

@media (max-width: 768px) {

    .corporate-article-sidebar {
        gap: 18px;
    }

    .corporate-sidebar-box {
        padding: 16px;
        border-radius: 12px;
    }

        .corporate-sidebar-box h3 {
            font-size: 17px;
            margin-bottom: 14px;
        }

        .corporate-sidebar-box a {
            padding: 11px 17px 11px 8px;
            font-size: 13px;
        }
}

/* ========================================
   Corporate Article Tag
======================================== */

.corporate-tag-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 70px;
}


/* ========================================
   Header
======================================== */

.corporate-tag-header {
    position: relative;
    margin-bottom: 35px;
    padding: 35px;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 18px;
    overflow: hidden;
}

    .corporate-tag-header::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 5px;
        height: 100%;
        background: #e0a84c;
    }


.corporate-tag-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 13px;
    color: #e0a84c;
    background: rgba(224, 168, 76, 0.08);
    border: 1px solid rgba(224, 168, 76, 0.25);
    border-radius: 30px;
    font-size: 13px;
}


.corporate-tag-header h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.5;
}


.corporate-tag-header p {
    max-width: 800px;
    margin: 0;
    color: #aaa;
    font-size: 15px;
    line-height: 2;
}


/* ========================================
   Articles Grid
======================================== */

.corporate-tag-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* ========================================
   Article Card
======================================== */

.corporate-tag-card {
    overflow: hidden;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 15px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}


    .corporate-tag-card:hover {
        transform: translateY(-5px);
        border-color: #3a3a3a;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
    }


/* ========================================
   Image
======================================== */

.corporate-tag-image {
    display: block;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #202020;
}


    .corporate-tag-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }


.corporate-tag-card:hover
.corporate-tag-image img {
    transform: scale(1.04);
}


/* ========================================
   Content
======================================== */

.corporate-tag-card-content {
    padding: 22px;
}


/* Title */

.corporate-tag-card h2 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.7;
}


    .corporate-tag-card h2 a {
        color: #fff;
        text-decoration: none;
        transition: color .2s ease;
    }


        .corporate-tag-card h2 a:hover {
            color: #e0a84c;
        }


/* Summary */

.corporate-tag-summary {
    display: -webkit-box;
    margin: 0 0 18px;
    color: #999;
    font-size: 14px;
    line-height: 1.9;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ========================================
   Meta
======================================== */

.corporate-tag-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: #777;
    font-size: 12px;
}


    .corporate-tag-meta span {
        white-space: nowrap;
    }


/* ========================================
   Read More
======================================== */

.corporate-tag-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #e0a84c;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}


    .corporate-tag-read-more span {
        transition: transform .2s ease;
    }


    .corporate-tag-read-more:hover span {
        transform: translateX(-5px);
    }


/* ========================================
   Empty
======================================== */

.corporate-tag-empty {
    padding: 55px 20px;
    text-align: center;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 15px;
}


    .corporate-tag-empty h2 {
        margin: 0 0 10px;
        color: #fff;
        font-size: 20px;
    }


    .corporate-tag-empty p {
        margin: 0;
        color: #999;
        font-size: 14px;
    }


/* ========================================
   Tablet
======================================== */

@media (max-width: 992px) {

    .corporate-tag-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* ========================================
   Mobile
======================================== */

@media (max-width: 650px) {

    .corporate-tag-page {
        padding: 25px 15px 50px;
    }


    .corporate-tag-header {
        padding: 25px 20px;
        margin-bottom: 25px;
        border-radius: 14px;
    }


        .corporate-tag-header h1 {
            font-size: 24px;
        }


        .corporate-tag-header p {
            font-size: 13px;
        }


    .corporate-tag-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .corporate-tag-image {
        height: 180px;
    }


    .corporate-tag-card-content {
        padding: 18px;
    }


    .corporate-tag-card h2 {
        font-size: 17px;
    }
}
/* ========================================
   Article Content Tables
======================================== */

.corporate-article-content figure {
    width: 100%;
    margin: 30px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/* Table */

.corporate-article-content table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    background: #151515;
    border: 1px solid #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    color: #ddd;
    font-size: 14px;
    line-height: 1.8;
}


    /* Cells */

    .corporate-article-content table td,
    .corporate-article-content table th {
        padding: 14px 16px;
        border-bottom: 1px solid #292929;
        border-left: 1px solid #292929;
        text-align: right;
        vertical-align: middle;
    }


        /* First column */

        .corporate-article-content table td:first-child,
        .corporate-article-content table th:first-child {
            color: #fff;
            font-weight: 600;
            background: #1b1b1b;
        }


        /* Last column */

        .corporate-article-content table td:last-child,
        .corporate-article-content table th:last-child {
            border-left: none;
        }


    /* Last row */

    .corporate-article-content table tr:last-child td {
        border-bottom: none;
    }


    /* Hover */

    .corporate-article-content table tbody tr {
        transition: background .2s ease;
    }

        .corporate-article-content table tbody tr:hover {
            background: #1d1d1d;
        }


    /* First column accent */

    .corporate-article-content table td:first-child {
        border-right: 3px solid transparent;
    }

    .corporate-article-content table tbody tr:hover td:first-child {
        border-right-color: #e0a84c;
    }


/* ========================================
   Mobile
======================================== */

@media (max-width: 650px) {

    .corporate-article-content figure {
        margin: 25px 0;
        /* اجازه اسکرول افقی جدول */
        overflow-x: auto;
    }

    .corporate-article-content table {
        min-width: 550px;
        font-size: 13px;
    }

        .corporate-article-content table td,
        .corporate-article-content table th {
            padding: 11px 12px;
        }
}
/* ========================================
   Corporate Article Category
======================================== */

.corporate-category-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 70px;
}


/* ========================================
   Category Header
======================================== */

.corporate-category-header {
    position: relative;
    margin-bottom: 35px;
    padding: 35px;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 18px;
    overflow: hidden;
}


    .corporate-category-header::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background: #e0a84c;
    }


    .corporate-category-header h1 {
        margin: 0 0 14px;
        color: #fff;
        font-size: 32px;
        font-weight: 800;
        line-height: 1.5;
    }


    .corporate-category-header p {
        max-width: 850px;
        margin: 0;
        color: #aaa;
        font-size: 15px;
        line-height: 2;
    }


/* ========================================
   Article Grid
======================================== */

.corporate-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* ========================================
   Article Card
======================================== */

.corporate-category-card {
    overflow: hidden;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 15px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}


    .corporate-category-card:hover {
        transform: translateY(-5px);
        border-color: #3a3a3a;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
    }


/* ========================================
   Image
======================================== */

.corporate-category-image {
    display: block;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #202020;
}


    .corporate-category-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }


.corporate-category-card:hover
.corporate-category-image img {
    transform: scale(1.04);
}


/* ========================================
   Content
======================================== */

.corporate-category-content {
    padding: 22px;
}


    .corporate-category-content h2 {
        margin: 0 0 12px;
        font-size: 18px;
        line-height: 1.7;
    }


        .corporate-category-content h2 a {
            color: #fff;
            text-decoration: none;
            transition: color .2s ease;
        }


            .corporate-category-content h2 a:hover {
                color: #e0a84c;
            }


    .corporate-category-content > p {
        display: -webkit-box;
        margin: 0 0 18px;
        color: #999;
        font-size: 14px;
        line-height: 1.9;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }


/* ========================================
   Meta
======================================== */

.corporate-category-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: #777;
    font-size: 12px;
}


    .corporate-category-meta span {
        white-space: nowrap;
    }


/* ========================================
   Responsive
======================================== */

@media (max-width: 992px) {

    .corporate-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 650px) {

    .corporate-category-page {
        padding: 25px 15px 50px;
    }


    .corporate-category-header {
        padding: 25px 20px;
        margin-bottom: 25px;
        border-radius: 14px;
    }


        .corporate-category-header h1 {
            font-size: 24px;
        }


        .corporate-category-header p {
            font-size: 13px;
        }


    .corporate-category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .corporate-category-image {
        height: 180px;
    }


    .corporate-category-content {
        padding: 18px;
    }


        .corporate-category-content h2 {
            font-size: 17px;
        }
}
.corporate-category-description {
    max-width: 850px;
    color: #aaa;
    font-size: 15px;
    line-height: 2;
}

    .corporate-category-description p {
        margin: 0 0 12px;
    }

        .corporate-category-description p:last-child {
            margin-bottom: 0;
        }

    .corporate-category-description a {
        color: #e0a84c;
        text-decoration: none;
        transition: color .2s ease;
    }

        .corporate-category-description a:hover {
            color: #fff;
            text-decoration: underline;
        }

    .corporate-category-description strong {
        color: #fff;
    }

    .corporate-category-description ul,
    .corporate-category-description ol {
        margin: 15px 0;
        padding-right: 25px;
    }

    .corporate-category-description li {
        margin-bottom: 7px;
    }
/* ========================================
   Corporate Blog
======================================== */

.corporate-blog-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 70px;
}


/* ========================================
   Hero
======================================== */

.corporate-blog-hero {
    position: relative;
    margin-bottom: 35px;
    padding: 50px 45px;
    background: linear-gradient( 135deg, #181818, #111 );
    border: 1px solid #292929;
    border-radius: 20px;
    overflow: hidden;
}


    .corporate-blog-hero::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background: #e0a84c;
    }


.corporate-blog-hero-content {
    max-width: 850px;
}


.corporate-blog-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #e0a84c;
    font-size: 13px;
    font-weight: 600;
}


.corporate-blog-hero h1 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.5;
}


.corporate-blog-hero p {
    margin: 0;
    color: #aaa;
    font-size: 15px;
    line-height: 2;
}


/* ========================================
   Layout
======================================== */

.corporate-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: start;
}


/* ========================================
   Section Title
======================================== */

.corporate-blog-section-title {
    margin-bottom: 22px;
}


    .corporate-blog-section-title span {
        color: #e0a84c;
        font-size: 12px;
    }


    .corporate-blog-section-title h2 {
        margin: 5px 0 0;
        color: #fff;
        font-size: 23px;
    }


/* ========================================
   Article Grid
======================================== */

.corporate-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* ========================================
   Article Card
======================================== */

.corporate-blog-card {
    overflow: hidden;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 15px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}


    .corporate-blog-card:hover {
        transform: translateY(-4px);
        border-color: #3a3a3a;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
    }


/* ========================================
   Image
======================================== */

.corporate-blog-card-image {
    display: block;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #202020;
}


    .corporate-blog-card-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }


.corporate-blog-card:hover
.corporate-blog-card-image img {
    transform: scale(1.04);
}


/* ========================================
   Card Body
======================================== */

.corporate-blog-card-body {
    padding: 20px;
}


.corporate-blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    color: #777;
    font-size: 11px;
}


.corporate-blog-card-body h2 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.7;
}


    .corporate-blog-card-body h2 a {
        color: #fff;
        text-decoration: none;
        transition: color .2s ease;
    }


        .corporate-blog-card-body h2 a:hover {
            color: #e0a84c;
        }


.corporate-blog-card-body > p {
    display: -webkit-box;
    margin: 0 0 17px;
    color: #999;
    font-size: 13px;
    line-height: 1.9;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ========================================
   Read More
======================================== */

.corporate-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e0a84c;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}


    .corporate-blog-read-more span {
        transition: transform .2s ease;
    }


    .corporate-blog-read-more:hover span {
        transform: translateX(-4px);
    }


/* ========================================
   Sidebar
======================================== */

.corporate-blog-sidebar {
    position: sticky;
    top: 20px;
}


.corporate-blog-sidebar-box {
    margin-bottom: 20px;
    padding: 20px;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 14px;
}


    .corporate-blog-sidebar-box h3 {
        margin: 0 0 15px;
        padding-bottom: 12px;
        color: #fff;
        font-size: 16px;
        border-bottom: 1px solid #292929;
    }


/* ========================================
   Topics
======================================== */

.corporate-blog-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


    .corporate-blog-topics a {
        display: inline-block;
        padding: 7px 10px;
        color: #aaa;
        background: #1d1d1d;
        border: 1px solid #292929;
        border-radius: 7px;
        font-size: 12px;
        text-decoration: none;
        transition: color .2s ease, border-color .2s ease, background .2s ease;
    }


        .corporate-blog-topics a:hover {
            color: #e0a84c;
            border-color: #e0a84c;
            background: #202020;
        }


/* ========================================
   Tablet
======================================== */

@media (max-width: 900px) {

    .corporate-blog-layout {
        grid-template-columns: 1fr;
    }


    .corporate-blog-sidebar {
        position: static;
    }
}


/* ========================================
   Mobile
======================================== */

@media (max-width: 650px) {

    .corporate-blog-page {
        padding: 25px 15px 50px;
    }


    .corporate-blog-hero {
        padding: 30px 22px;
        margin-bottom: 25px;
        border-radius: 15px;
    }


        .corporate-blog-hero h1 {
            font-size: 25px;
        }


        .corporate-blog-hero p {
            font-size: 13px;
        }


    .corporate-blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .corporate-blog-card-image {
        height: 180px;
    }


    .corporate-blog-card-body {
        padding: 18px;
    }


    .corporate-blog-section-title h2 {
        font-size: 20px;
    }
}