/* =========================================
   JBRES Left Menu – Style Option B (Cleaned)
   ✔ No Scroll
   ✔ No Vertical Line
   ✔ Premium Academic Look
========================================= */

.jbres-left-menu{
  position: sticky;
  top: 88px;
  z-index: 5;
}

/* Container */
.jbres-menu{
  background: #f0f1f3;
  border-radius: 0px;
  border: 0px solid rgba(2, 6, 23, .10);
  box-shadow:
    0 20px 45px rgba(2, 6, 23, .08),
    0 2px 0 rgba(2, 6, 23, .03);
  padding: 0px;
}

/* Group block */
.jbres-menu-group{
  padding: 8px 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.08);
  background:
    radial-gradient(600px 220px at 10% 0%, rgba(37,99,235,.09), transparent 55%),
    radial-gradient(600px 220px at 90% 20%, rgba(245,158,11,.10), transparent 55%),
    rgba(255,255,255,.95);
  margin-bottom: 10px;
}
.jbres-menu-group:last-child{
  margin-bottom: 0;
}

/* Group title */
.jbres-menu-title{
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 6px 6px 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(2,6,23,.14);

  font-size: 12px;
  font-weight: 950;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: .55px;
}
.jbres-menu-title::after{
  content: "";
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #f59e0b);
  opacity: .7;
}

/* Links */
.jbres-menu a{
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 6px 0;
  padding: 10px 14px;

  border-radius: 12px;
  border: 1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.92);

  color: #334155;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none !important;

  transition:
    background .16s ease,
    border-color .16s ease,
    transform .16s ease,
    box-shadow .16s ease,
    color .16s ease;
}

/* Hover */
.jbres-menu a:hover{
  background: rgba(37,99,235,.07);
  border-color: rgba(37,99,235,.22);
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
}

/* Active (NO vertical line) */
.jbres-menu a.active{
  background: linear-gradient(
    135deg,
    rgba(37,99,235,.18),
    rgba(245,158,11,.14)
  );
  border-color: rgba(37,99,235,.38);
  color: #0c426a !important;
  font-weight: 950;

  box-shadow:
    0 14px 30px rgba(37,99,235,.18),
    inset 0 0 0 1px rgba(255,255,255,.55);
}

/* Focus accessibility */
.jbres-menu a:focus{
  outline: none;
}
.jbres-menu a:focus-visible{
  box-shadow:
    0 0 0 3px rgba(245,158,11,.35),
    0 0 0 6px rgba(37,99,235,.20);
  border-color: rgba(245,158,11,.45);
}

/* Mobile */
@media (max-width: 992px){
  .jbres-left-menu{
    position: relative;
    top: 0;
    margin-bottom: 14px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .jbres-menu a{
    transition: none !important;
  }
}













  
  
  
  /* =========================================
   JBRES Header – Style E (Split Academic)
========================================= */

.jbres-head-e{
  margin-bottom: 24px;
}

/* Top strip */
.jbres-head-e__strip{
  width: 100%;
  background: linear-gradient(90deg, #0f172a, #1e293b);
  padding: 28px 0;
}

.jbres-head-e__badge{
  display: inline-block;
  margin-bottom: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #e5e7eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3px;
}

.jbres-head-e__title{
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 950;
  letter-spacing: -.4px;
}

/* Bottom panel */
.jbres-head-e__panel{
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(2,6,23,.08);
}

.jbres-head-e__grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 22px 0;
  align-items: center;
}

.jbres-head-e__text p{
  margin: 0 0 10px;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(2,6,23,.75);
  font-weight: 600;
}

/* Breadcrumbs */
.jbres-head-e__crumbs{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.jbres-head-e__crumbs a{
  color: #2563eb;
  font-weight: 850;
  text-decoration: none !important;
}
.jbres-head-e__crumbs a:hover{
  text-decoration: underline !important;
}
.jbres-head-e__crumbs span{
  color: rgba(2,6,23,.4);
}
.jbres-head-e__crumbs strong{
  color: rgba(2,6,23,.65);
  font-weight: 900;
}

/* Actions */
.jbres-head-e__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.jbres-head-e__btn{
  padding: 10px 14px;
  border-radius: 10px;
  background: #2563eb;
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 12px 24px rgba(37,99,235,.22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.jbres-head-e__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(37,99,235,.28);
}

.jbres-head-e__btn.alt{
  background: #f8fafc;
  color: #1e40af !important;
  border: 1px solid rgba(2,6,23,.12);
  box-shadow: none;
}

/* Responsive */
@media (max-width: 992px){
  .jbres-head-e__grid{
    grid-template-columns: 1fr;
  }
}
