/*
Theme Name: Astra Child
Template: astra
*/

/* =========================================================
   GLOBAL
========================================================= */

:root {
    --primary: #30258b;
    --primary-hover: #241c70;

    --dark: #111827;
    --text: #202938;
    --muted: #687083;

    --light-bg: #f4f7ff;
    --white: #ffffff;

    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   WORDPRESS ADMIN BAR
========================================================= */

body.admin-bar .site-header {
    /* WordPress handles admin-bar offset automatically */
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    width: 100%;
    height: 30px;
    background: #111111;
    color: #ffffff;
    font-size: 11px;
}

.top-bar .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.top-bar span {
    display: block;
}


/* =========================================================
   HEADER / LOGO AREA
========================================================= */

.site-header {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.logo-area {
    width: 100%;
    height: 68px;
    background: #f4f7ff;
}

.logo-area .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.site-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.site-logo img,
.site-logo img.custom-logo,
.site-logo .custom-logo {
    display: block;
    width: auto !important;
    height: 52px !important;
    max-width: 180px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain;
}


/* =========================================================
   FALLBACK SITE TITLE
========================================================= */

.site-logo .site-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark);
}


/* =========================================================
   SEARCH ROW
========================================================= */

.search-row {
    width: 100%;
    background: #ffffff;
    margin: 0;
    padding: 10px 0 8px;
    border: 0;
}

.search-row .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* =========================================================
   SEARCH BOX
========================================================= */

.search-box {
    width: 320px;
    margin: 0;
    padding: 0;
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    align-self: auto;
}

.search-box form {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #cfd5dc;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.search-box input[type="search"] {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    height: 38px;
    margin: 0;
    padding: 0 13px;
    border: none !important;
    outline: none !important;
    background: #ffffff;
    color: #222222;
    font-size: 13px;
    line-height: 38px;
    box-shadow: none !important;
}

.search-box input[type="search"]::placeholder {
    color: #8b929b;
}

.search-box input[type="search"]:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-box button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: none;
    border-left: 1px solid #d7dce1;
    border-radius: 0;
    background: #111827;
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-box button:hover {
    background: #374151;
}


/* =========================================================
   NAVIGATION AREA
========================================================= */

.navigation-area {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid #dedede;
}

.navigation-area > .container {
    width: min(var(--container), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}


/* =========================================================
   MAIN MENU
========================================================= */

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    margin: 0;
    padding: 0;
}


/* =========================================================
   MENU UL
========================================================= */

.main-menu ul.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 24px;
    flex-wrap: nowrap;
}


/* =========================================================
   MENU ITEMS
========================================================= */

.main-menu ul.menu li {
    display: block;
    width: auto !important;
    flex: 0 0 auto !important;
    margin: 0;
    padding: 0;
    list-style: none;
}


/* =========================================================
   MENU LINKS
========================================================= */

.main-menu ul.menu li a {
    position: relative;
    display: block;
    width: auto !important;
    margin: 0;
    padding: 11px 0;
    color: #171717;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.main-menu ul.menu li a::after {
    display: none !important;
}

.main-menu ul.menu li a:hover {
    color: var(--primary);
}

.main-menu ul.menu li.current-menu-item > a,
.main-menu ul.menu li.current-menu-ancestor > a,
.main-menu ul.menu li.current_page_item > a {
    color: var(--primary);
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    width: 100%;
    background: var(--light-bg);
    padding: 45px 0 90px;
    overflow: hidden;
}

.hero-container {
    position: relative;
    min-height: 540px;
    margin: 0 auto;
}

.hero-image {
    width: 67%;
    margin-left: auto;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 540px;
    margin: 0;
    padding: 0;
    object-fit: cover;
    border-radius: 5px;
}


/* =========================================================
   HERO WHITE CARD
========================================================= */

