@charset "utf-8";

/*
    One industry landing page.
*/

.industry-pain-grid {
    display: flex;
    flex-wrap: wrap;
}

.industry-pain {
    background-color: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-lg);
    padding: 24px;
    height: 100%;
}

.industry-pain-icon {
    font-size: 20px;
    color: var(--mp-red);
    display: block;
    margin-bottom: 12px;
}

.industry-pain p {
    margin: 0;
    font-size: 15.5px;
    color: var(--mp-body);
}

/*  The three answers.
    ? Numbered because they are read in order and because the numbers tie each answer back to the
    ? problem above it - not as decoration. */
.industry-fit-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 900px;
}

.industry-fit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-lg);
    padding: 26px;
}

.industry-fit-index {
    font-size: 15px;
    font-weight: 800;
    color: var(--mp-red);
    background-color: var(--mp-red-wash);
    border-radius: var(--mp-radius);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin: 0;
    font-variant-numeric: tabular-nums;
}

.industry-fit-title {
    font-size: 19px;
    margin: 0 0 8px;
}

.industry-fit-body p {
    margin: 0;
    color: var(--mp-muted);
}

@media (max-width: 991px) {

    .industry-pain-grid > div {
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {

    .industry-fit {
        padding: 20px;
        gap: 14px;
    }

    .industry-fit-index {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .industry-fit-title {
        font-size: 17px;
    }
}
