.EditorialContentZone{
    display: flex;
    flex-direction: column;
}
.Component_title{
    padding-top: 32px;
    padding-bottom: 32px;
}
.EditorialContentZone .Component_title{
    color: #000;
    text-align: center;
    overflow-wrap: break-word;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}
.EditorialContentZone .Component_title h2{
    font-size: 36px;
    text-transform: lowercase;
    font-weight: 600;
}
.FeaturePromoWithCatalog{
    padding-top: 32px;
    padding-bottom: 32px;
}
.FeaturePromoWithCatalog{
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}
.FeaturePromoWithCatalog_Item{
    display: flex;
    flex-direction: column;
    align-items: center;

}
.FeaturePromoWithCatalog_Item__info{
    width: 100%;
    display: contents;
}
.FeaturePromoWithCatalog_Item__title{
    margin: 16px 0;
    padding-bottom: 16px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.FeaturePromoWithCatalog_Item__button{

margin-top: 32px;
}
.FeaturePromoWithCatalog_Item__button a{
    background: #000 !important;
    border: 1px transparent;
    height: 46px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #fff !important;
    transition: ease-in .2s;
}
.FeaturePromoWithCatalog_Item__button a:hover{
    background: #FFF !important;
    border: 1px solid;
    color: #000 !important;
}
.FeaturePromoWithCatalog_Item__title p{

    font-size: 20px !important;
    font-weight: 600;
}
.FeaturePromoWithCatalog_Item__title:after{
    content: "";
    border-bottom: 1px solid;
    width: 50px;
    display: block;
    bottom: 0;
    position: absolute;
}