.pad-left {
    padding-left: 2rem; 
}
.wp-block-embed.is-type-rich {
    border-radius: 2.5rem;
    overflow: hidden;
}
article .wp-block-heading {
    padding-top: 1rem;
  }
  .blue-box {
    padding: 1.5rem 2rem;
  }
  .blue-box article blockquote,
  .blue-box article blockquote::before, 
  .blue-box article blockquote::after {
    color: #10137d;
  }
  .wp-block-quote>cite,
  .blue-box article blockquote cite {
    font-size: 1rem;
  }
  .mini-timeline {
    position: relative;
    margin-left: 20px;
    margin-top: 0px;
  }
  .flipped-columns {
    display: flex; /* Ensure flex layout */
    flex-wrap: wrap; /* Allow wrapping for better responsiveness */
  }
  .flipped-columns .wp-block-column {
      order: 0; /* Default order */
  }
  @media (max-width: 768px) { /* Adjust for mobile breakpoint */
      .flipped-columns .wp-block-column:nth-child(1) {
          order: 2; /* Make the first column appear second */
      }
      .flipped-columns .wp-block-column:nth-child(2) {
          order: 1; /* Make the second column appear first */
      }
      .wordpress__content .wp-block-columns {
        margin-bottom: 4rem;
      }
  }
  .table-with-tiles {
    width: 100%;
    border-collapse: collapse;
  }

  @media (max-width: 768px) { 
      .table-with-tiles {
          display: block;
      }
      
      .table-with-tiles tr {
          display: block;
          margin-bottom: 15px; 
      }
      
      .table-with-tiles td {
          display: block;
          width: 100%;
      }
      
      .table-with-tiles td:first-child {
          font-weight: bold; 
          margin-bottom: 5px;
      }
  }




  /* Base b-tab container */
.b-tab {
  position: relative;
  width: 100%;
  transition: opacity 0.15s ease-out;
}

/* b-tab list */
.b-tab_list {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: stretch;
  justify-content: space-between;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

/* b-tab items */
.b-tab_item {
  position: relative;
  z-index: 1;
  border-right: 1px solid #ffffff;
  width: 100%;
  /* white-space: nowrap; */
}

/* b-tab labels */
.b-tab_label {
  min-height: 40px;
  height: 100%;
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  box-sizing: border-box;
  text-align: center;
  padding: 2px 5px;
  background-color: #96c9fd;
  color: #10137d;
  cursor: pointer;
  transition: background-color 0.2s ease, border 0.2s ease;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  margin-top: 2px;
  margin-bottom: 1px;
  border-top: 5px solid #ffffff;
  font-weight: 600;
  line-height: 1.2;
}

/* Active tab default */
.b-tab_label.active {
  background-color: #10137d;
  color: #ffffff;
  border-top: 5px solid #10137d;
  padding-top: 0;
  padding-bottom: 0;
}

/* When sticky, force the active tab’s border to match others */
.b_sticky_tabs .b-tab_label.active {
  border-top: 5px solid #ffffff;
}

/* Hover effects */
.b-tab_label:hover {
  background-color: #70b6fc;
}
.b-tab_label.active:hover {
  background-color: #060861;
}

/* Optional: First/last tab border adjustments */
/* .b-tab_item:first-child > .b-tab_label { } */
/* .b-tab_item:last-child > .b-tab_label { } */

/* Mobile styles */
@media (max-width: 992px) {
  .b-tab {
    position: relative;
  }
  .b-tab_list {
    flex-direction: column;
  }
  .b-tab_item {
    width: 100%;
    border-right: none;
  }
  .b-tab_label {
    border-radius: 8px;
    border-top: 2px solid #ffffff;
  }
  .b_sticky_tabs .b-tab_label.active {
    border-top: 2px solid #ffffff;
  }
}

/* Hamburger toggle (mobile) */
.b-tab__toggle {
  display: none;
  background: #96c9fd;
  border: 1px solid #ffffff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 999;
}
.b-tab__toggle span {
  display: block;
  width: 100%;
  height: 4px;
  margin: 4px 0;
  background: #10137d;
  transition: 0.4s;
}
@media (max-width: 992px) {
  .b-tab__toggle {
    display: block;
  }
  /* The list collapses by default on mobile */
  #b-tab-list {
    display: none;
    flex-direction: column;
  }
  #b-tab-list.open {
    display: flex;
  }
}

/* Sticky state class */
.b_sticky_tabs {
  z-index: 10000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Position, top, left, and width will be set inline via JS */
}

/* Fade effect for opacity */
.b-tab.fade-out {
  transition: opacity 0.15s ease-out;
}