.col_section_header { 
    padding-bottom: 18px;
    width: 100%;
    border-bottom: 1px solid var(--clr-border);
    padding: 0px;
    .collection_container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        .col_section_header__title {
            h3 {
                font-size: var(--fs-h3);
                
            }
        }

        .col_section_header_link {
            a {
                position: relative;
                display: flex;
                align-items: center;
                gap: 8px;
                text-decoration: none;

                &::after {
                    content: "";
                    width: 16px;
                    height: 1px;
                    background-color: var(--clr-border);
                }
            }
        }
    }
}
.hide_links {
    a {
        display: none !important;
    }
}