/**
 * Css for Widget: solutions-grid v01
 */

.solutions-grid_v01 {
    padding: 0px 0px 80px 0px;
    background-color: #fff;
}

.solutions-grid_v01__title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.75rem;
    line-height: 1.1;
    color: #2B3338;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.solutions-grid_v01__subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #5C6D78;
    margin-bottom: 3rem;
}

.solutions-grid_v01__card-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.solutions-grid_v01__card-link:hover {
    transform: translateY(-5px);
}

.solutions-grid_v01__card {
    position: relative;
    min-height: 280px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.solutions-grid_v01__card-overlay {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
}

.solutions-grid_v01__card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.solutions-grid_v01__card-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .solutions-grid_v01 {
        padding: 50px 0;
    }

    .solutions-grid_v01__title {
        font-size: 2rem;
    }

    .solutions-grid_v01__card {
        min-height: 220px;
    }
}
