/* =========================================================
   PUBLISHING GUIDE
========================================================= */

.publishing-guide {
    padding: 100px 0;
    background: #f7f9fb;
}

.publishing-guide .container {
    width: min(1180px, 92%);
    margin: auto;
}


/* ================= HEADING ================= */

.guide-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.guide-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: #25869d;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.guide-heading h2 {
    margin-bottom: 20px;

    color: #19274f;

    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
}

.guide-heading h2 span {
    color: #e2b654;
}

.guide-heading p {
    color: #667085;

    font-size: 17px;
    line-height: 1.8;
}


/* ================= STEPS ================= */

.guide-steps {
    max-width: 900px;
    margin: auto;

    position: relative;
}

.guide-steps::before {
    content: "";

    position: absolute;

    left: 29px;
    top: 30px;
    bottom: 30px;

    width: 1px;

    background: #d9e1e6;
}


.guide-step {
    position: relative;

    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 30px;

    margin-bottom: 45px;
}


.guide-step:last-child {
    margin-bottom: 0;
}


/* ================= NUMBER ================= */

.step-number {
    position: relative;
    z-index: 2;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #e2b654;

    border-radius: 50%;

    background: #ffffff;

    color: #19274f;

    font-size: 15px;
    font-weight: 700;
}


/* ================= CONTENT ================= */

.step-content {
    padding-top: 4px;
}

.step-label {
    display: block;

    margin-bottom: 7px;

    color: #25869d;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.step-content h3 {
    margin-bottom: 10px;

    color: #19274f;

    font-size: 24px;
}

.step-content p {
    max-width: 680px;

    color: #667085;

    font-size: 15px;

    line-height: 1.8;
}


/* ================= CTA ================= */

.guide-cta {
    margin-top: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 35px 40px;

    background: #19274f;

    border-radius: 12px;
}

.guide-cta-content span {
    display: block;

    margin-bottom: 7px;

    color: #e2b654;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.guide-cta-content h3 {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 25px;
}

.guide-cta-content p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;
}


.guide-cta-button a {
    display: inline-block;

    padding: 14px 24px;

    border-radius: 5px;

    background: #e2b654;

    color: #19274f;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition: 0.3s ease;
}

.guide-cta-button a:hover {
    transform: translateY(-3px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 700px) {

    .publishing-guide {
        padding: 70px 0;
    }

    .guide-heading {
        margin-bottom: 50px;
    }

    .guide-heading p {
        font-size: 15px;
    }

    .guide-steps::before {
        left: 24px;
    }

    .guide-step {
        grid-template-columns: 50px 1fr;

        gap: 20px;

        margin-bottom: 35px;
    }

    .step-number {
        width: 50px;
        height: 50px;

        font-size: 13px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 14px;
    }

    .guide-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 25px;
    }

    .guide-cta-button {
        width: 100%;
    }

    .guide-cta-button a {
        width: 100%;

        text-align: center;
    }

}