/* =========================================================
   CONSULTEVO PORTFOLIO
   Project Template
   Version 0.10
   ========================================================= */


/* =========================================================
   BRAND
   ========================================================= */

:root {
    --ce-consult-blue: #144A9E;
    --ce-favicon-blue: #1E90FF;
    --ce-evo-blue: #40C4FF;

    --ce-ink: #10213D;
    --ce-text: #44546A;
    --ce-muted: #6F8095;

    --ce-bg: #F7FBFF;
    --ce-soft: #EEF7FF;
    --ce-white: #FFFFFF;

    --ce-border: #DCEAF8;
    --ce-border-strong: #C5DCF3;
}


/* =========================================================
   GENERATEPRESS OVERRIDES
   ========================================================= */

body.single-portfolio_project {
    background: var(--ce-bg);
}

body.single-portfolio_project #page,
body.single-portfolio_project #content,
body.single-portfolio_project .site-content,
body.single-portfolio_project .content-area,
body.single-portfolio_project .site-main {
    display: block;

    width: 100%;
    max-width: none;

    margin: 0;
    padding: 0;
}

body.single-portfolio_project .widget-area {
    display: none;
}


/* =========================================================
   BASE
   ========================================================= */

.ce-project {
    width: 100%;

    margin: 0;
    padding: 0;

    background: var(--ce-bg);

    color: var(--ce-ink);
}

.ce-container {
    width: calc(100% - 64px);
    max-width: 1180px;

    margin: 0 auto;
}

.ce-content-width {
    max-width: 880px;
}


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

.ce-project-hero {
    position: relative;

    overflow: hidden;

    padding: 92px 0 96px;

    background:
        radial-gradient(
            circle at 88% 25%,
            rgba(64, 196, 255, 0.22),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 0%,
            rgba(30, 144, 255, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #FFFFFF 0%,
            #F6FBFF 48%,
            #EAF7FF 100%
        );

    border-bottom: 1px solid var(--ce-border);
}

.ce-project-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: 0.45;

    background-image:
        linear-gradient(
            rgba(20, 74, 158, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(20, 74, 158, 0.03) 1px,
            transparent 1px
        );

    background-size: 48px 48px;
}

.ce-project-hero .ce-container {
    position: relative;
    z-index: 2;
}

.ce-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(410px, 0.88fr);

    gap: 56px;

    align-items: center;
}

.ce-hero-content {
    min-width: 0;
}


/* =========================================================
   CATEGORY PILLS
   ========================================================= */

.ce-project-eyebrow {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 28px;
}

.ce-category {
    display: inline-flex;
    align-items: center;

    padding: 8px 13px;

    border: 1px solid rgba(30, 144, 255, 0.22);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.82);

    color: var(--ce-consult-blue);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    box-shadow:
        0 6px 20px rgba(20, 74, 158, 0.045);
}


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

.ce-project-title {
    max-width: 760px;

    margin: 0;

    color: var(--ce-consult-blue);

    font-size: clamp(48px, 4.7vw, 69px);
    line-height: 1.01;

    font-weight: 720;

    letter-spacing: -0.045em;
}

.ce-project-tagline {
    max-width: 690px;

    margin: 28px 0 0;

    color: var(--ce-text);

    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.6;

    letter-spacing: -0.01em;
}


/* =========================================================
   META
   ========================================================= */

.ce-project-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 40px;
}

.ce-project-meta-item {
    display: flex;
    flex-direction: column;

    gap: 6px;

    min-width: 120px;

    padding: 14px 16px;

    border: 1px solid var(--ce-border);
    border-radius: 11px;

    background: rgba(255, 255, 255, 0.82);

    box-shadow:
        0 8px 24px rgba(20, 74, 158, 0.045);
}

.ce-meta-label {
    color: var(--ce-muted);

    font-size: 9px;
    line-height: 1;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.16em;
}