.hero-card {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 50%;
    min-height: 390px;
    padding: 50px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   HERO TYPOGRAPHY
========================================================= */

.hero-card h1 {
    margin: 0 0 12px;
    color: #101828;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
}

.hero-card p {
    max-width: 430px;
    margin: 0 0 30px;
    color: #303846;
    font-size: 17px;
    line-height: 1.6;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.hero-buttons .btn {
    display: inline-block;
    margin: 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.hero-buttons .btn-primary {
    padding: 12px 20px;
    background: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
    border-radius: 2px;
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-hover);
    color: #ffffff;
}

.hero-buttons .btn-outline {
    padding: 11px 19px;
    background: #ffffff;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 2px;
}

.hero-buttons .btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.vision,
.services {
    width: 100%;
    margin: 0;
    padding: 80px 0;
}

.vision .container,
.services .container {
    display: flex;
    align-items: center;
    gap: 70px;
    width: min(var(--container), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.vision .col,
.services .col {
    width: 50%;
    min-width: 0;
}


/* =========================================================
   VISION IMAGE
========================================================= */

.vision .col img {
    display: block;
    width: 100% !important;
    height: 430px !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover;
    border-radius: 8px;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.vision h2,
.services h2,
.clients h2 {
    margin-top: 0;
    color: #111827;
    font-weight: 700;
}


/* =========================================================
   VISION TEXT
========================================================= */

.vision .col p {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #f7f9fc;
}


/* =========================================================
   CLIENTS / MARKET PARTICIPANTS
========================================================= */

.clients {
    position: relative;
    padding: 80px 0;
    background: #f7f9fc;
    border-top: 1px solid #e8edf3;
    border-bottom: 1px solid #e8edf3;
}

.clients-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
}

.clients-heading {
    max-width: 760px;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.clients-header h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.7px;
}

.section-subtitle {
    max-width: 680px;
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   PARTICIPANT COUNT
========================================================= */

.clients-count {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e4e9f0;
    border-radius: 10px;
}

.clients-count strong {
    color: #111827;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.clients-count span {
    color: #667085;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .7px;
}


/* =========================================================
   CLIENT GRID
========================================================= */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================================
   CLIENT CARD
========================================================= */

.client-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 12px;
    box-sizing: border-box;
    overflow: hidden;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.client-card:hover {
    transform: translateY(-4px);
    border-color: #d6deea;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}


/* =========================================================
   CLIENT LOGO
========================================================= */

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    margin-bottom: 22px;
    background: #f8fafc;
    border: 1px solid #edf1f5;
    border-radius: 9px;
    box-sizing: border-box;
}

.client-logo img {
    display: block;
    width: auto;
    max-width: 78%;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}


/* =========================================================
   CLIENT CONTENT
========================================================= */

.client-content {
    padding-right: 20px;
}

.client-type {
    display: block;
    margin-bottom: 7px;
    color: #2563eb;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    line-height: 1.2;
}

.client-content h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.client-content p {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   CLIENT ARROW
========================================================= */

.client-arrow {
    position: absolute;
    right: 22px;
    bottom: 20px;
    color: #98a2b3;
    font-size: 18px;
    line-height: 1;
    transition:
        color .2s ease,
        transform .2s ease;
}

.client-card:hover .client-arrow {
    color: #2563eb;
    transform: translateX(3px);
}


/* =========================================================
   CLIENT NOTE
========================================================= */

.clients-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 900px;
    margin: 28px auto 0;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 8px;
}

.clients-note-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    background: #eef4ff;
    color: #2563eb;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.clients-note p {
    margin: 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   VENEZUELA OIL CTA
   ========================================================= */

.cta-projects {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
}

.cta-projects-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 310px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, .85fr);

    overflow: hidden;

    background: #111827;
    border-radius: 7px;

    box-shadow: 0 8px 30px rgba(17, 24, 39, .10);
}


/* =========================================================
   CONTENT
   ========================================================= */

.cta-projects-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 48px 52px;
}

.cta-projects-label {
    display: inline-block;
    margin-bottom: 10px;

    color: #8f83ff;

    font-size: 11px;
    line-height: 1.3;
    font-weight: 800;

    letter-spacing: .09em;
    text-transform: uppercase;
}

.cta-projects-content h2 {
    max-width: 650px;

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;

    letter-spacing: -.02em;
}

.cta-projects-content p {
    max-width: 650px;

    margin: 0 0 25px;

    color: #c8cfdd;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.cta-projects-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cta-projects-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 20px;

    border-radius: 4px;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


/* Primary Button */

.cta-projects-button-primary {
    background: #30258b;
    color: #ffffff;
    border: 1px solid #30258b;
}

.cta-projects-button-primary:hover {
    background: #4033a7;
    color: #ffffff;
    border-color: #4033a7;
    transform: translateY(-1px);
}


/* Outline Button */

.cta-projects-button-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .35);
}

.cta-projects-button-outline:hover {
    background: #ffffff;
    color: #111827;
    border-color: #ffffff;
    transform: translateY(-1px);
}


/* =========================================================
   IMAGE
   ========================================================= */

.cta-projects-image {
    min-width: 0;
    min-height: 310px;

    overflow: hidden;
}

.cta-projects-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform .35s ease;
}

.cta-projects-inner:hover
.cta-projects-image img {
    transform: scale(1.02);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .cta-projects {
        padding: 55px 0;
    }

    .cta-projects-inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    }

    .cta-projects-content {
        padding: 40px;
    }

    .cta-projects-content h2 {
        font-size: 30px;
    }

    .cta-projects-content p {
        font-size: 13px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .cta-projects {
        padding: 45px 0;
    }

    .cta-projects-inner {
        width: calc(100% - 20px);

        display: flex;
        flex-direction: column;
    }

    .cta-projects-content {
        padding: 35px 28px;
    }

    .cta-projects-content h2 {
        font-size: 28px;
    }

    .cta-projects-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .cta-projects-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-projects-button {
        width: 100%;
    }

    .cta-projects-image {
        height: 240px;
        min-height: 240px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 450px) {

    .cta-projects-content {
        padding: 30px 22px;
    }

    .cta-projects-content h2 {
        font-size: 25px;
    }

    .cta-projects-image {
        height: 210px;
        min-height: 210px;
    }

}

/* =========================================================
   BLOG
========================================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}


/* =========================================================
   ASTRA HOME OVERRIDES
========================================================= */

.home .site-content,
.home #primary,
.home .content-area {
    margin: 0;
    padding: 0;
}

.home .entry-content {
    margin: 0;
}

.home .site-main {
    margin: 0;
}

.home .container {
    box-sizing: border-box;
}


/* =========================================================
   SINGLE POST PAGE
   Scoped ONLY to the current single.php markup
========================================================= */

.single-post-page {
    width: 100%;
    background: #f4f7ff;
    padding: 50px 0 70px;
}

.single-post-page .single-post-container {
    width: min(1040px, calc(100% - 40px));
    margin: 0 auto;
}

/* Main article */
.single-post-page article.single-post {
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e3e6ed;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(17, 24, 39, 0.06);
}

/* Breadcrumb */
.single-post-page .single-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    padding: 18px 42px;
    border-bottom: 1px solid #edf0f4;
    background: #ffffff;
    color: #7a8290;
    font-size: 13px;
    line-height: 1.5;
}

.single-post-page .single-breadcrumb a {
    color: #30258b;
    text-decoration: none;
    font-weight: 600;
}

.single-post-page .single-breadcrumb a:hover {
    color: #241c70;
}

.single-post-page .single-breadcrumb .separator {
    color: #b8bdc7;
}

/* Article header */
.single-post-page .single-post-header {
    padding: 42px 48px 38px;
    background: #ffffff;
}

.single-post-page .single-post-category {
    display: inline-block;
    margin-bottom: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #eeecfb;
    color: #30258b;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.single-post-page .single-post-title {
    margin: 0;
    padding: 0;
    color: #111827;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.single-post-page .single-post-excerpt {
    max-width: 850px;
    margin: 18px 0 0;
    color: #687083;
    font-size: 18px;
    line-height: 1.65;
}

.single-post-page .single-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    color: #737b89;
    font-size: 13px;
}

