/* Agricultural input pages (product-list m0/130 Agricultural Services, m0/138 Microorganic Fertilizers): the intro
   heading (an h2 here, as the banner holds the page's h1) and the guidance block. Loaded after business-pages.css and
   feature-pages.css. */

.input-catalogue-page .product-catalogue-intro__title {
    max-width: 820px;
    margin: 0 0 16px;
    color: var(--ssc-green-950);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
}

/* The theme justifies paragraphs, which leaves wide gaps between words on phones */
.input-catalogue-page .product-catalogue-intro > p,
.input-catalogue-page .catalogue-product-card__copy > p {
    text-align: left;
}

/* The note's accent line (its colour variable is not defined site-wide) */
.input-catalogue-page .product-catalogue-intro .product-catalogue-intro__note {
    border-left-color: var(--ssc-green-300, #9fd4b5);
}

/* One product fills the row instead of leaving half of it empty */
.input-catalogue-page .catalogue-product-card:only-child {
    grid-column: 1 / -1;
}

.input-catalogue-page .catalogue-product-card:only-child .catalogue-product-card__inner {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
}

/* Guidance: heading on the left, numbered steps on the right */
.input-catalogue-page .input-guide {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
    gap: clamp(28px, 5vw, 72px);
}

.input-catalogue-page .input-guide .op-steps {
    margin-top: 6px;
}

@media (max-width: 991.98px) {
    .input-catalogue-page .input-guide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .input-catalogue-page .catalogue-product-card:only-child .catalogue-product-card__inner {
        display: flex;
    }
}