.ce-meta-value {
    color: var(--ce-ink);

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.ce-project-actions {
    margin-top: 34px;
}

.ce-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 49px;

    padding: 0 23px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

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

.ce-button:hover {
    transform: translateY(-2px);

    text-decoration: none;
}

.ce-button-primary {
    background:
        linear-gradient(
            135deg,
            var(--ce-consult-blue),
            var(--ce-favicon-blue)
        );

    color: #FFFFFF;

    box-shadow:
        0 12px 28px rgba(30, 144, 255, 0.24);
}

.ce-button-primary:hover {
    color: #FFFFFF;

    box-shadow:
        0 16px 34px rgba(30, 144, 255, 0.32);
}


/* =========================================================
   HERO SYSTEM MAP
   ========================================================= */

.ce-hero-map-wrap {
    position: relative;

    min-width: 0;
}

.ce-system-map {
    position: relative;

    padding: 24px;

    border: 1px solid rgba(30, 144, 255, 0.18);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(242, 249, 255, 0.94)
        );

    box-shadow:
        0 24px 70px rgba(20, 74, 158, 0.13);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ce-system-map-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.ce-system-map-kicker {
    color: var(--ce-consult-blue);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.15em;
}

.ce-system-map-live {
    display: inline-flex;
    align-items: center;

    padding: 6px 9px;

    border: 1px solid rgba(30, 144, 255, 0.18);
    border-radius: 999px;

    background: rgba(30, 144, 255, 0.06);

    color: var(--ce-favicon-blue);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.ce-map-layer {
    position: relative;
}

.ce-map-layer-center {
    display: flex;
    flex-direction: column;

    align-items: center;
}

.ce-map-layer-label {
    display: block;

    margin-bottom: 9px;

    color: var(--ce-muted);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.14em;
}

.ce-map-layer-center .ce-map-layer-label {
    text-align: center;
}

.ce-map-node-grid {
    display: grid;

    gap: 8px;
}

.ce-map-sources {
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
}

.ce-map-outputs {
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
}

.ce-map-node {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 45px;

    padding: 9px 12px;

    border: 1px solid var(--ce-border);
    border-radius: 10px;

    background: #FFFFFF;

    color: var(--ce-ink);

    text-align: center;

    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;

    box-shadow:
        0 7px 18px rgba(20, 74, 158, 0.045);
}

.ce-map-node-source::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 7px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--ce-evo-blue);

    box-shadow:
        0 0 0 4px rgba(64, 196, 255, 0.10);
}

.ce-map-node-primary {
    min-width: 145px;

    border-color: rgba(30, 144, 255, 0.28);

    background:
        linear-gradient(
            135deg,
            rgba(20, 74, 158, 0.98),
            rgba(30, 144, 255, 0.96)
        );

    color: #FFFFFF;

    box-shadow:
        0 14px 30px rgba(30, 144, 255, 0.21);
}

.ce-map-node-data {
    min-width: 165px;

    border-color: rgba(64, 196, 255, 0.40);

    background:
        linear-gradient(
            135deg,
            #F0FAFF,
            #E2F6FF
        );

    color: var(--ce-consult-blue);
}

.ce-map-node-output {
    min-height: 52px;

    color: var(--ce-consult-blue);
}


/* =========================================================
   MAP CONNECTORS
   ========================================================= */

.ce-map-connector {
    position: relative;

    display: flex;

    justify-content: center;

    height: 31px;
}

.ce-map-connector::before {
    content: "";

    position: absolute;

    top: 0;

    width: 1px;
    height: 23px;

    background:
        linear-gradient(
            to bottom,
            rgba(30, 144, 255, 0.20),
            rgba(30, 144, 255, 0.80)
        );
}

.ce-map-connector::after {
    content: "";

    position: absolute;

    bottom: 4px;

    width: 6px;
    height: 6px;

    border-right: 2px solid var(--ce-favicon-blue);
    border-bottom: 2px solid var(--ce-favicon-blue);

    transform: rotate(45deg);
}