.single-post-page .single-post-meta .meta-author {
    color: #202938;
    font-weight: 700;
}

.single-post-page .single-post-meta .meta-divider {
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    background: #c4c8d0;
}

/* Featured image */
.single-post-page .single-post-featured-image {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #edf0f5;
    overflow: hidden;
}

.single-post-page .single-post-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: cover;
}

/* Article content */
.single-post-page .single-post-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 48px 48px 40px;
    color: #202938;
    font-size: 18px;
    line-height: 1.85;
}

.single-post-page .single-post-content > *:first-child {
    margin-top: 0;
}

.single-post-page .single-post-content > *:last-child {
    margin-bottom: 0;
}

.single-post-page .single-post-content p {
    margin: 0 0 24px;
}

.single-post-page .single-post-content h2 {
    margin: 40px 0 17px;
    color: #111827;
    font-size: 29px;
    line-height: 1.25;
    font-weight: 800;
}

.single-post-page .single-post-content h3 {
    margin: 32px 0 14px;
    color: #111827;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 800;
}

.single-post-page .single-post-content h4 {
    margin: 28px 0 12px;
    color: #111827;
    font-size: 20px;
    line-height: 1.3;
}

.single-post-page .single-post-content a {
    color: #30258b;
    text-decoration: none;
    border-bottom: 1px solid rgba(48, 37, 139, .25);
}

.single-post-page .single-post-content a:hover {
    color: #241c70;
}

.single-post-page .single-post-content ul,
.single-post-page .single-post-content ol {
    margin: 0 0 25px;
    padding-left: 28px;
}

.single-post-page .single-post-content li {
    margin-bottom: 8px;
}

.single-post-page .single-post-content blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    border-left: 4px solid #30258b;
    background: #f7f6fd;
    color: #4b5563;
    font-size: 18px;
    font-style: italic;
}

.single-post-page .single-post-content blockquote p {
    margin-bottom: 0;
}

.single-post-page .single-post-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 7px;
}

.single-post-page .single-post-content figure {
    margin: 30px 0;
}

.single-post-page .single-post-content figcaption {
    margin-top: 8px;
    color: #858c99;
    font-size: 13px;
    text-align: center;
}

.single-post-page .single-post-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    font-size: 15px;
}

.single-post-page .single-post-content th,
.single-post-page .single-post-content td {
    padding: 11px 13px;
    border: 1px solid #dfe3e9;
    text-align: left;
}

.single-post-page .single-post-content th {
    background: #f5f6f8;
    color: #111827;
    font-weight: 700;
}

.single-post-page .single-post-content hr {
    margin: 38px 0;
    border: 0;
    border-top: 1px solid #e5e7eb;
}

/* Tags */
.single-post-page .single-post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 48px 34px;
    border-top: 1px solid #edf0f4;
    background: #ffffff;
}

.single-post-page .tags-label {
    margin-right: 4px;
    color: #747c8b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.single-post-page .single-post-tags a {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #dfe2e8;
    border-radius: 4px;
    background: #ffffff;
    color: #606978;
    font-size: 12px;
    line-height: 1.3;
    text-decoration: none;
}

.single-post-page .single-post-tags a:hover {
    border-color: #30258b;
    background: #30258b;
    color: #ffffff;
}


/* =========================================================
   RELATED ARTICLES
========================================================= */

.single-post-page .related-articles {
    margin: 0;
    padding: 42px 48px 50px;
    border-top: 1px solid #e2e6ec;
    background: #f7f8fb;
}

.single-post-page .related-header {
    margin: 0 0 24px;
}

.single-post-page .related-kicker {
    margin: 0 0 6px;
    color: #30258b;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.single-post-page .related-header h2 {
    margin: 0;
    color: #111827;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
}

.single-post-page .related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.single-post-page .related-card {
    min-width: 0;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e0e4ea;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(17, 24, 39, .04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.single-post-page .related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 24, 39, .09);
}

.single-post-page .related-image {
    display: block;
    width: 100%;
    height: 175px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #e9edf3;
}

.single-post-page .related-image img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: transform .25s ease;
}

.single-post-page .related-card:hover .related-image img {
    transform: scale(1.04);
}

.single-post-page .related-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #e9edf3;
    color: #8a91a0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.single-post-page .related-card-content {
    padding: 17px 18px 19px;
}

.single-post-page .related-meta {
    margin: 0 0 8px;
    color: #8a91a0;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.single-post-page .related-card h3 {
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
}

.single-post-page .related-card h3 a {
    color: #111827;
    text-decoration: none;
}

.single-post-page .related-card h3 a:hover {
    color: #30258b;
}

.single-post-page .related-read-more {
    display: inline-block;
    margin-top: 13px;
    color: #30258b;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
    text-decoration: none;
}

.single-post-page .related-read-more:hover {
    color: #241c70;
}


/* =========================================================
   NO POST
========================================================= */

.single-post-page .single-no-post {
    padding: 60px 40px;
    background: #ffffff;
    border: 1px solid #e3e6ed;
    border-radius: 12px;
    text-align: center;
}

.single-post-page .single-no-post h1 {
    margin: 0 0 10px;
    color: #111827;
}

.single-post-page .single-no-post p {
    margin: 0;
    color: #687083;
}


/* =========================================================
   SINGLE POST MOBILE
========================================================= */

