





.sub-title{
  display: flex;
  align-items: center;
  gap: 16px; /* space between line and text */

  font-weight: 500;
}

.sub-title::before{
  content: "";
  width: 48px;   /* length of the line */
  height: 3px;   /* thickness */
  background: #ce021f;
  border-radius: 2px;
  flex-shrink: 0;
} 



.title {
  font-family: "Playfair Display", serif !important;
  font-weight: 700 !important;
  font-size: 42px !important;
  line-height: 1.1 !important;
} 


.sub-title{
  font-family: "DM Sans", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;

} 

.menu-items .mrp-menu-level-0 > li > a{
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
} 



/* =========================================
   MOBILE MENU: PARENT ITEMS OPEN SUBMENUS
   Instead of navigating away on first tap
   Add to Global CSS
========================================= */
@media (max-width: 1024px){

  /* Disable direct navigation on any parent item with children */
  .has-submenu > a{
    pointer-events: none !important;
    cursor: default !important;
  }

  /* Make parent items feel tappable and align nicely */
  .has-submenu > a,
  .has-submenu > span{
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }


  /* Better spacing for tappable menu rows */
  .menu-items .mrp-menu-level-0 > li > a,
  .menu-items .mrp-menu-level-0 > li > span,
  .menu-items .mrp-menu-level-1 > li > a,
  .menu-items .mrp-menu-level-1 > li > span,
  .menu-items .mrp-menu-level-2 > li > a,
  .menu-items .mrp-menu-level-2 > li > span{
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* Optional: indent nested levels a touch more for clarity */
  .menu-items .mrp-menu-level-1{
    padding-left: 12px;
  }

  .menu-items .mrp-menu-level-2{
    padding-left: 14px;
  }
} 


.weblet_blog-entry-heading{
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: 42px !important;
  line-height: 1.15 !important;
  letter-spacing: 0.01em !important;
} 

label.title {
  font-family: inherit !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
} 

.weblet_blog-entry-text h2.title,
.weblet_blog-entry-text h2 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700 !important;
  font-size: 32px !important;
  line-height: 1.1 !important;
} 


<style>

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #111; /* track background */
}

::-webkit-scrollbar-thumb {
  background: #ff1100;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff2a1a;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff1100 #111;
}

</style>