/* GLOBAL CSS の予定 */

/* =================================
   グローバルヘッダー
================================= */
#bbs header {
  background: #000;
}
#bbs header .header-top {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
#bbs header .header-left {
    color: #fff;
    font-size: 12px;
    padding: 10px 10px 0 0;
}
#bbs header .header-right {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 12px;
    gap: 12px;
    margin: 10px;
}
#bbs header .header-left h1 {
    padding-right: 3px;
}
#bbs header .header-right a {
    color: #fff;
    text-decoration: none;
}
#bbs header .header-explanation {
  font-size: 14px;
  color: #fff;
  margin: 20px 0 0 10px;
}

#bbs-sp header {
    background: #000;
}
#bbs-sp header .header-top {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
#bbs-sp header .header-left {
    color: #fff;
    font-size: 12px;
    padding: 10px 5px 5px 10px;
}
#bbs-sp header .header-left a {
    color: #fff;
    text-decoration: none;
}
#bbs-sp header .header-left img {
    width: 130px;
    height: auto;
}
#bbs-sp header .header-right {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 12px;
    gap: 12px;
    margin: 10px;
}
#bbs-sp header .header-right a {
    color: #fff;
    text-decoration: none;
}
#bbs-sp header .header-right .menu-btn {
    font-size: 1.1rem;
}
#bbs-sp header .header-right .icon-grid-3x3 {
    width: 1em;
    height: 1em;
    display: inline-block;
    position: relative;
    vertical-align: -0.1em;
    margin-right: 5px;
}
#bbs-sp header .header-right .icon-grid-3x3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.22em;
    height: 0.22em;
    background: currentColor;
    border-radius: 0.05em;
    box-shadow: /* 1行目 */
    0.39em 0,
    0.78em 0,

    /* 2行目 */
    0 0.39em,
    0.39em 0.39em,
    0.78em 0.39em,

    /* 3行目 */
    0 0.78em,
    0.39em 0.78em,
    0.78em 0.78em;
}
#bbs-sp header .header-explanation {
    padding: 0 10px 10px 10px;
    font-size: 12px;
    color: #fff;
    line-height: 150%;
}




/* =================================
   カテゴリーTOP　ランキング（momentum_ranking.php用）
================================= */
.bbs-cat-top-ranking {
  display: grid;
  gap: 12px;
  margin: 0 10px 32px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 32px;
}

/* =================================
   Category ranking pages
================================= */
.nrk-site-header {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  box-sizing: border-box;
}
.nrk-site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.nrk-site-logo img {
  display: block;
  width: 160px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}
