.fw-500 {
    font-weight: 500;
}

/* ======== */

.farmplaninmp-dashboard .title {
    margin: 0 0 1rem;
}

.farmplaninmp-dashboard .title__pre-heading,
.farmplaninmp-dashboard .title__heading {
    display: block;
}

.farmplaninmp-dashboard .title__pre-heading {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 1rem;
}

.farmplaninmp-dashboard .title__heading {
    font-size: 42px;
    font-weight: 800;
}

.farmplaninmp-dashboard p {
    font-weight: 300;
    font-size: 26px;
    line-height: 1.75;
}

.farmplaninmp-dashboard .btn {
    text-transform: uppercase;
    padding: 12px 24px;
    font-size: 24px;
    font-weight: 700;
}

/* ======== */
.farmplaninmp-dashboard__section {
    padding-bottom: 36px;
}

.farmplaninmp-dashboard__section--steps {
    border-top: 12px solid rgba(255,255,255,0.2);
    padding-top: 36px;
}

@media (min-width: 1200px) {
    .farmplaninmp-dashboard__section--steps {
        width: calc(50% - 3rem);
    }
}

/* ======== */

.farmplaninmp-dashboard__instructions {}

@media (min-width: 1200px) {
    .farmplaninmp-dashboard__instructions {
        display: flex;
        gap: 6rem;
    }
}

.farmplaninmp-dashboard h2 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    line-height: 1.5;
}


/* ======== */

.steps ol {
    counter-reset: steps;
    list-style: none;
    margin: 3rem 0 2rem;
    padding: 0;
}

.steps ol li {
    font-size: 24px;
    counter-increment: steps;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: 0.01em;

    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.steps ol li::before {
    font-weight: 700;
    flex-shrink: 0;
    flex-grow: 0;
}

.steps--v1 ol li::before {
    content: counter(steps);
    font-weight: 700;
    line-height: 1;
    background: var(--brand-deep);
    color: #fff;
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.steps--v2 ol li::before {
    content: "Step " counter(steps);
    text-transform: uppercase;
    border: 3px solid rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 6px 12px;
    line-height: 1;
    font-size: 18px;
}