/* Industry-challenges */

.industry-challenges {
    background: #000;

    .section-width {
        max-width: 80.3rem;
        width: 100%;
    }
}

.section-cards {
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.section-card {
    width: calc(33.33% - 1.5rem);
    display: flex;
    padding: 2.8rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.9rem;
    border-radius: 1.9rem;
    background: #0A0A0A;
    border: 0.1rem solid transparent;
    transition: 0.5s;

    &:hover {
        border: 0.1rem solid rgba(var(--primary-color-rgb), 0.2);
        box-shadow: 0px 0.5rem 0.8rem 0.2rem rgba(240, 90, 37, 0.12);
        transition: 0.5s;
    }

    .card-icon {
        display: flex;
        width: 4.7rem;
        height: 4.7rem;
        justify-content: center;
        align-items: center;
        border-radius: 1rem;
        background: #181818;

        svg {
            width: 2.2rem;
            height: 2.2rem;
        }
    }

    .section-card-title {
        color: #FFF;
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 1.32;
    }

    .section-card-title-spec {
        color: var(--primary-color);
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: 0.18rem;
        text-transform: uppercase;
    }

    .section-card-desc {
        color: rgba(255, 255, 255, 0.45);
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.5;
    }

    .section-card-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--primary-color);
        font-size: 1.4rem;
        font-weight: 600;
        line-height: 1.43;
        text-decoration: none;
        transition: 0.5s;

        &:hover {
            text-decoration: underline;
            padding-left: 1rem;
            transition: 0.5s;
        }

        svg {
            width: 1.4rem;
            height: 1.4rem;
        }
    }
}

.section-card-spec {
    justify-content: center;
}


@media(max-width: 991px) {
    .section-cards {
        margin-top: 3rem;
    }

    .section-card {
        width: calc(50% - 1rem);
        padding: 1.5rem;
    }
}

@media(max-width: 575px) {
    .section-card {
        width: 100%;
    }
}
