.saba-udb {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  margin: 18px 0;
  background: #fff;
}

.saba-udb__title {
  margin: 0 0 10px;
  font-size: 1.1em;
}

.saba-udb__header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.saba-udb__name {
  font-weight: 800;
  font-size: 1.06em;
}

.saba-udb__nameLink {
  color: inherit;
  text-decoration: none;
}
.saba-udb__nameLink:hover {
  text-decoration: underline;
}

.saba-udb__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.saba-udb__badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 0.92em;
  line-height: 1.2;
}

.saba-udb__badge--danger {
  background: #fee2e2;
  color: #991b1b;
}

.saba-udb__sub {
  color: #6b7280;
  font-size: 0.92em;
  margin-top: 6px;
}

.saba-udb__section {
  margin-top: 12px;
}

.saba-udb__sectionTitle {
  font-weight: 800;
  margin-bottom: 6px;
}

.saba-udb__dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 6px 12px;
  margin: 0;
}

.saba-udb__dl dt {
  color: #6b7280;
  font-weight: 700;
}
.saba-udb__dl dd {
  margin: 0;
}

.saba-udb__note {
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  background: #f9fafb;
}

.saba-udb__noteLabel {
  color: #6b7280;
  font-weight: 700;
  margin-bottom: 4px;
}

.saba-udb__details {
  margin-top: 10px;
  border-radius: 10px;
  background: #f9fafb;
  padding: 10px;
}

.saba-udb__summary {
  cursor: pointer;
  font-weight: 800;
}
.saba-udb__summaryHint {
  color: #6b7280;
  font-weight: 600;
  margin-left: 6px;
}

.saba-udb__tableWrap {
  overflow: auto;
  margin-top: 8px;
}

.saba-udb__table {
  width: 100%;
  border-collapse: collapse;
}

.saba-udb__table th {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}
.saba-udb__table td {
  padding: 8px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: top;
}

.saba-udb__list {
  margin: 0 0 0 1.2em;
}

.saba-udb__muted {
  color: #6b7280;
  font-size: 0.92em;
}

.saba-udb__videoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}

.saba-udb__videoCard {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.saba-udb__videoFrameWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.saba-udb__videoFrame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.saba-udb__thumbLink {
  display: block;
  text-decoration: none;
}

.saba-udb__thumbImg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.saba-udb__videoMeta {
  padding: 10px;
}

.saba-udb__videoTitle {
  font-weight: 700;
  line-height: 1.4;
  word-break: break-word;
}

.saba-udb__role-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.saba-udb__role--center {
  background: #f5c518;
  color: #1a1a1a;
}

.saba-udb__role--leader {
  background: #1a73e8;
  color: #fff;
}