@media (max-width: 900px) {

    .single-post-page {
        padding: 35px 0 55px;
    }

    .single-post-page .single-post-container {
        width: calc(100% - 30px);
    }

    .single-post-page .single-post-header {
        padding: 34px 32px 30px;
    }

    .single-post-page .single-breadcrumb {
        padding: 16px 32px;
    }

    .single-post-page .single-post-title {
        font-size: 38px;
    }

    .single-post-page .single-post-content {
        padding: 40px 32px;
    }

    .single-post-page .single-post-tags {
        padding-left: 32px;
        padding-right: 32px;
    }

    .single-post-page .related-articles {
        padding-left: 32px;
        padding-right: 32px;
    }

    .single-post-page .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 700px) {

    .single-post-page {
        padding: 20px 0 40px;
    }

    .single-post-page .single-post-container {
        width: calc(100% - 20px);
    }

    .single-post-page article.single-post {
        border-radius: 8px;
    }

    .single-post-page .single-breadcrumb {
        padding: 14px 20px;
        font-size: 12px;
    }

    .single-post-page .single-post-header {
        padding: 28px 20px 26px;
    }

    .single-post-page .single-post-title {
        font-size: 31px;
        line-height: 1.16;
    }

    .single-post-page .single-post-excerpt {
        font-size: 16px;
        line-height: 1.6;
    }

    .single-post-page .single-post-meta {
        font-size: 12px;
    }

    .single-post-page .single-post-featured-image img {
        max-height: 330px;
    }

    .single-post-page .single-post-content {
        padding: 32px 20px;
        font-size: 17px;
        line-height: 1.8;
    }

    .single-post-page .single-post-content h2 {
        font-size: 25px;
    }

    .single-post-page .single-post-content h3 {
        font-size: 21px;
    }

    .single-post-page .single-post-tags {
        padding: 20px 20px 27px;
    }

    .single-post-page .related-articles {
        padding: 30px 20px 35px;
    }

    .single-post-page .related-header h2 {
        font-size: 24px;
    }

    .single-post-page .related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .single-post-page .related-image {
        height: 190px;
    }
}


@media (max-width: 380px) {

    .single-post-page .single-post-title {
        font-size: 27px;
    }

    .single-post-page .single-post-header,
    .single-post-page .single-post-content,
    .single-post-page .single-post-tags,
    .single-post-page .related-articles {
        padding-left: 16px;
        padding-right: 16px;
    }

    .single-post-page .single-breadcrumb {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;
    margin: 0;
    background: #111827;
    color: #ffffff;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-top: 70px;
    padding-bottom: 60px;
}


/* FOOTER BRAND */

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img,
.footer-logo img.custom-logo,
.footer-logo .custom-logo {
    display: block;
    width: auto !important;
    height: 48px !important;
    max-width: 180px !important;
    margin: 0 !important;
}

.footer-site-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-brand p,
.footer-about p {
    margin: 0;
    color: #c5cad3;
    font-size: 14px;
    line-height: 1.8;
}


/* FOOTER COLUMNS */

.footer-column h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin: 0 0 11px;
    padding: 0;
}

.footer-column a {
    color: #c5cad3;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-container {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    margin: 0;
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.5;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9ca3af;
    font-size: 13px;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}


/* =========================================================
   STRONGER NAVIGATION TYPOGRAPHY
========================================================= */

@media (min-width: 769px) {

    .desktop-navigation .menu > li > a {
        font-family: inherit !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #172033 !important;
        letter-spacing: 0.1px;
        line-height: 1.4 !important;
        text-decoration: none !important;
    }

    .desktop-navigation .menu > li > a:hover {
        color: #1f4f9a !important;
    }
}


/* =========================================================
   MOBILE MENU TYPOGRAPHY
========================================================= */

