    /* General menu styling */
    .menu .deeper.parent li a {
        display: block;
    }

    /* Two-column list styling */
    .two-column-list {
        column-count: 2; /* Split into 2 columns */
         /* column-gap: 20px; Add spacing between columns */
    }

.two-column-list .hover-block {
     /* margin-bottom: 20px; or whatever space you prefer */
     padding-bottom: 20px;
}


    .two-column-list div {
        break-inside: avoid; /* Prevent divs from breaking across columns */
        margin-bottom: 0; /* Add spacing between items */
    }

    /* Responsive behavior: Single column on small screens */
    @media (max-width: 991.98px) {
        .two-column-list {
            column-count: 1; /* Single column on small screens */
        }
    }

    /* Navigation-specific styling */
    #gptw-navigation nav ul li {
        cursor: unset;
        font-family: "Gilroy-SemiBold";
    }

    /* Reset font-family inside any section tag to Gilroy-Regular */
    #gptw-navigation section,
    #gptw-navigation section * {
        font-family: "Gilroy-Regular" !important;
    }

    .nav section {
        padding:20px;
    }

    #gptw-navigation .desktop-bottom > div > nav > ul > li ul li {
        line-height: 15px;
    }

    /* Apply line-height to all <p> and <a> tags within .nav */
    .nav section a,
    .nav section p {
        line-height: 1.5;
        text-transform: none; 
        white-space: normal;
    }

    ul.show {
        padding-top: 0 !important;
    }

    .show span {
        color: #FF1628;
    }

    /* Desktop styles */
    @media (min-width: 1200px) {
        .nav .deeper.parent section {
            position: absolute;
            top: 0;
            left: 0;
            border-top: 2px solid #DEE5E4;
        }

        /* Show the section when its parent is active */
        .nav .deeper.parent.active section {
            display: block;
        }

        #gptw-navigation .desktop-bottom > div > nav > ul > li {
            line-height: 60px;
            height: 60px;
        }

 /*        section#subnav2 {
            left: -122px;
        }
        section#subnav3 {
            left: -249px;
        }
        section#subnav4 {
            left: -377px;
        } 
*/        
    }

    /* Mobile styles */
    @media (max-width: 1199.98px) {
        .nav .deeper.parent section {
            position: static; /* Reset absolute positioning */
            display: block; /* Show all sections */
        }
    }
    @media (max-width: 576px) {
        .two-column-list .no-margin-bottom {
            margin-top: 10px;
        }
    }

.hover-block:hover {
    background-color: #f7f7f7; 
    border-radius: 4px;        /* Optional: rounded corners */
}

#page-overlay {
  position: fixed; /* Cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  z-index: 99; /* Ensure it's above most content, but below the menu */
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Initially hidden */
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; /* Smooth transition */
}

/* Style for when the overlay is active */
#page-overlay.active {
  opacity: 1;
  visibility: visible;
}

.link-underline-hover:hover {
  text-decoration: underline !important;
}










   .mega-section {
      position: relative;
      overflow: hidden; /* contain floats */
   }

   .featured-column {
      background-color: #f5f5f5; /* your gray */
      padding: 20px;
   }

   .featured-wrapper {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 25%; /* or use 3/12 = 25% */
      background: #f5f5f5;
      padding: 20px;
      border-left: 1px solid lightgray;
   }

   @media (max-width: 991px) {
      .featured-wrapper {
         position: relative;
         width: 100%;
      }
   }

