/* marquee section */
.related_post_section_outter{
  background: var(--color-glam-red);
}
.related_post_section {
   display: -webkit-box;      /* Old iOS, Safari */
  display: -ms-flexbox;      /* IE 10 */
  display: flex;             /* Modern browsers */
  padding-right: 0;
  color: var(--color-white);
  align-items: center;
}
.related_post_section .related_post_label {
  margin-right: 20px;
}
.related_post_label h5 {
  margin: 0;
}
.related_post_section .related_post_data {
   display: -webkit-box;      /* Old iOS, Safari */
  display: -ms-flexbox;      /* IE 10 */
  display: flex;             /* Modern browsers */
  flex-wrap: nowrap;
  gap: 35px;
  flex: 1;
  overflow-x: auto;
  padding: 15px 0px;
  scrollbar-width: none;
}
.related_post_section .related_post_data a{
  width: max-content;
  display: block;
}

.related_post_data::-webkit-scrollbar{
  display: none; 
}