.nrk-site-copy {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.5;
}
.nrk-site-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  font-size: 11px;
}
.nrk-site-links a {
  color: #fff;
  text-decoration: none;
}
.nrk-content-wrapper {
  max-width: 980px;
  margin: 0 auto;
}
.nrk-main-wrapper {
  display: flex;
  gap: 16px;
}
.nrk-main-content {
  flex: 1;
  width: calc(100% - 316px);
  min-width: 0;
}
.nrk-side-wrapper {
  width: 300px;
  bottom: 0;
  position: sticky;
  align-self: flex-end;
}
.nrk-page,
.nrk-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.nrk-head {
  font-size: 1.23rem;
  font-weight: bold;
  margin: 12px 0 20px;
  position: relative;
  padding-left: 1.9em;
  line-height: 1.35;
  color: inherit;
  letter-spacing: 0;
}
.nrk-head::before {
  content: "\f091";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #eab308 0%, #a16207 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
}
.nrk-tabs {
  display: flex;
  gap: 8px;
  margin: 0 10px 12px;
  flex-wrap: wrap;
}
.nrk-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
}
.nrk-tab.is-active {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}
.nrk-panel {
  position: relative;
  padding: 0 10px;
}
.nrk-empty {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  font-size: 14px;
}
.nrk-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nrk-list.is-movie {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.nrk-item:first-child {
  border-top: 1px solid #e2e8f0;
}
.nrk-link {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px;
  padding: 12px;
  border-bottom: 1px solid #e2e8f0;
  text-decoration: none;
  color: #0f172a;
  align-items: start;
  box-sizing: border-box;
}
.nrk-link.has-thumb {
  grid-template-columns: 44px 100px 1fr;
  gap: 10px;
}
.nrk-link:hover {
  background: #f6f8f9;
}
.nrk-no {
  width: 30px;
  height: 30px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: #999;
  color: #fff;
  box-sizing: border-box;
  flex-shrink: 0;
}
.nrk-item:nth-child(1) .nrk-no {
  background: #ff6600;
}
.nrk-item:nth-child(2) .nrk-no,
.nrk-item:nth-child(3) .nrk-no {
  background: #ffd700;
}
.nrk-body {
  display: block;
  min-width: 0;
  padding-left: 10px;
}
.nrk-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 4px 0;
}
.nrk-excerpt {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nrk-meta {
  margin-top: 8px;
  font-size: 12px;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.nrk-board {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  color: #0f172a;
  background: #f8fafc;
}
.nrk-new {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.nrk-time {
  color: #94a3b8;
}
.nrk-thumb {
  position: relative;
  width: 100%;
}
.nrk-thumb img {
  display: block;
  width: 100px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  background: #e2e8f0;
}
.nrk-list.is-movie .nrk-item {
  border-top: 0;
  position: relative;
}
.nrk-list.is-movie .nrk-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 8px;
  padding: 0 0 10px;
  border-bottom: 0;
  border-radius: 4px;
  overflow: hidden;
}
.nrk-list.is-movie .nrk-no {
  position: absolute;
  top: 8px;
  left: 8px;
  margin: 0;
  z-index: 2;
  font-size: 15px;
}
.nrk-list.is-movie .nrk-thumb img {
  width: 100%;
  border-radius: 0;
  aspect-ratio: 4 / 3;
}
.nrk-list.is-movie .nrk-body {
  padding: 0 10px;
}
.nrk-sp-banner {
  margin: 12px 0;
  grid-column: 1 / -1;
}
.other-ranking {
  margin-top: 30px;
  padding-top: 20px;
}
.other-ranking-title {
  font-size: 16px;
  margin-bottom: 14px;
  color: #444;
  font-weight: 600;
}
.other-ranking-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.other-ranking-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 30px;
  background: #bce9ff;
  border: 1px solid #ddd;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: .2s;
}
.other-ranking-buttons a:hover {
  background: #ff7a00;
  border-color: #ff7a00;
  color: #fff;
}

@media (max-width: 768px) {
  .nrk-site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 8px 10px;
  }
  .nrk-site-logo img {
    width: 100px;
    max-height: 32px;
  }
  .nrk-site-copy {
    font-size: 12px;
  }
  .nrk-site-links {
    justify-content: flex-start;
  }
  .nrk-content-wrapper,
  .nrk-page,
  .nrk-wrap {
    max-width: none;
  }
  .nrk-main-wrapper {
    display: block;
  }
  .nrk-main-content {
    width: auto;
  }
  .nrk-side-wrapper {
    display: none;
  }
  .nrk-head {
    font-size: 1rem;
    margin: 12px 0;
  }
  .nrk-tabs {
    margin: 0 8px 10px;
    gap: 6px;
  }
  .nrk-tab {
    min-height: 32px;
    padding: 6px 11px;
    font-size: 12px;
  }
  .nrk-panel {
    padding: 0;
  }
  .nrk-list.is-movie {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 8px;
  }
  .nrk-link {
    grid-template-columns: 36px 1fr;
    padding: 10px 8px;
  }
  .nrk-link.has-thumb {
    grid-template-columns: 36px 84px 1fr;
    gap: 8px;
  }
  .nrk-thumb img {
    width: 84px;
  }
  .nrk-title {
    font-size: 1rem;
  }
  .nrk-body {
    padding-left: 4px;
  }
  .other-ranking {
    margin: 10px 0;
  }
  .other-ranking-buttons {
    justify-content: center;
  }
}
.bbs-cat-top-ranking.category-show {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #f2df56 60%, #f9bd3c 100%);
}
.bbs-cat-top-ranking.category-wife {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #ccbbcf 60%, #815587 100%);
}
.bbs-cat-top-ranking.category-kinshin {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #ea1618 60%, #870216 100%);
}
.bbs-cat-top-ranking.category-sm {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #f4191d 60%, #870216 100%);
}
.bbs-cat-top-ranking.category-gay {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #69a8b9 60%, #1b75a6 100%);
}
.bbs-cat-top-ranking.category-onani {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #f2df56 60%, #fcb637 100%);
}
.bbs-cat-top-ranking.category-h {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #ff8298 60%, #f33777 100%);
  grid-template-columns: 1fr;;
}
.bbs-cat-top-ranking.category-mania {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #848edf 60%, #3e4dc3 100%);
}
.bbs-cat-top-ranking.category-rape {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #b0b5ca 60%, #535e88 100%);
}
.bbs-cat-top-ranking.category-sister {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #f3a1b5 60%, #ac4163 100%);
}
.bbs-cat-top-ranking.category-massage {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #77bf72 60%, #32982f 100%);
}
.bbs-cat-top-ranking.category-nanpa {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #b4b9d0 60%, #535e88 100%);
    grid-template-columns: 1fr;;
}
.bbs-cat-top-ranking.category-fuzoku {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #ebdc57 60%, #a39044 100%);
}
.bbs-cat-top-ranking.category-novel {
  --bbs-cat-top-head-bg: linear-gradient(175deg, #fff 0%, #f87f7f 60%, #bc0101 100%);
}
.bbs-cat-top-section {
  border: 1px solid #dbe4ef;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  margin-bottom: 16px;
}
.bbs-cat-top-section.is-movie {
  /* 動画用の追加スタイル */
}
.bbs-cat-top-section-head {
  padding: 7px 13px 7px;
  border-bottom: 1px solid #e8eef5;
  background: var(--bbs-cat-top-head-bg);
}
.bbs-cat-top-section-head h2,
h2.bbs-cat-top-title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.35;
}
.top-headline i {
  padding-right: 5px;
}
.top-headline i::before {
  background: linear-gradient(180deg, #eab308 0%, #a16207 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
  font-size: 1em;
}
h2.top-headline {
  font-size: 1.2rem;
  margin: 5px 0;
}
.bbs-cat-top-card-grid,
.bbs-cat-top-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
}
.bbs-cat-top-section.is-movie .bbs-cat-top-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bbs-cat-top-card {
  display: flex;
  flex-direction: row; /* 横並びに変更 */
  gap: 10px;
  min-width: 0;
  padding: 15px 15px 0;
  color: #0f172a;
  text-decoration: none;
  border-right: 1px solid #e8eef5;
  transition: background-color .15s ease;
  background: #fff;
  align-items: flex-start;
}
.bbs-cat-top-card:last-child {
  border-right: 0;
}
.bbs-cat-top-card:hover {
  background: #f8fbff;
}
.bbs-cat-top-thumb {
  width: 100%;
  margin-bottom: 12px;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  position: relative;
  /* width: 120px;
  max-width: 120px;
  min-width: 80px;
  margin-bottom: 0;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  position: relative;
  flex-shrink: 0; */
}
.bbs-cat-top-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bbs-cat-top-thumb-noimg {
  display: block;
  width: 100%;
  height: 100%;
  background: #e2e8f0;
  border-radius: 12px;
}
  .bbs-cat-top-section.is-movie .bbs-cat-top-thumb {
    margin-bottom: 0;
    border-radius: 4px;
  }

  .bbs-cat-top-section.is-movie .bbs-cat-top-thumb img {
    border-radius: 0;
  }

