/* ==========================================================
   CONTENT BLOCK 1
========================================================== */

.hcg-content-block-1-section {

    position: relative;

    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}


/* ==========================================================
   CONTAINER
========================================================== */

.hcg-content-block-1-section
.hcg-container {

    width:
        min(
            1100px,
            92%
        );

    margin: 0 auto;
}


/* ==========================================================
   CONTENT
========================================================== */

.hcg-content-block-1 {

    max-width: 920px;
}

.hcg-content-block-1.hcg-align-center {

    text-align: center;

    margin: 0 auto;
}

.hcg-content-block-1.hcg-align-left {

    text-align: left;
}


/* ==========================================================
   HEADING
========================================================== */

.hcg-content-block-1 h2 {

    font-size:
        clamp(
            38px,
            4vw,
            68px
        );

    line-height: 1.08;

    font-weight: 800;

    color: #0f172a;

    margin:
        0 0 22px;
}


/* ==========================================================
   TEXT
========================================================== */

.hcg-content-block-1 p {

    font-size: 20px;

    line-height: 1.9;

    color: #64748b;

    margin: 0;
}


/* ==========================================================
   BUTTON
========================================================== */

.hcg-content-block-1-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 58px;

    padding:
        0 34px;

    margin-top: 34px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #f97316,
            #fb923c
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 17px;
    font-weight: 700;

    transition:
        transform .25s ease;
}

.hcg-content-block-1-button:hover {

    transform:
        translateY(-2px);
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:768px) {

    .hcg-content-block-1 h2 {

        font-size: 42px;
    }

    .hcg-content-block-1 p {

        font-size: 18px;
    }
}