/*
Theme Name: Divi Nordic by Adrian
Theme URI: https://adrian.iscru.net
Description: Child Theme For Divi
Author: Adrian Iscru
Author URI: https://iscru.uk/nordic2/
Version: 1.0.0
Template: Divi
*/

.stock-cards-container {
  overflow-x: auto; /* Enables horizontal scrolling */
  white-space: nowrap; /* Prevents text wrapping */
}

.stock-card { /* Class for each stock card */
  display: inline-block; /* Keeps cards inline for scrolling */
  margin-right: 20px; /* Adjust spacing between cards */
}

.stock-cards-container {
  display: flex;
  overflow-x: scroll;
  scroll-behavior: smooth; /* Optional for smoother native scrolling */
}

.blurb {
  flex: 0 0 auto; /* Prevent blurbs from shrinking or growing */
  width: 300px; /* Example width */
  margin-right: 20px; /* Example margin */
}