/* =========================================
   INDUSTRIES PAGE
========================================= */


/* HERO */

.industries-page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.industries-page-hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-page-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
}


/* MAIN CONTENT */

.industries-page-content {
    padding: 110px 0 120px;
}

.industries-page-wrap {
    max-width: 1200px;
}


/* ROW */

.industry-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 95px;
}

.industry-row:last-child {
    margin-bottom: 0;
}


/* COPY */

.industry-copy h2 {
    margin: 0 0 14px;
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
}

.industry-copy p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.65;
    color: #222;
}


/* IMAGES */

.industry-image {
    width: 100%;
}

.industry-image img {
    width: 100%;
    height: 295px;
    object-fit: cover;
    border-radius: 10px;
}

.brand-logos img {
    height: auto;
    object-fit: contain;
    border-radius: 0;
}


/* ALTERNATING STRUCTURE */

.industry-row-text-image .industry-copy {
    order: 1;
}

.industry-row-text-image .industry-image {
    order: 2;
}

.industry-row-image-text .industry-image {
    order: 1;
}

.industry-row-image-text .industry-copy {
    order: 2;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .industries-page-hero {
        min-height: 260px;
    }

    .industries-page-hero h1 {
        font-size: 42px;
    }

    .industries-page-content {
        padding: 80px 0 90px;
    }

    .industries-page-wrap {
        max-width: 100%;
    }

    .industry-row {
        margin-bottom: 75px;
        gap: 28px;
    }

    .industry-image img {
        height: 260px;
    }

    .industry-copy h2 {
        font-size: 27px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .industries-page-hero {
        min-height: 210px;
    }

    .industries-page-hero h1 {
        font-size: 36px;
    }

    .industries-page-content {
        padding: 55px 0 65px;
    }

    .industry-row {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 58px;
    }

    .industry-row-text-image .industry-copy,
    .industry-row-text-image .industry-image,
    .industry-row-image-text .industry-copy,
    .industry-row-image-text .industry-image {
        order: initial;
    }

    .industry-row-image-text .industry-image {
        order: 1;
    }

    .industry-row-image-text .industry-copy {
        order: 2;
    }

    .industry-row-text-image .industry-copy {
        order: 1;
    }

    .industry-row-text-image .industry-image {
        order: 2;
    }

    .industry-copy h2 {
        font-size: 26px;
    }

    .industry-copy p {
        font-size: 13px;
        line-height: 1.6;
    }

    .industry-image img {
        height: auto;
        max-height: 420px;
    }

    .brand-logos img {
        max-height: none;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .industries-page-hero {
        min-height: 180px;
    }

    .industries-page-hero h1 {
        font-size: 32px;
    }

    .industry-copy h2 {
        font-size: 24px;
    }

    .industry-row {
        margin-bottom: 48px;
    }
}