/*
Theme Name: ThemeRouter Theme
Theme URI: https://olliewp.com
Description: A child theme for ThemeRouter
Author: Mehul Gohil
Author URI: https://mehulgohil.com
Template:     ollie
Version: 1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         blog, portfolio, entertainment, grid-layout, one-column, two-columns, three-columns, four-columns, block-patterns, block-styles, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, full-width-template, rtl-language-support, style-variations, template-editing, theme-options, translation-ready, wide-blocks
Text Domain: mg-theme
*/

.wp-block-columns {
    align-items: stretch;
}

.sticky-column {
  position: sticky;
  top: 80px; /* Adjust this to your header height */
  align-self: start; /* Prevent full column stretching */
  z-index: 10;
}
.underline-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.underline-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px; /* adjust to desired underline width */
  height: 3px;  /* thickness of the underline */
  background-color: #0046d1; /* adjust to your brand color */
}

.themerouter-breadcrumb {
	text-align: center;
}

@media (min-width: 768px) {
  .sticky-column {
    position: sticky;
    top: 80px;
  }
}