.ce-map-connector span {
    position: absolute;

    top: 7px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--ce-evo-blue);

    box-shadow:
        0 0 0 4px rgba(64, 196, 255, 0.11);

    animation:
        ce-flow-pulse 2.2s ease-in-out infinite;
}

@keyframes ce-flow-pulse {

    0%,
    100% {
        opacity: 0.55;

        transform: translateY(0);
    }

    50% {
        opacity: 1;

        transform: translateY(9px);
    }
}

.ce-map-footnote {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 20px;
    padding-top: 17px;

    border-top: 1px solid var(--ce-border);

    color: var(--ce-muted);

    font-size: 10px;
    font-weight: 600;
}

.ce-map-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #34C77B;

    box-shadow:
        0 0 0 4px rgba(52, 199, 123, 0.11);
}


/* =========================================================
   CASE STUDY
   ========================================================= */

.ce-case-section {
    padding: 88px 0;

    border-bottom: 1px solid var(--ce-border);

    background: #FFFFFF;
}

.ce-case-overview {
    background: #F8FCFF;
}

.ce-case-challenge {
    background: #FFFFFF;
}

.ce-case-system {
    background:
        linear-gradient(
            180deg,
            #F7FBFF 0%,
            #EEF8FF 100%
        );
}

.ce-case-grid {
    display: grid;

    grid-template-columns:
        170px
        minmax(0, 1fr);

    gap: 50px;

    align-items: start;
}

.ce-case-label {
    display: flex;

    flex-direction: column;

    gap: 7px;

    padding-top: 7px;
}