@media (max-width: 768px) {

    .mobile-navigation .mobile-menu-list > li > a {
        font-family: inherit !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #172033 !important;
        letter-spacing: 0 !important;
        line-height: 1.45 !important;
    }

    .mobile-navigation summary {
        font-family: inherit !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .search-box {
        width: 300px;
    }

    .search-box input[type="search"] {
        font-size: 13px;
    }

    .main-menu ul.menu {
        gap: 18px;
    }

    .main-menu ul.menu li a {
        font-size: 13px !important;
    }

    .hero-card {
        width: 52%;
        padding: 40px;
    }

    .hero-card h1 {
        font-size: 36px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .search-row {
        padding: 10px 0 8px;
    }

    .search-row .container {
        justify-content: flex-end;
    }

    .search-box {
        width: 280px;
        margin-left: auto;
        margin-right: 0;
    }


    /* NAVIGATION */

    .navigation-area {
        padding: 0 0 10px;
    }

    .navigation-area > .container {
        justify-content: center;
    }

    .main-menu {
        width: 100% !important;
    }

    .main-menu ul.menu {
        width: 100% !important;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 18px;
        row-gap: 2px;
    }

    .main-menu ul.menu li {
        width: auto !important;
        flex: 0 0 auto !important;
    }

    .main-menu ul.menu li a {
        font-size: 13px !important;
        padding: 7px 0;
    }


    /* HERO */

    .hero-section {
        padding: 40px 0 70px;
    }

    .hero-container {
        min-height: auto;
    }

    .hero-image {
        width: 100%;
        margin: 0;
    }

    .hero-image img {
        height: 430px;
    }

    .hero-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: calc(100% - 60px);
        min-height: auto;
        margin: -70px auto 0;
        padding: 40px;
        z-index: 2;
    }


    /* SECTIONS */

    .vision .container,
    .services .container {
        flex-direction: column;
        gap: 40px;
    }

    .vision .col,
    .services .col {
        width: 100%;
    }


    /* CLIENTS */

    .clients {
        padding: 65px 0;
    }

    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* CTA */

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }


    /* BLOG */

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* SINGLE POST */

    .single-post-test {
        width: min(1000px, calc(100% - 40px));
        margin-top: 45px;
        margin-bottom: 65px;
    }

    .single-post h1 {
        font-size: 40px;
    }

    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .vision,
    .services {
        padding: 60px 0;
    }

    .vision .container,
    .services .container {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .vision .col,
    .services .col {
        width: 100%;
    }

    .vision .col img {
        width: 100% !important;
        height: 300px !important;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 50px;
        padding-bottom: 45px;
    }

    .footer-brand,
    .footer-about {
        max-width: none;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-bottom-container {
        min-height: auto;
        padding-top: 25px;
        padding-bottom: 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 12px 20px;
    }
}


/* =========================================================
   MOBILE 600px
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }


    /* LOGO */

    .logo-area {
        height: 65px;
    }

    .site-logo img,
    .site-logo img.custom-logo,
    .site-logo .custom-logo {
        height: 48px !important;
        max-width: 160px !important;
    }


    /* SEARCH */

    .search-row {
        padding: 10px 0;
    }

    .search-row .container {
        justify-content: flex-end;
    }

    .search-box {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: 0;
    }

    .search-box form {
        width: 100%;
    }

    .search-box input[type="search"] {
        flex: 1 1 auto;
        width: auto;
        font-size: 13px;
    }


    /* MENU */

    .navigation-area {
        padding: 0 0 11px;
    }

    .navigation-area > .container {
        width: calc(100% - 30px);
    }

    .main-menu {
        width: 100% !important;
    }

    .main-menu ul.menu {
        width: 100% !important;
        max-width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 14px;
        row-gap: 3px;
    }

    .main-menu ul.menu li {
        width: auto !important;
        flex: 0 0 auto !important;
    }

    .main-menu ul.menu li a {
        font-size: 12px !important;
        padding: 6px 0;
    }


    /* HERO */

    .hero-section {
        padding: 30px 0 60px;
    }

    .hero-image img {
        height: 300px;
        border-radius: 5px;
    }

    .hero-card {
        width: calc(100% - 30px);
        margin-top: -45px;
        padding: 30px 25px;
        border-radius: 7px;
    }

    .hero-card h1 {
        font-size: 30px;
    }

    .hero-card p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }


    /* SECTIONS */

    .vision,
    .services {
        padding: 55px 0;
    }


    /* CLIENTS */

    .clients {
        padding: 55px 0 65px;
    }

    .clients h2 {
        font-size: 26px;
    }

    .clients-header {
        display: block;
        margin-bottom: 28px;
    }

    .clients-heading {
        max-width: none;
    }

    .clients-header h2 {
        font-size: 29px;
        line-height: 1.18;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.65;
    }

    .clients-count {
        display: inline-flex;
        margin-top: 20px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .client-card {
        min-height: 0;
        padding: 18px;
    }

    .client-logo {
        height: 90px;
        margin-bottom: 18px;
    }

    .client-logo img {
        max-height: 58px;
    }

    .client-content h3 {
        font-size: 18px;
    }

    .client-content p {
        font-size: 13px;
    }

    .clients-note {
        margin-top: 20px;
        padding: 12px;
    }


    /* CTA */

    .cta {
        margin-bottom: 50px;
        padding: 35px 25px;
    }


    /* BLOG */

    .blog-grid {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       SINGLE POST MOBILE
    ===================================================== */

    .single-post-test {
        width: calc(100% - 30px);
        margin: 30px auto 50px;
    }

    .single-post h1 {
        font-size: 32px;
        line-height: 1.18;
        letter-spacing: -0.2px;
        margin-bottom: 13px;
    }

    .post-meta {
        margin-bottom: 24px;
        font-size: 12px;
    }

    .post-featured-image {
        margin-bottom: 28px;
    }

    .post-featured-image img {
        border-radius: 6px;
    }

    .post-content {
        font-size: 17px;
        line-height: 1.8;
    }

    .post-content p {
        margin-bottom: 20px;
    }

    .post-content h2 {
        font-size: 26px;
        margin-top: 32px;
    }

    .post-content h3 {
        font-size: 22px;
        margin-top: 28px;
    }

    .post-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }


    /* RELATED ARTICLES */

    .related-articles {
        margin-top: 45px;
        padding-top: 30px;
    }

    .related-articles h2 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .related-card {
        width: 100%;
    }

    .related-content {
        padding: 15px;
    }

    .related-content h3 {
        font-size: 17px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .clients {
        padding: 42px 0;
    }

    .clients-header h2 {
        font-size: 26px;
    }

    .client-card {
        padding: 15px;
    }

    .single-post-test {
        width: calc(100% - 24px);
    }

    .single-post h1 {
        font-size: 29px;
    }

    .post-content {
        font-size: 16px;
    }
}
/* =========================================================
   CUSTOM WORDPRESS PAGE TEMPLATE
========================================================= */

.page-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.standard-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f4f7ff;
}

.page-container {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    padding: 55px 0 80px;
}

/* Page header */

.page-header {
    padding: 45px 50px 40px;
    background: #ffffff;
    border: 1px solid #e3e6ed;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
}

.page-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #eeecfb;
    color: #30258b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.page-title {
    margin: 0;
    color: #111827;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.02em;
}

.page-excerpt {
    max-width: 820px;
    margin-top: 18px;
    color: #687083;
    font-size: 18px;
    line-height: 1.65;
}

/* Featured image */

.page-featured-image {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #e9edf3;
}

.page-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
}

/* Content */

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 50px 55px;
    background: #ffffff;
    border: 1px solid #e3e6ed;
    border-top: 0;
    border-radius: 0 0 12px 12px;
    color: #202938;
    font-size: 17px;
    line-height: 1.85;
}

.page-content > *:first-child {
    margin-top: 0;
}

.page-content > *:last-child {
    margin-bottom: 0;
}

.page-content p {
    margin: 0 0 24px;
}

.page-content h2 {
    margin: 40px 0 18px;
    color: #111827;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
}

.page-content h3 {
    margin: 32px 0 15px;
    color: #111827;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 800;
}

.page-content h4 {
    margin: 26px 0 12px;
    color: #111827;
    font-size: 20px;
    font-weight: 700;
}

.page-content a {
    color: #30258b;
}

.page-content a:hover {
    color: #241c70;
}

.page-content ul,
.page-content ol {
    margin: 0 0 25px;
    padding-left: 28px;
}

.page-content li {
    margin-bottom: 8px;
}

.page-content img {
    max-width: 100%;
    height: auto;
}

.page-content blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    border-left: 4px solid #30258b;
    background: #f7f6fd;
    color: #4b5563;
}

.page-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.page-content th,
.page-content td {
    padding: 12px 14px;
    border: 1px solid #e0e4ea;
    text-align: left;
}

.page-content th {
    background: #f4f5f7;
    color: #111827;
    font-weight: 700;
}