.nrk-thumb-play {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0; /* inset: 0; より明示 */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.nrk-thumb-play i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgb(236 59 59 / 72%);
  color: #fff;
  font-size: 18px;
}
.bbs-cat-top-title2 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.55;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bbs-cat-top-meta {
  font-size: 12px;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.bbs-cat-top-board {
  display: inline-block;
  border-radius: 999px;
  font-size: 12px;
  color: #0f172a;
}
.bbs-cat-top-date {
  margin: 0;
}
.bbs-cat-top-new {
  display: inline-block;
  padding: 1px 5px 0;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  margin: 0;
}
.bbs-cat-top-excerpt,
.bbs-cat-top-rank-body-excerpt {
  font-size: 0.95em;
  color: #555;
  margin-top: 4px;
}
.bbs-cat-top-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.55;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bbs-cat-top-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 5px;
  background: #ff6600;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}
.bbs-cat-top-card:nth-child(2) .bbs-cat-top-rank,
.bbs-cat-top-card:nth-child(3) .bbs-cat-top-rank {
  background: #ffd700;
}
.bbs-cat-top-rank-body {
  width: calc(100% - 28px);
}
.bbs-cat-top-card.is-movie {
  flex-direction: column;
  align-items: stretch; /* 中央寄せ→stretchに修正 */
  gap: 8px;
  padding: 10px 10px 0;
}
/* .bbs-cat-top-card.is-movie .bbs-cat-top-thumb {
  margin-bottom: 8px;
  width: 240px;
  max-width: 100%;
  min-width: 120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bbs-cat-top-card.is-movie .bbs-cat-top-thumb img {
  width: 100%;
  height: auto;
  display: block;
} */
.bbs-cat-top-card.is-movie .bbs-cat-top-rank-body {
  width: 100%;
  flex: unset;
  margin-top: 4px;
}



/* show top ranking: align layout with wife top ranking */
.bbs-cat-top-section.is-stacked .bbs-cat-top-card-grid {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}
.bbs-cat-top-section.is-stacked .bbs-cat-top-card {
  border-right: 0;
  border-bottom: 1px solid #ccc;
  min-height: 95px;
}
.bbs-cat-top-section.is-stacked .bbs-cat-top-card:last-child {
  border-bottom: 0;
}
.bbs-cat-top-section.is-full .bbs-cat-top-card-grid {
  gap: 12px;
  padding: 12px;
}
.bbs-cat-top-section.is-movie .bbs-cat-top-card-grid {
  gap: 12px;
  padding: 12px 12px 0;
}
/* .bbs-cat-top-thumb {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin-bottom: 12px;
  flex-shrink: 1;
} */
.bbs-cat-top-card.is-movie {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 0;
  border-right: 0;
  border-bottom: 0;
  position: relative;
}
.bbs-cat-top-section.is-movie .bbs-cat-top-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  margin: 0;
  font-size: 15px;
}
/* .bbs-cat-top-card.is-movie .bbs-cat-top-thumb {
  margin-bottom: 0;
  border-radius: 4px;
}
.bbs-cat-top-card.is-movie .bbs-cat-top-thumb img {
  height: 100%;
  border-radius: 0;
} */
.bbs-cat-top-card.is-movie .bbs-cat-top-rank-body {
  width: 90%;
  padding: 0 10px;
  flex: unset;
  margin-top: 0;
}
.bbs-cat-top-section.is-full {
    grid-column: 1 / -1;
}
@media (max-width: 768px) {
  .bbs-cat-top-card {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .bbs-cat-top-thumb {
    /* width: 100%;
    max-width: 100%;
    margin-bottom: 8px; */
    max-width: 240px;
  }
  .bbs-cat-top-rank-body {
    flex: unset;
  }
  .bbs-cat-top-ranking {
    grid-template-columns: 1fr;
    margin: unset;
    gap: 0;
  }
  .bbs-cat-top-section {
    border: unset;
    border-radius: unset;
    background: unset;
    overflow: unset;
    box-shadow: unset;
  }
  .bbs-cat-top-section-head {
    padding: 5px 10px 2px;
    border-bottom: unset;
  }
  h2.top-headline {
    font-size: 1rem;
    margin: 5px 0;
    line-height: 1.1;
  }
  .bbs-cat-top-rank {
    margin: 0 0 0 8px;
  }
  .bbs-cat-top-title {
    margin: 3px 0 -5px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0;
  }
  .bbs-cat-top-meta {
    font-size: 10px;
    color: #64748b;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-right: 25px;
    margin-top: 5px;
  }
  .bbs-cat-top-board {
    color: #0f172a;
    padding: 0;
    margin: 0;
  }
  .bbs-cat-top-rank-body {
    width: calc(100% - 28px);
    padding: 5px 0;
  }
  .bbs-cat-top-section.is-full {
    grid-column: auto;
  }
  .bbs-cat-top-card-grid {
    grid-template-columns: 1fr;
  }
  .bbs-cat-top-card {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid #e8eef5;
    align-items: center;
  }
  .bbs-cat-top-section.is-stacked .bbs-cat-top-card {
    min-height: 0;
  }
  .bbs-cat-top-section.is-stacked .bbs-cat-top-card:last-child {
    border-bottom: 0;
  }
  .bbs-cat-top-thumb {
    max-width: 240px;
  }
  .bbs-cat-top-section.is-movie .bbs-cat-top-card-grid {
    gap: 8px;
    padding: 8px 8px 0;
  }
  .bbs-cat-top-card.is-movie {
    padding: 0;
  }
  .nrk-thumb-play i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}