.ce-case-number {
    color: var(--ce-evo-blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.ce-case-kicker {
    color: var(--ce-consult-blue);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.10em;
}

.ce-case-main {
    max-width: 790px;
}

.ce-case-title {
    margin: 0 0 24px;

    color: var(--ce-consult-blue);

    font-size: clamp(34px, 3.5vw, 50px);
    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -0.035em;
}

.ce-case-copy {
    max-width: 730px;
}

.ce-case-copy p {
    margin: 0 0 20px;

    color: var(--ce-text);

    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   VISUAL GALLERY
   ========================================================= */

.ce-case-visual-row {
    margin-top: 58px;
}

.ce-visual-gallery {
    display: grid;

    gap: 22px;

    width: 100%;
}

.ce-visual-gallery-count-1 {
    grid-template-columns: 1fr;
}

.ce-visual-gallery-count-2 {
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
}

.ce-visual-gallery-count-3 {
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
}

.ce-visual-gallery-count-3
.ce-project-visual:nth-child(1) {
    grid-column: 1 / -1;
}

.ce-visual-gallery-count-3
.ce-project-visual:nth-child(2),
.ce-visual-gallery-count-3
.ce-project-visual:nth-child(3) {
    grid-column: auto;
}


/* =========================================================
   VISUAL FRAME
   ========================================================= */

.ce-project-visual {
    min-width: 0;

    margin: 0;
}

.ce-visual-frame {
    position: relative;

    overflow: hidden;

    width: 100%;

    border: 1px solid rgba(20, 74, 158, 0.14);
    border-radius: 18px;

    background: #F2F6FA;

    box-shadow:
        0 20px 55px rgba(20, 74, 158, 0.11);

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

.ce-project-visual:hover
.ce-visual-frame {
    transform: translateY(-2px);

    border-color: rgba(30, 144, 255, 0.25);

    box-shadow:
        0 26px 65px rgba(20, 74, 158, 0.15);
}


/* =========================================================
   MEDIA STAGE
   ========================================================= */

.ce-visual-canvas {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #F6F9FC,
            #EDF3F8
        );
}

.ce-visual-gallery-count-1
.ce-visual-canvas {
    aspect-ratio: 16 / 9;
}

.ce-visual-gallery-count-2
.ce-visual-canvas {
    aspect-ratio: 4 / 3;
}

.ce-visual-gallery-count-3
.ce-project-visual:nth-child(1)
.ce-visual-canvas {
    aspect-ratio: 16 / 9;
}

.ce-visual-gallery-count-3
.ce-project-visual:nth-child(2)
.ce-visual-canvas,
.ce-visual-gallery-count-3
.ce-project-visual:nth-child(3)
.ce-visual-canvas {
    aspect-ratio: 4 / 3;
}


/* =========================================================
   IMAGE
   ========================================================= */

.ce-visual-image-link {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    padding: 12px;

    text-decoration: none;
}

.ce-visual-image {
    display: block;

    width: auto !important;
    height: auto !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;
    object-position: center center;

    margin: auto;

    transition:
        filter 0.25s ease;
}

.ce-project-visual:hover
.ce-visual-image {
    filter: saturate(1.03);
}


/* =========================================================
   FULL SIZE OVERLAY
   ========================================================= */

.ce-visual-open-overlay {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 5;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 34px;

    padding: 0 12px;

    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;

    background: rgba(16, 33, 61, 0.78);

    color: #FFFFFF;

    font-size: 11px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    opacity: 0;

    transform: translateY(-4px);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    box-shadow:
        0 8px 22px rgba(16, 33, 61, 0.18);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.ce-project-visual:hover
.ce-visual-open-overlay,
.ce-visual-open-overlay:focus-visible {
    opacity: 1;

    transform: translateY(0);
}

.ce-visual-open-overlay:hover {
    background: rgba(20, 74, 158, 0.92);

    color: #FFFFFF;
}


/* =========================================================
   VIDEO
   ========================================================= */

.ce-visual-video-canvas {
    background: #101820;
}

.ce-video-embed {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}

.ce-video-embed iframe {
    display: block;

    width: 100% !important;
    height: 100% !important;

    border: 0;
}

.ce-video-direct {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #101820;
}

.ce-video-fallback {
    width: 100%;
    height: 100%;

    min-height: 280px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 40px 25px;

    color: #FFFFFF;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(30, 144, 255, 0.25),
            transparent 48%
        ),
        #071423;
}

.ce-video-fallback-icon {
    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: var(--ce-evo-blue);

    font-size: 23px;
}

.ce-video-fallback h3 {
    margin: 0 0 8px;

    color: #FFFFFF;
}

.ce-video-fallback p {
    color: #B9C8D8;
}


/* =========================================================
   VISUAL CAPTION
   ========================================================= */

.ce-visual-caption {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 14px;
    padding: 0 4px;

    color: var(--ce-muted);

    font-size: 12px;
    line-height: 1.55;
}

.ce-visual-caption-mark {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    margin-top: 6px;

    border-radius: 50%;

    background: var(--ce-evo-blue);

    box-shadow:
        0 0 0 4px rgba(64, 196, 255, 0.10);
}


/* =========================================================
   04 WHAT WE BUILT
   ========================================================= */

.ce-built-section {
    position: relative;

    padding: 96px 0 105px;

    overflow: hidden;

    border-bottom: 1px solid var(--ce-border);

    background:
        radial-gradient(
            circle at 85% 0%,
            rgba(64, 196, 255, 0.14),
            transparent 28%
        ),
        #FFFFFF;
}

.ce-built-heading-grid {
    display: grid;

    grid-template-columns:
        170px
        minmax(0, 1fr);

    gap: 50px;

    align-items: start;
}

.ce-built-heading {
    max-width: 790px;
}

.ce-built-heading h2 {
    margin: 0;

    max-width: 780px;

    color: var(--ce-consult-blue);

    font-size: clamp(36px, 3.7vw, 52px);
    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -0.04em;
}

.ce-built-heading p {
    max-width: 720px;

    margin: 24px 0 0;

    color: var(--ce-text);

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   IMPLEMENTATION GRID
   ========================================================= */

.ce-built-grid {
    display: grid;

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

    gap: 20px;

    margin-top: 54px;
}


/* =========================================================
   IMPLEMENTATION CARD
   ========================================================= */

.ce-build-card {
    position: relative;

    align-self: start;

    min-width: 0;

    overflow: hidden;

    border: 1px solid var(--ce-border);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #FFFFFF,
            #F9FCFF
        );

    box-shadow:
        0 14px 38px rgba(20, 74, 158, 0.07);

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

.ce-build-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(
            30,
            144,
            255,
            0.27
        );

    box-shadow:
        0 20px 48px rgba(20, 74, 158, 0.11);
}

.ce-build-card.is-open {
    grid-column: 1 / -1;

    transform: none;

    border-color:
        rgba(
            30,
            144,
            255,
            0.32
        );

    box-shadow:
        0 24px 65px rgba(20, 74, 158, 0.13);
}


/* =========================================================
   CARD SHELL
   ========================================================= */

.ce-build-card-shell {
    position: relative;

    padding: 27px 28px 24px;
}

.ce-build-card-shell::before {
    content: "";

    position: absolute;

    top: 0;
    left: 28px;

    width: 54px;
    height: 3px;

    border-radius:
        0
        0
        999px
        999px;

    background:
        linear-gradient(
            90deg,
            var(--ce-favicon-blue),
            var(--ce-evo-blue)
        );
}


/* =========================================================
   CARD TOP LINE
   ========================================================= */

.ce-build-topline {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 23px;
}

.ce-build-category {
    color: var(--ce-favicon-blue);

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.14em;
}


/* =========================================================
   STATUS
   ========================================================= */

.ce-build-status {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    min-height: 27px;

    padding: 0 9px;

    border: 1px solid var(--ce-border);
    border-radius: 999px;

    background: #FFFFFF;

    color: var(--ce-muted);

    font-size: 10px;
    font-weight: 700;
}

.ce-build-status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #9BA9B7;
}

.ce-build-status-live
.ce-build-status-dot {
    background: #34C77B;

    box-shadow:
        0 0 0 4px rgba(52, 199, 123, 0.10);
}

.ce-build-status-ongoing
.ce-build-status-dot {
    background: var(--ce-favicon-blue);

    box-shadow:
        0 0 0 4px rgba(30, 144, 255, 0.10);
}

.ce-build-status-completed
.ce-build-status-dot {
    background: #7C68EE;

    box-shadow:
        0 0 0 4px rgba(124, 104, 238, 0.10);
}

.ce-build-status-prototype
.ce-build-status-dot {
    background: #FFB84D;

    box-shadow:
        0 0 0 4px rgba(255, 184, 77, 0.12);
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.ce-build-title {
    margin: 0;

    color: var(--ce-consult-blue);

    font-size: clamp(24px, 2.2vw, 31px);
    line-height: 1.16;

    font-weight: 700;

    letter-spacing: -0.03em;
}


/* =========================================================
   CARD SUMMARY
   ========================================================= */

.ce-build-summary {
    max-width: 650px;

    margin-top: 17px;
}

.ce-build-summary p {
    margin: 0;

    color: var(--ce-text);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   IMPLEMENTATION TECHNOLOGIES
   ========================================================= */

.ce-build-tech-list {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 21px;
}

.ce-build-tech {
    display: inline-flex;

    align-items: center;

    min-height: 29px;

    padding: 0 9px;

    border: 1px solid rgba(30, 144, 255, 0.14);
    border-radius: 7px;

    background:
        rgba(
            30,
            144,
            255,
            0.045
        );

    color: var(--ce-consult-blue);

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   EXPLORE / CLOSE BUTTON
   STRONG THEME OVERRIDE
   ========================================================= */

.ce-build-footer {
    display: flex;

    justify-content: flex-end;

    margin-top: 24px;
    padding-top: 19px;

    border-top: 1px solid var(--ce-border);
}


/*
 * GeneratePress styles normal <button> elements.
 * These selectors deliberately override those defaults.
 */

body.single-portfolio_project
.ce-build-footer
button.ce-build-toggle,
body.single-portfolio_project
.ce-build-footer
button.ce-build-toggle:hover,
body.single-portfolio_project
.ce-build-footer
button.ce-build-toggle:focus,
body.single-portfolio_project
.ce-build-footer
button.ce-build-toggle:active {
    appearance: none !important;
    -webkit-appearance: none !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 10px !important;

    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    outline: none !important;

    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;

    color: var(--ce-favicon-blue) !important;

    box-shadow: none !important;
    text-shadow: none !important;

    font-family: inherit !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 800 !important;

    text-transform: none !important;
    text-decoration: none !important;
    letter-spacing: normal !important;

    cursor: pointer !important;

    opacity: 1 !important;

    transform: none !important;

    transition:
        color 0.2s ease !important;
}


body.single-portfolio_project
.ce-build-footer
button.ce-build-toggle:hover {
    color: var(--ce-consult-blue) !important;
}


body.single-portfolio_project
.ce-build-footer
button.ce-build-toggle:focus-visible {
    outline:
        2px solid
        rgba(
            30,
            144,
            255,
            0.35
        ) !important;

    outline-offset: 5px !important;
}


.ce-build-toggle-label {
    display: inline-block;

    color: inherit;

    background: transparent;

    line-height: 1;
}


.ce-build-toggle-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex: 0 0 auto;

    border:
        1px solid
        rgba(
            30,
            144,
            255,
            0.20
        );

    border-radius: 50%;

    background:
        rgba(
            30,
            144,
            255,
            0.065
        );

    color: var(--ce-favicon-blue);

    font-size: 14px;
    line-height: 1;
    font-weight: 800;

    box-shadow:
        0 5px 14px
        rgba(
            30,
            144,
            255,
            0.08
        );

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


body.single-portfolio_project
.ce-build-footer
button.ce-build-toggle:hover
.ce-build-toggle-icon {
    border-color:
        rgba(
            30,
            144,
            255,
            0.35
        );

    background:
        rgba(
            30,
            144,
            255,
            0.11
        );

    transform:
        translateY(
            1px
        );
}


body.single-portfolio_project
.ce-build-footer
button.ce-build-toggle[aria-expanded="true"]
.ce-build-toggle-icon {
    border-color: var(--ce-consult-blue);

    background: var(--ce-consult-blue);

    color: #FFFFFF;

    box-shadow:
        0 7px 18px
        rgba(
            20,
            74,
            158,
            0.18
        );
}


/* =========================================================
   EXPANDED IMPLEMENTATION
   ========================================================= */

.ce-build-details[hidden] {
    display: none !important;
}

.ce-build-details {
    border-top: 1px solid var(--ce-border);

    background:
        linear-gradient(
            180deg,
            #F8FCFF,
            #F1F8FF
        );
}

.ce-build-details-inner {
    padding: 31px 28px 32px;
}

.ce-build-long-copy {
    max-width: 850px;
}

.ce-build-long-copy p {
    margin: 0 0 18px;

    color: var(--ce-text);

    font-size: 17px;
    line-height: 1.75;
}

.ce-build-long-copy p:last-child {
    margin-bottom: 0;
}

.ce-build-demo {
    margin-top: 26px;
}


/* =========================================================
   IMPLEMENTATION MEDIA
   ========================================================= */

.ce-build-media {
    margin-top: 34px;
    padding-top: 32px;

    border-top: 1px solid var(--ce-border);
}


/* =========================================================
   OPTIONAL CONTENT
   ========================================================= */

.ce-project-content {
    padding: 80px 0;

    background: #FFFFFF;
}

.ce-project-content p,
.ce-project-content li {
    color: var(--ce-text);

    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   TECHNOLOGY
   ========================================================= */

.ce-project-stack {
    padding: 75px 0 90px;

    background:
        linear-gradient(
            180deg,
            #FFFFFF,
            #F5FAFF
        );

    border-top: 1px solid var(--ce-border);
}

.ce-section-heading {
    margin-bottom: 28px;
}

.ce-section-kicker {
    display: block;

    margin-bottom: 10px;

    color: var(--ce-favicon-blue);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.16em;
}

.ce-section-heading h2 {
    margin: 0;

    color: var(--ce-consult-blue);

    font-size: 36px;

    letter-spacing: -0.03em;
}

.ce-tech-list {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}

.ce-tech {
    display: inline-flex;

    align-items: center;

    min-height: 39px;

    padding: 0 14px;

    border: 1px solid rgba(30, 144, 255, 0.18);
    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            rgba(30, 144, 255, 0.06),
            rgba(64, 196, 255, 0.08)
        );

    color: var(--ce-consult-blue);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .ce-hero-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

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

    .ce-hero-map-wrap {
        max-width: 650px;
    }
}


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

@media (max-width: 768px) {

    .ce-container {
        width: calc(100% - 30px);
    }


    .ce-project-hero {
        padding: 65px 0 70px;
    }

    .ce-hero-layout {
        gap: 42px;
    }

    .ce-project-title {
        font-size: 44px;
    }

    .ce-project-tagline {
        margin-top: 22px;

        font-size: 18px;
    }

    .ce-project-meta {
        display: grid;

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

    .ce-project-meta-item {
        min-width: 0;
    }


    .ce-system-map {
        padding: 18px;

        border-radius: 17px;
    }

    .ce-map-outputs {
        grid-template-columns: 1fr;
    }


    .ce-case-section {
        padding: 60px 0;
    }

    .ce-case-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .ce-case-label {
        flex-direction: row;

        align-items: center;

        padding: 0;
    }

    .ce-case-title {
        font-size: 34px;
    }


    .ce-visual-gallery-count-2,
    .ce-visual-gallery-count-3 {
        grid-template-columns: 1fr;
    }

    .ce-visual-gallery-count-3
    .ce-project-visual:nth-child(1),
    .ce-visual-gallery-count-3
    .ce-project-visual:nth-child(2),
    .ce-visual-gallery-count-3
    .ce-project-visual:nth-child(3) {
        grid-column: 1;
    }

    .ce-visual-gallery-count-1
    .ce-visual-canvas,
    .ce-visual-gallery-count-2
    .ce-visual-canvas,
    .ce-visual-gallery-count-3
    .ce-project-visual:nth-child(1)
    .ce-visual-canvas,
    .ce-visual-gallery-count-3
    .ce-project-visual:nth-child(2)
    .ce-visual-canvas,
    .ce-visual-gallery-count-3
    .ce-project-visual:nth-child(3)
    .ce-visual-canvas {
        aspect-ratio: 4 / 3;
    }

    .ce-case-visual-row {
        margin-top: 38px;
    }

    .ce-visual-frame {
        border-radius: 13px;
    }

    .ce-visual-open-overlay {
        top: 10px;
        right: 10px;

        min-height: 32px;

        opacity: 1;

        transform: none;

        font-size: 10px;
    }


    .ce-built-section {
        padding: 65px 0 72px;
    }

    .ce-built-heading-grid {
        grid-template-columns: 1fr;

        gap: 21px;
    }

    .ce-built-heading h2 {
        font-size: 36px;
    }

    .ce-built-heading p {
        font-size: 16px;
    }

    .ce-built-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 38px;
    }

    .ce-build-card.is-open {
        grid-column: 1;
    }

    .ce-build-card-shell {
        padding: 23px 20px 20px;
    }

    .ce-build-card-shell::before {
        left: 20px;
    }

    .ce-build-topline {
        margin-bottom: 18px;
    }

    .ce-build-title {
        font-size: 26px;
    }

    .ce-build-details-inner {
        padding: 26px 20px 24px;
    }

    .ce-build-long-copy p {
        font-size: 16px;
    }

    .ce-build-footer {
        justify-content: flex-start;
    }

    .ce-build-media {
        margin-top: 28px;
        padding-top: 25px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .ce-map-sources {
        grid-template-columns:
            1fr
            1fr;
    }

    .ce-project-meta {
        grid-template-columns:
            1fr
            1fr;
    }

    .ce-project-title {
        font-size: 40px;
    }

    .ce-build-topline {
        align-items: flex-start;

        flex-direction: column;
    }
}