.page-links {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.page-links-title {
    margin-right: 8px;
    font-weight: 700;
}


/* =========================================================
   PAGE MOBILE
========================================================= */

@media (max-width: 900px) {

    .page-container {
        width: calc(100% - 30px);
        padding: 35px 0 55px;
    }

    .page-header {
        padding: 35px 32px;
    }

    .page-title {
        font-size: 38px;
    }

    .page-content {
        padding: 40px 32px;
    }
}

@media (max-width: 700px) {

    .page-container {
        width: calc(100% - 20px);
        padding: 20px 0 40px;
    }

    .page-header {
        padding: 28px 20px;
        border-radius: 8px 8px 0 0;
    }

    .page-title {
        font-size: 31px;
    }

    .page-excerpt {
        font-size: 16px;
    }

    .page-content {
        padding: 32px 20px 38px;
        font-size: 16px;
        line-height: 1.8;
    }

    .page-content h2 {
        font-size: 26px;
    }

    .page-content h3 {
        font-size: 21px;
    }
}

@media (max-width: 380px) {

    .page-container {
        width: calc(100% - 12px);
    }

    .page-header,
    .page-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-title {
        font-size: 27px;
    }
}
/* =========================================================
   CATEGORY ARCHIVE
   Scoped only to category.php
========================================================= */

.category-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.category-page {
    width: 100%;
    background: #f4f7ff;
    padding: 55px 0 80px;
}

.category-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   CATEGORY HEADER
========================================================= */

.category-header {
    margin-bottom: 35px;
    padding: 42px 45px;
    background: #ffffff;
    border: 1px solid #e3e6ed;
    border-radius: 12px;
}

.category-kicker {
    display: inline-block;
    margin-bottom: 13px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #eeecfb;
    color: #30258b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.category-title {
    margin: 0;
    color: #111827;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.02em;
}

.category-description {
    max-width: 800px;
    margin-top: 15px;
    color: #687083;
    font-size: 17px;
    line-height: 1.7;
}

.category-description p {
    margin: 0;
}

.category-meta {
    margin-top: 18px;
    color: #858c99;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   ARTICLE GRID
========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================================
   ARTICLE CARD
========================================================= */

.category-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(17, 24, 39, .04);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: #d4d8e1;
    box-shadow: 0 10px 25px rgba(17, 24, 39, .09);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.category-card-image {
    display: block;
    width: 100%;
    height: 205px;
    overflow: hidden;
    background: #e9edf3;
}

.category-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.04);
}

.category-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #eef0f5 0%,
        #e1e5ec 100%
    );
    color: #858c99;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.category-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 21px 22px;
}

.category-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
    color: #8a91a0;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.category-card-category {
    color: #30258b;
}

.category-card-separator {
    color: #c0c4cc;
}

.category-card-date {
    color: #8a91a0;
}

.category-card-title {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}

.category-card-title a {
    color: #111827;
    text-decoration: none;
}

.category-card-title a:hover {
    color: #30258b;
}

.category-card-excerpt {
    margin-top: 12px;
    color: #687083;
    font-size: 14px;
    line-height: 1.65;
}

.category-card-read-more {
    display: inline-block;
    margin-top: auto;
    padding-top: 17px;
    color: #30258b;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
    text-decoration: none;
}

.category-card-read-more:hover {
    color: #241c70;
}


/* =========================================================
   PAGINATION
========================================================= */

.category-pagination {
    margin-top: 42px;
    text-align: center;
}

.category-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-pagination li {
    margin: 0;
    padding: 0;
}

.category-pagination a,
.category-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #dfe3e9;
    border-radius: 5px;
    background: #ffffff;
    color: #4f5867;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.category-pagination a:hover {
    border-color: #30258b;
    background: #30258b;
    color: #ffffff;
}

.category-pagination .current {
    border-color: #30258b;
    background: #30258b;
    color: #ffffff;
}


/* =========================================================
   EMPTY CATEGORY
========================================================= */

.category-empty {
    padding: 65px 40px;
    background: #ffffff;
    border: 1px solid #e3e6ed;
    border-radius: 12px;
    text-align: center;
}

.category-empty h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 27px;
}

.category-empty p {
    margin: 0;
    color: #687083;
}


/* =========================================================
   CATEGORY RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-title {
        font-size: 38px;
    }
}


@media (max-width: 700px) {

    .category-page {
        padding: 30px 0 55px;
    }

    .category-container {
        width: calc(100% - 20px);
    }

    .category-header {
        padding: 30px 22px;
        margin-bottom: 22px;
    }

    .category-title {
        font-size: 31px;
    }

    .category-description {
        font-size: 16px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-card-image {
        height: 200px;
    }

    .category-card-content {
        padding: 18px 19px 20px;
    }

    .category-card-title {
        font-size: 19px;
    }
}


@media (max-width: 380px) {

    .category-container {
        width: calc(100% - 12px);
    }

    .category-header {
        padding-left: 17px;
        padding-right: 17px;
    }

    .category-title {
        font-size: 27px;
    }
}
/* =========================================================
   ARCHIVE PAGE
   Scoped only to archive.php
========================================================= */

.archive-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.archive-page {
    width: 100%;
    background: #f4f7ff;
    padding: 55px 0 80px;
}

.archive-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   ARCHIVE HEADER
========================================================= */

.archive-header {
    margin-bottom: 35px;
    padding: 42px 45px;
    background: #ffffff;
    border: 1px solid #e3e6ed;
    border-radius: 12px;
}

.archive-kicker {
    display: inline-block;
    margin-bottom: 13px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #eeecfb;
    color: #30258b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.archive-title {
    margin: 0;
    color: #111827;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.02em;
}

.archive-description {
    max-width: 800px;
    margin-top: 15px;
    color: #687083;
    font-size: 17px;
    line-height: 1.7;
}

.archive-description p {
    margin: 0;
}

.archive-meta {
    margin-top: 18px;
    color: #858c99;
    font-size: 12px;
    font-weight: 700;
}

