.product_category-link {
--gap: var(--widgets-spacing, 20px);
--row-gap: var(--widgets-spacing-row, 20px);
--column-gap: var(--widgets-spacing-column, 20px);
border-bottom: 1px solid #FAF0DB;
}
.product_category-link a {
display: flex;
flex-direction: row;
align-items: center;
gap: var(--gap);
row-gap: var(--row-gap);
column-gap: var(--column-gap);
}
.product_category-link a > .arrow {
font-size: 50px;
}
.product_category-link a > .arrow svg {
display: block;
height: 1em;
position: relative;
width: 1em;
}
.product_category-link.previous a {
flex-direction: row-reverse;
}
.product_category-link.next a .arrow {
transform: rotate(180deg);
}
.product_category-link a > .text_wrapper {
display: flex;
flex-direction: column;
text-align: left;
}
.product_category-link a > .text_wrapper > .type {
color: var(--e-global-color-text);
font-family: "Manrope", Sans-serif;
font-size: 18px;
font-weight: 400;
line-height: 1.6em;
}
.product_category-link a > .text_wrapper > .title {
color: var(--e-global-color-text);
font-family: var(--e-global-typography-26fdb84-font-family), Sans-serif;
font-size: var(--e-global-typography-26fdb84-font-size);
line-height: var(--e-global-typography-26fdb84-line-height);
font-weight: var(--e-global-typography-26fdb84-font-weight);
}
@media (max-width:767px){
.product_category-link img{
display:none;
}
.product_category-link a > .text_wrapper > .title{
font-size:18px;
line-height:1;
}
.product_category-link a > .arrow svg{
width:25px;
height:25px;
}
.product_category-link{
border-bottom:none;
}
}