:root{
  --nbc-1:#c46b47;
  --nbc-2:#7b4630;
  --nbc-3:#d1a780;
  --nbc-4:#ebddc7;
  --nbc-radius:18px;
  --nbc-shadow:0 10px 30px rgba(0,0,0,.10);
  --nbc-font-head: "Playfair Display", serif;
  --nbc-font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.nbc-carousel{
  position:relative;
  padding: 14px 0 28px;
  background: transparent;
  font-family: var(--nbc-font-body);
}

.nbc-track{
  display:flex;
  gap:18px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding: 10px 54px 16px;
  -webkit-overflow-scrolling: touch;
}

.nbc-track::-webkit-scrollbar{ height:10px; }
.nbc-track::-webkit-scrollbar-thumb{
  background: var(--nbc-3);
  border-radius: 999px;
}
.nbc-track::-webkit-scrollbar-track{ background: rgba(0,0,0,.06); border-radius:999px; }

.nbc-card{
  scroll-snap-align: start;
  min-width: 260px;
  width: 260px;
  background: var(--nbc-4);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--nbc-radius);
  box-shadow: var(--nbc-shadow);
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
@media (min-width: 768px){
  .nbc-card{ min-width: 320px; width: 320px; }
}
.nbc-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
}

.nbc-thumb{
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(196,107,71,.22), rgba(209,167,128,.35));
  position:relative;
}
.nbc-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.nbc-body{
  padding: 14px 16px 16px;
}
.nbc-title{
  margin:0;
  font-family: var(--nbc-font-head);
  color: var(--nbc-2);
  font-size: 18px;
  line-height: 1.2;
}
.nbc-meta{
  margin-top: 6px;
  color: rgba(0,0,0,.62);
  font-size: 14px;
}
.nbc-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 10px;
  color: var(--nbc-1);
  text-decoration:none;
  font-weight:600;
}
.nbc-link:hover{ text-decoration: underline; }

.nbc-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  color: var(--nbc-2);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index: 2;
}
.nbc-btn:hover{ border-color: rgba(0,0,0,.20); }
.nbc-btn:focus{ outline: 3px solid rgba(196,107,71,.35); outline-offset: 2px; }
.nbc-prev{ left: 8px; }
.nbc-next{ right: 8px; }

.nbc-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  margin-top: 12px;
}
.nbc-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(0,0,0,.18);
  border:none;
  cursor:pointer;
}
.nbc-dot.is-active{ background: var(--nbc-1); }