/* ==========================================================
   CONTENT BLOCK 1
   Signature Corporate Content Section
========================================================== */

.hcg-content-block-1-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #EEF2F5 0%,
            #E7EDF2 100%
        );

    border-top:
        1px solid rgba(15,45,82,.12);

    border-bottom:
        1px solid rgba(15,45,82,.12);
}


/* ==========================================================
   CORPORATE LINES
========================================================== */

.hcg-content-block-1-section::before,
.hcg-content-block-1-section::after {

    content: '';

    position: absolute;

    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(15,45,82,.18),
            transparent
        );
}

.hcg-content-block-1-section::before {

    top: 16px;
}

.hcg-content-block-1-section::after {

    bottom: 16px;
}


/* ==========================================================
   CONTAINER
========================================================== */

.hcg-content-block-1-section
.hcg-container {

    max-width: 1320px;

    position: relative;

    z-index: 2;
}


/* ==========================================================
   CONTENT CARD
========================================================== */

.hcg-content-block-1 {

    width: 100%;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.70),
            rgba(255,255,255,.58)
        );

    border:
        1px solid rgba(15,23,42,.06);

    border-radius: 24px;

    padding: 34px;

    box-shadow:
        0 12px 30px rgba(15,23,42,.05);

    backdrop-filter:
        blur(8px);
}


/* ==========================================================
   ALIGNMENT
========================================================== */

.hcg-content-block-1.hcg-align-left {

    text-align: left;
}

.hcg-content-block-1.hcg-align-center {

    text-align: center;
}


/* ==========================================================
   EYEBROW
========================================================== */

.hcg-content-block-1-eyebrow {

    display: inline-flex;

    align-items: center;

    padding: 8px 16px;

    border:
        1px solid rgba(15,23,42,.08);

    border-radius: 999px;

    background:
        rgba(255,255,255,.82);

    color:
        var(--secondary-text);

    font-size: 13px;
    font-weight: 500;

    margin-bottom: 16px;
}


/* ==========================================================
   HEADING
========================================================== */

.hcg-content-block-1 h2 {

    width: 100%;

    max-width: none;

    margin-bottom: 18px;

    line-height: 1.14;

    letter-spacing: -.02em;

    color: #0F172A;
}


/* ==========================================================
   CONTENT
========================================================== */

.hcg-content-block-1 p {

    margin-bottom: 20px;

    line-height: 1.85;

    color:
        var(--secondary-text);
}

.hcg-content-block-1.hcg-align-left p {

    max-width: 1000px;
}

.hcg-content-block-1.hcg-align-center p {

    max-width: 980px;

    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================
   BUTTON
========================================================== */

.hcg-content-block-1-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 24px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #0F2D52 0%,
            #1B466F 100%
        );

    border:
        1px solid transparent;

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 10px 24px rgba(15,45,82,.14);

    transition: none !important;

    -webkit-tap-highlight-color:
        transparent;
}

.hcg-content-block-1-button:hover,
.hcg-content-block-1-button:focus,
.hcg-content-block-1-button:active {

    color: #ffffff !important;

    text-decoration: none !important;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 768px) {

    .hcg-content-block-1 {

        padding: 24px;
    }

    .hcg-content-block-1 h2,
    .hcg-content-block-1 p {

        max-width: 100%;
    }
}