/* =========================================================
   ARTICLE GRID
========================================================= */

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* =========================================================
   ARTICLE CARD
========================================================= */

.archive-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(17, 24, 39, .04);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.archive-card:hover {
    transform: translateY(-4px);
    border-color: #d4d8e1;
    box-shadow: 0 10px 25px rgba(17, 24, 39, .09);
}

/* =========================================================
   CARD IMAGE
========================================================= */

.archive-card-image {
    display: block;
    width: 100%;
    height: 205px;
    overflow: hidden;
    background: #e9edf3;
}

.archive-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.archive-card:hover .archive-card-image img {
    transform: scale(1.04);
}

.archive-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #eef0f5 0%,
        #e1e5ec 100%
    );
    color: #858c99;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.archive-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 21px 22px;
}

.archive-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
    color: #8a91a0;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.archive-card-category {
    color: #30258b;
}

.archive-card-separator {
    color: #c0c4cc;
}

.archive-card-date {
    color: #8a91a0;
}

.archive-card-title {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}

.archive-card-title a {
    color: #111827;
    text-decoration: none;
}

.archive-card-title a:hover {
    color: #30258b;
}

.archive-card-excerpt {
    margin-top: 12px;
    color: #687083;
    font-size: 14px;
    line-height: 1.65;
}

.archive-card-excerpt p {
    margin: 0;
}

.archive-card-read-more {
    display: inline-block;
    margin-top: auto;
    padding-top: 17px;
    color: #30258b;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
    text-decoration: none;
}

.archive-card-read-more:hover {
    color: #241c70;
}

/* =========================================================
   PAGINATION
========================================================= */

.archive-pagination {
    margin-top: 42px;
    text-align: center;
}

.archive-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.archive-pagination li {
    margin: 0;
    padding: 0;
}

.archive-pagination a,
.archive-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #dfe3e9;
    border-radius: 5px;
    background: #ffffff;
    color: #4f5867;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.archive-pagination a:hover {
    border-color: #30258b;
    background: #30258b;
    color: #ffffff;
}

.archive-pagination .current {
    border-color: #30258b;
    background: #30258b;
    color: #ffffff;
}

/* =========================================================
   EMPTY ARCHIVE
========================================================= */

.archive-empty {
    padding: 65px 40px;
    background: #ffffff;
    border: 1px solid #e3e6ed;
    border-radius: 12px;
    text-align: center;
}

.archive-empty h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 27px;
}

.archive-empty p {
    margin: 0;
    color: #687083;
}

/* =========================================================
   ARCHIVE RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .archive-title {
        font-size: 38px;
    }
}

@media (max-width: 700px) {

    .archive-page {
        padding: 30px 0 55px;
    }

    .archive-container {
        width: calc(100% - 20px);
    }

    .archive-header {
        padding: 30px 22px;
        margin-bottom: 22px;
    }

    .archive-title {
        font-size: 31px;
    }

    .archive-description {
        font-size: 16px;
    }

    .archive-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .archive-card-image {
        height: 200px;
    }

    .archive-card-content {
        padding: 18px 19px 20px;
    }

    .archive-card-title {
        font-size: 19px;
    }
}

@media (max-width: 380px) {

    .archive-container {
        width: calc(100% - 12px);
    }

    .archive-header {
        padding-left: 17px;
        padding-right: 17px;
    }

    .archive-title {
        font-size: 27px;
    }
}
/* =========================================================
   CUSTOM SIDEBAR
   Scoped only to sidebar.php
========================================================= */

.custom-sidebar {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* =========================================================
   SIDEBAR WIDGET
========================================================= */

.custom-sidebar .sidebar-widget {
    margin: 0 0 24px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 10px;
}

.custom-sidebar .sidebar-widget:last-child {
    margin-bottom: 0;
}

/* =========================================================
   WIDGET HEADERS
========================================================= */

.custom-sidebar .sidebar-widget-kicker {
    margin-bottom: 8px;
    color: #30258b;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.custom-sidebar .sidebar-widget-title {
    margin: 0 0 18px;
    padding: 0;
    color: #111827;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
}

/* =========================================================
   SEARCH
========================================================= */

.custom-sidebar .sidebar-search-form {
    display: flex;
    width: 100%;
    margin: 0;
}

.custom-sidebar .sidebar-search-form input {
    flex: 1;
    min-width: 0;
    height: 42px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid #dfe3e9;
    border-right: 0;
    border-radius: 5px 0 0 5px;
    outline: none;
    background: #ffffff;
    color: #202938;
    font-size: 13px;
    box-shadow: none;
}

.custom-sidebar .sidebar-search-form input:focus {
    border-color: #30258b;
}

.custom-sidebar .sidebar-search-form button {
    flex: 0 0 auto;
    height: 42px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid #30258b;
    border-radius: 0 5px 5px 0;
    background: #30258b;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
}

.custom-sidebar .sidebar-search-form button:hover {
    background: #241c70;
    border-color: #241c70;
}

/* =========================================================
   LATEST ARTICLES
========================================================= */

.custom-sidebar .sidebar-latest-list {
    margin: 0;
    padding: 0;
}

.custom-sidebar .sidebar-latest-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px solid #edf0f3;
}

.custom-sidebar .sidebar-latest-item:first-child {
    padding-top: 0;
}

.custom-sidebar .sidebar-latest-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.custom-sidebar .sidebar-latest-image {
    display: block;
    flex: 0 0 78px;
    width: 78px;
    height: 62px;
    overflow: hidden;
    border-radius: 5px;
    background: #e9edf3;
}

.custom-sidebar .sidebar-latest-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-sidebar .sidebar-latest-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #eef0f5 0%,
        #e1e5ec 100%
    );
    color: #858c99;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.custom-sidebar .sidebar-latest-content {
    min-width: 0;
    flex: 1;
}

