.Term hr {
    max-width: 80vw;
    margin: 5rem auto;
    background-color: #5b606866;
}
.Term-hero {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    min-height: 22.5rem;
    margin-bottom: 1.87rem;
    padding: 0.625rem 1rem;
}

.Term-picture {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(40, 47, 56, 0.00) 48.86%, #282F38 90%);
}

.Term-picture img {
    position: relative;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Term-title {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  width: 100%;
}

.Breadcrumb {
    margin-bottom: 2.5rem;
}

.Breadcrumb a {
    display: inline-block;
    text-decoration: none;
    color: #949CA1;
}

.Term-description {
    text-align: center;
}

.Term-description p {
    margin-bottom: 0;
}

.Products {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6.25rem;
}

.Products-card:not(:last-child) {
    margin-bottom: 5rem;
}

.Products picture img {
    display: block;
    height: 100%;
    max-height: 15.9375rem;
    width: auto;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 2.375rem;
}

.Products-desc {
    margin-bottom: 0.5rem;
}


.Products-btn {
  margin-top: 1rem;
}

@media (width > 48em) {
    
    .Term-hero {
        margin-bottom: 2.5rem;
    }

    
    .Term-description p {
        max-width: 70ch;
        margin-left: auto;
        margin-right: auto;
    }
    
    .Term hr {
        margin: 6.25rem auto;
    }
    
    .Products {
        margin-bottom: 7.5rem;
    }
    
    
    .Products-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 3rem;
    }
    
    .Products-card:not(:last-child) {
        margin-bottom: 6.25rem;
    }
    
    .Products picture img {
        margin: 0;
    }
    
}