.resource-shell{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 16px;
  background:rgba(255,250,246,.94);
  border-bottom:1px solid rgba(209,182,120,.32);
  box-shadow:0 6px 18px rgba(89,57,67,.08);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
}
.resource-shell,
.resource-shell *{
  box-sizing:border-box;
}
.resource-shell a{
  text-decoration:none;
}
.resource-shell__brand{
  flex:0 0 auto;
  color:#7a4d5c;
  font-family:'Poppins',Arial,sans-serif;
  font-size:13px;
  font-weight:800;
  letter-spacing:.18em;
}
.resource-shell__nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.resource-shell__nav::-webkit-scrollbar{
  display:none;
}
.resource-shell__nav a{
  flex:0 0 auto;
  min-height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border:1px solid #4d7f5b;
  border-radius:999px;
  color:#fff;
  background:#5f8f69;
  font-family:'Poppins',Arial,sans-serif;
  font-size:12px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}
.resource-shell__nav a:first-child{
  background:#5f8f69;
  border-color:#4d7f5b;
  color:#fff;
}
@media (max-width:760px){
  .resource-shell{
    padding:10px 12px;
    align-items:flex-start;
    flex-direction:column;
    gap:9px;
  }
  .resource-shell__nav{
    width:100%;
    justify-content:flex-start;
    padding-bottom:2px;
  }
}
@media print{
  .resource-shell{
    display:none !important;
  }
}