.custom-sidebar .sidebar-latest-date {
    margin-bottom: 5px;
    color: #8a91a0;
    font-size: 9px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.custom-sidebar .sidebar-latest-title {
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 750;
}

.custom-sidebar .sidebar-latest-title a {
    color: #202938;
    text-decoration: none;
}

.custom-sidebar .sidebar-latest-title a:hover {
    color: #30258b;
}

/* =========================================================
   CATEGORIES
========================================================= */

.custom-sidebar .sidebar-category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom-sidebar .sidebar-category-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #edf0f3;
}

.custom-sidebar .sidebar-category-list li:last-child {
    border-bottom: 0;
}

.custom-sidebar .sidebar-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    color: #3f4755;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 650;
    text-decoration: none;
}

.custom-sidebar .sidebar-category-list li:first-child a {
    padding-top: 0;
}

.custom-sidebar .sidebar-category-list li:last-child a {
    padding-bottom: 0;
}

.custom-sidebar .sidebar-category-list a:hover {
    color: #30258b;
}

.custom-sidebar .sidebar-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 22px;
    padding: 0 6px;
    border-radius: 4px;
    background: #f2f1fa;
    color: #30258b;
    font-size: 10px;
    font-weight: 800;
}

/* =========================================================
   CTA
========================================================= */

.custom-sidebar .sidebar-cta-widget {
    padding: 26px;
    background: #30258b;
    border-color: #30258b;
}

.custom-sidebar .sidebar-cta-kicker {
    margin-bottom: 9px;
    color: #c9c5f0;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.custom-sidebar .sidebar-cta-title {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
}

.custom-sidebar .sidebar-cta-text {
    margin: 13px 0 20px;
    color: #e3e1f6;
    font-size: 13px;
    line-height: 1.7;
}

.custom-sidebar .sidebar-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 5px;
    background: #ffffff;
    color: #30258b;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
}

.custom-sidebar .sidebar-cta-button:hover {
    background: #f1f0f8;
    color: #241c70;
}

/* =========================================================
   EMPTY STATE
========================================================= */

.custom-sidebar .sidebar-empty {
    margin: 0;
    color: #687083;
    font-size: 13px;
    line-height: 1.6;
}

/* =========================================================
   SIDEBAR RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .custom-sidebar {
        margin-top: 35px;
    }

    .custom-sidebar .sidebar-widget {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {

    .custom-sidebar .sidebar-widget {
        padding: 20px;
    }

    .custom-sidebar .sidebar-cta-widget {
        padding: 22px;
    }
}
/* =========================================================
   NEWS & ARTICLES PAGE
   ========================================================= */

.news-page {
    width: 100%;
    padding: 70px 0 90px;
    background: #f4f7ff;
}

.news-page-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   PAGE HEADER
   ========================================================= */

.news-page-header {
    max-width: 820px;
    margin: 0 auto 65px;
    text-align: center;
}

.news-page-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #30258b;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.news-page-title {
    margin: 0;
    color: #111827;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.025em;
}

.news-page-description {
    max-width: 720px;
    margin: 17px auto 0;
    color: #687083;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   CATEGORY SECTION
   ========================================================= */

.news-category-section {
    margin-bottom: 65px;
}

.news-category-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 22px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dfe3ea;
}

.news-category-kicker {
    display: block;
    margin-bottom: 6px;
    color: #8a91a0;
    font-size: 9px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.news-category-title {
    margin: 0;
    color: #111827;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
}

.news-category-view {
    flex: 0 0 auto;
    color: #30258b;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
    text-decoration: none;
}

.news-category-view:hover {
    color: #241c70;
}

.news-category-description {
    max-width: 760px;
    margin: -5px 0 22px;
    color: #687083;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   ARTICLE GRID
   ========================================================= */

.news-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* =========================================================
   ARTICLE CARD
   ========================================================= */

.news-article-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(17, 24, 39, .035);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.news-article-card:hover {
    transform: translateY(-4px);
    border-color: #d4d8e1;
    box-shadow: 0 10px 25px rgba(17, 24, 39, .08);
}


/* =========================================================
   THUMBNAIL
   ========================================================= */

.news-article-image {
    display: block;
    flex: 0 0 135px;
    width: 135px;
    height: 135px;
    overflow: hidden;
    background: #e9edf3;
}

.news-article-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.news-article-card:hover
.news-article-image img {
    transform: scale(1.05);
}

.news-article-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #e7ebf2;
    color: #858c99;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}


/* =========================================================
   ARTICLE CONTENT
   ========================================================= */

.news-article-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding: 15px 16px;
}

.news-article-meta {
    margin-bottom: 7px;
    color: #8a91a0;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.news-article-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.news-article-title a {
    display: -webkit-box;
    overflow: hidden;
    color: #111827;
    text-decoration: none;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-article-title a:hover {
    color: #30258b;
}

.news-article-excerpt {
    margin-top: 9px;
    color: #687083;
    font-size: 12px;
    line-height: 1.55;
}

.news-article-read {
    display: inline-block;
    margin-top: auto;
    padding-top: 11px;
    color: #30258b;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
    text-decoration: none;
}

.news-article-read:hover {
    color: #241c70;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.news-page-empty {
    padding: 50px 30px;
    background: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    text-align: center;
}

.news-page-empty h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 25px;
}

.news-page-empty p {
    margin: 0;
    color: #687083;
    font-size: 14px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .news-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .news-page {
        padding: 50px 0 65px;
    }

    .news-page-container {
        width: calc(100% - 20px);
    }

    .news-page-header {
        margin-bottom: 45px;
    }

    .news-page-title {
        font-size: 34px;
    }

    .news-page-description {
        font-size: 14px;
    }

    .news-category-section {
        margin-bottom: 50px;
    }

    .news-category-header {
        align-items: flex-start;
    }

    .news-category-title {
        font-size: 24px;
    }

    .news-category-view {
        margin-top: 18px;
    }

    .news-articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .news-page-title {
        font-size: 29px;
    }

    .news-category-title {
        font-size: 22px;
    }

    .news-article-image {
        flex-basis: 110px;
        width: 110px;
        height: 110px;
    }

    .news-article-content {
        padding: 13px 14px;
    }

}
