.rcg, .rcg *, .rcg *::before, .rcg *::after {
  box-sizing: border-box;
}
.rcg {
  --rcg-fg: var(--text-primary, #222222);
  --rcg-sub: var(--text-secondary, #5f6b7c);
  --rcg-dim: #94969b;
  --rcg-line: var(--border-color, #eef0f3);
  --rcg-hover: var(--bg-hover, #f7f8fb);
  --rcg-chip: var(--bg-hover, #f1f3f5);
  position: relative;
  color: var(--rcg-fg);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.3px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.rcg--white {
  --rcg-fg: #222222;
  --rcg-sub: #5f6b7c;
  --rcg-dim: #94969b;
  --rcg-line: #eef0f3;
  --rcg-hover: #f7f8fb;
  --rcg-chip: #f1f3f5;
}
.rcg--black {
  --rcg-fg: #e8eaed;
  --rcg-sub: #9aa5b1;
  --rcg-dim: #868b93;
  --rcg-line: #2c3036;
  --rcg-hover: #22262b;
  --rcg-chip: #2a2e34;
}
.rcg a {
  color: inherit;
  text-decoration: none;
}
.rcg-blind {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}
.rcg-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
  margin-bottom: 10px;
}
.rcg-more {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  flex: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--rcg-sub);
  transition: opacity 0.15s;
}
.rcg-more:hover {
  opacity: 0.65;
}
.rcg-more-arw {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rcg-tabin, .rcg-pgin {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.rcg-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.rcg-tabs::-webkit-scrollbar {
  display: none;
}
.rcg-tab {
  flex: none;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--rcg-dim);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}
.rcg-tab:hover {
  color: var(--rcg-sub);
}
.rcg-mores > .rcg-more {
  display: none;
}
.rcg--tab .rcg-panes > .rcg-pane {
  display: none;
}
.rcg-tabin:nth-of-type(1):checked ~ .rcg-panes > .rcg-pane:nth-child(1) {
  display: block;
}
.rcg-tabin:nth-of-type(1):checked ~ .rcg-hd .rcg-tab:nth-child(1) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(1):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(1) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(2):checked ~ .rcg-panes > .rcg-pane:nth-child(2) {
  display: block;
}
.rcg-tabin:nth-of-type(2):checked ~ .rcg-hd .rcg-tab:nth-child(2) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(2):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(2) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(3):checked ~ .rcg-panes > .rcg-pane:nth-child(3) {
  display: block;
}
.rcg-tabin:nth-of-type(3):checked ~ .rcg-hd .rcg-tab:nth-child(3) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(3):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(3) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(4):checked ~ .rcg-panes > .rcg-pane:nth-child(4) {
  display: block;
}
.rcg-tabin:nth-of-type(4):checked ~ .rcg-hd .rcg-tab:nth-child(4) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(4):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(4) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(5):checked ~ .rcg-panes > .rcg-pane:nth-child(5) {
  display: block;
}
.rcg-tabin:nth-of-type(5):checked ~ .rcg-hd .rcg-tab:nth-child(5) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(5):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(5) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(6):checked ~ .rcg-panes > .rcg-pane:nth-child(6) {
  display: block;
}
.rcg-tabin:nth-of-type(6):checked ~ .rcg-hd .rcg-tab:nth-child(6) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(6):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(6) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(7):checked ~ .rcg-panes > .rcg-pane:nth-child(7) {
  display: block;
}
.rcg-tabin:nth-of-type(7):checked ~ .rcg-hd .rcg-tab:nth-child(7) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(7):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(7) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(8):checked ~ .rcg-panes > .rcg-pane:nth-child(8) {
  display: block;
}
.rcg-tabin:nth-of-type(8):checked ~ .rcg-hd .rcg-tab:nth-child(8) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(8):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(8) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(9):checked ~ .rcg-panes > .rcg-pane:nth-child(9) {
  display: block;
}
.rcg-tabin:nth-of-type(9):checked ~ .rcg-hd .rcg-tab:nth-child(9) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(9):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(9) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(10):checked ~ .rcg-panes > .rcg-pane:nth-child(10) {
  display: block;
}
.rcg-tabin:nth-of-type(10):checked ~ .rcg-hd .rcg-tab:nth-child(10) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(10):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(10) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(11):checked ~ .rcg-panes > .rcg-pane:nth-child(11) {
  display: block;
}
.rcg-tabin:nth-of-type(11):checked ~ .rcg-hd .rcg-tab:nth-child(11) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(11):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(11) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(12):checked ~ .rcg-panes > .rcg-pane:nth-child(12) {
  display: block;
}
.rcg-tabin:nth-of-type(12):checked ~ .rcg-hd .rcg-tab:nth-child(12) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(12):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(12) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(13):checked ~ .rcg-panes > .rcg-pane:nth-child(13) {
  display: block;
}
.rcg-tabin:nth-of-type(13):checked ~ .rcg-hd .rcg-tab:nth-child(13) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(13):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(13) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(14):checked ~ .rcg-panes > .rcg-pane:nth-child(14) {
  display: block;
}
.rcg-tabin:nth-of-type(14):checked ~ .rcg-hd .rcg-tab:nth-child(14) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(14):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(14) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(15):checked ~ .rcg-panes > .rcg-pane:nth-child(15) {
  display: block;
}
.rcg-tabin:nth-of-type(15):checked ~ .rcg-hd .rcg-tab:nth-child(15) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(15):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(15) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(16):checked ~ .rcg-panes > .rcg-pane:nth-child(16) {
  display: block;
}
.rcg-tabin:nth-of-type(16):checked ~ .rcg-hd .rcg-tab:nth-child(16) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(16):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(16) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(17):checked ~ .rcg-panes > .rcg-pane:nth-child(17) {
  display: block;
}
.rcg-tabin:nth-of-type(17):checked ~ .rcg-hd .rcg-tab:nth-child(17) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(17):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(17) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(18):checked ~ .rcg-panes > .rcg-pane:nth-child(18) {
  display: block;
}
.rcg-tabin:nth-of-type(18):checked ~ .rcg-hd .rcg-tab:nth-child(18) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(18):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(18) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(19):checked ~ .rcg-panes > .rcg-pane:nth-child(19) {
  display: block;
}
.rcg-tabin:nth-of-type(19):checked ~ .rcg-hd .rcg-tab:nth-child(19) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(19):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(19) {
  display: inline-flex;
}
.rcg-tabin:nth-of-type(20):checked ~ .rcg-panes > .rcg-pane:nth-child(20) {
  display: block;
}
.rcg-tabin:nth-of-type(20):checked ~ .rcg-hd .rcg-tab:nth-child(20) {
  background: var(--rcg-hover);
  color: var(--rcg-fg);
}
.rcg-tabin:nth-of-type(20):checked ~ .rcg-hd .rcg-mores > .rcg-more:nth-child(20) {
  display: inline-flex;
}
.rcg--tabside {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 0 20px;
}
.rcg--tabside .rcg-hd {
  display: block;
  margin-bottom: 0;
  padding-right: 16px;
  border-right: 1px solid var(--rcg-line);
}
.rcg--tabside .rcg-tabs {
  display: block;
  overflow: visible;
}
.rcg--tabside .rcg-tab {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rcg--tabside .rcg-mores {
  margin-top: 10px;
  padding-left: 12px;
}
@media (max-width: 640px) {
  .rcg--tabside {
    display: block;
  }
  .rcg--tabside .rcg-hd {
    display: flex;
    margin-bottom: 10px;
    padding-right: 0;
    border-right: 0;
  }
  .rcg--tabside .rcg-tabs {
    display: flex;
    overflow-x: auto;
  }
  .rcg--tabside .rcg-mores {
    margin-top: 0;
    padding-left: 0;
  }
}
.rcg-pages > .rcg-page {
  display: none;
}
.rcg-pages > .rcg-page:only-child {
  display: block;
}
.rcg-pgin:nth-of-type(1):checked ~ .rcg-pages > .rcg-page:nth-child(1) {
  display: block;
}
.rcg-pgin:nth-of-type(1):checked ~ .rcg-pager > .rcg-dot:nth-child(1) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(2):checked ~ .rcg-pages > .rcg-page:nth-child(2) {
  display: block;
}
.rcg-pgin:nth-of-type(2):checked ~ .rcg-pager > .rcg-dot:nth-child(2) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(3):checked ~ .rcg-pages > .rcg-page:nth-child(3) {
  display: block;
}
.rcg-pgin:nth-of-type(3):checked ~ .rcg-pager > .rcg-dot:nth-child(3) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(4):checked ~ .rcg-pages > .rcg-page:nth-child(4) {
  display: block;
}
.rcg-pgin:nth-of-type(4):checked ~ .rcg-pager > .rcg-dot:nth-child(4) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(5):checked ~ .rcg-pages > .rcg-page:nth-child(5) {
  display: block;
}
.rcg-pgin:nth-of-type(5):checked ~ .rcg-pager > .rcg-dot:nth-child(5) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(6):checked ~ .rcg-pages > .rcg-page:nth-child(6) {
  display: block;
}
.rcg-pgin:nth-of-type(6):checked ~ .rcg-pager > .rcg-dot:nth-child(6) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(7):checked ~ .rcg-pages > .rcg-page:nth-child(7) {
  display: block;
}
.rcg-pgin:nth-of-type(7):checked ~ .rcg-pager > .rcg-dot:nth-child(7) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(8):checked ~ .rcg-pages > .rcg-page:nth-child(8) {
  display: block;
}
.rcg-pgin:nth-of-type(8):checked ~ .rcg-pager > .rcg-dot:nth-child(8) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(9):checked ~ .rcg-pages > .rcg-page:nth-child(9) {
  display: block;
}
.rcg-pgin:nth-of-type(9):checked ~ .rcg-pager > .rcg-dot:nth-child(9) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(10):checked ~ .rcg-pages > .rcg-page:nth-child(10) {
  display: block;
}
.rcg-pgin:nth-of-type(10):checked ~ .rcg-pager > .rcg-dot:nth-child(10) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(11):checked ~ .rcg-pages > .rcg-page:nth-child(11) {
  display: block;
}
.rcg-pgin:nth-of-type(11):checked ~ .rcg-pager > .rcg-dot:nth-child(11) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(12):checked ~ .rcg-pages > .rcg-page:nth-child(12) {
  display: block;
}
.rcg-pgin:nth-of-type(12):checked ~ .rcg-pager > .rcg-dot:nth-child(12) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(13):checked ~ .rcg-pages > .rcg-page:nth-child(13) {
  display: block;
}
.rcg-pgin:nth-of-type(13):checked ~ .rcg-pager > .rcg-dot:nth-child(13) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(14):checked ~ .rcg-pages > .rcg-page:nth-child(14) {
  display: block;
}
.rcg-pgin:nth-of-type(14):checked ~ .rcg-pager > .rcg-dot:nth-child(14) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(15):checked ~ .rcg-pages > .rcg-page:nth-child(15) {
  display: block;
}
.rcg-pgin:nth-of-type(15):checked ~ .rcg-pager > .rcg-dot:nth-child(15) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(16):checked ~ .rcg-pages > .rcg-page:nth-child(16) {
  display: block;
}
.rcg-pgin:nth-of-type(16):checked ~ .rcg-pager > .rcg-dot:nth-child(16) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(17):checked ~ .rcg-pages > .rcg-page:nth-child(17) {
  display: block;
}
.rcg-pgin:nth-of-type(17):checked ~ .rcg-pager > .rcg-dot:nth-child(17) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(18):checked ~ .rcg-pages > .rcg-page:nth-child(18) {
  display: block;
}
.rcg-pgin:nth-of-type(18):checked ~ .rcg-pager > .rcg-dot:nth-child(18) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(19):checked ~ .rcg-pages > .rcg-page:nth-child(19) {
  display: block;
}
.rcg-pgin:nth-of-type(19):checked ~ .rcg-pager > .rcg-dot:nth-child(19) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pgin:nth-of-type(20):checked ~ .rcg-pages > .rcg-page:nth-child(20) {
  display: block;
}
.rcg-pgin:nth-of-type(20):checked ~ .rcg-pager > .rcg-dot:nth-child(20) {
  background: var(--rcg-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rcg-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.rcg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rcg-line);
  cursor: pointer;
  transition: background-color 0.15s, transform 0.15s;
}
.rcg-pane {
  position: relative;
}
.rcg-empty {
  margin: 0;
  padding: 32px 0;
  font-size: 13px;
  color: var(--rcg-dim);
  text-align: center;
}
.rcg-grid {
  display: grid;
  gap: 24px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rcg-grid--cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.rcg-grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.rcg-grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rcg-grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.rcg-grid--cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.rcg-grid--cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.rcg-grid--cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.rcg-grid--cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .rcg-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .rcg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }
}
.rcg-card {
  position: relative;
  min-width: 0;
}
.rcg-thumb {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.3333333333;
  margin-bottom: 10px;
  border-radius: 8px;
  background: var(--rcg-hover);
}
.rcg-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}
.rcg-card:hover .rcg-thumb img {
  transform: scale(1.04);
}
.rcg-thumb-none {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 28px;
  font-weight: 700;
}
.rcg-labels {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  margin-bottom: 4px;
}
.rcg-topic {
  min-width: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--rcg-sub);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rcg-topic:hover {
  text-decoration: underline;
}
.rcg-chip {
  flex: none;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--rcg-chip);
  position: relative;
  z-index: 1;
  font-size: 11px;
  line-height: 1.4;
  color: var(--rcg-sub);
  white-space: nowrap;
}
.rcg-tit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.5px;
  color: var(--rcg-fg);
}
.rcg-tit::after {
  content: "";
  position: absolute;
  inset: 0;
}
.rcg-card:hover .rcg-tit {
  text-decoration: underline;
}
.rcg-extra {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
}
.rcg-extra img {
  vertical-align: middle;
}
.rcg-desc {
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.5;
  color: var(--rcg-dim);
}
.rcg-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 16px;
  color: var(--rcg-dim);
}
.rcg-author, .rcg-date {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rcg-cnt {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex: none;
  color: var(--rcg-dim);
}
.rcg-cnt--cmt {
  position: relative;
  z-index: 1;
}
.rcg-cnt--cmt:hover {
  color: var(--rcg-sub);
}
.rcg-cnt-ico {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rcg-c0 {
  background: #f8dfdd;
  color: #853832;
}
.rcg--black .rcg-c0 {
  background: #492a27;
  color: #df9690;
}
.rcg-c1 {
  background: #f8e4dd;
  color: #854932;
}
.rcg--black .rcg-c1 {
  background: #493027;
  color: #dfa590;
}
.rcg-c2 {
  background: #f8eadd;
  color: #855932;
}
.rcg--black .rcg-c2 {
  background: #493727;
  color: #dfb590;
}
.rcg-c3 {
  background: #f8f2dd;
  color: #857032;
}
.rcg--black .rcg-c3 {
  background: #494127;
  color: #dfcb90;
}
.rcg-c4 {
  background: #e8f8dd;
  color: #548532;
}
.rcg--black .rcg-c4 {
  background: #354927;
  color: #b0df90;
}
.rcg-c5 {
  background: #ddf8eb;
  color: #32855c;
}
.rcg--black .rcg-c5 {
  background: #274938;
  color: #90dfb8;
}
.rcg-c6 {
  background: #ddf8f5;
  color: #32857a;
}
.rcg--black .rcg-c6 {
  background: #274944;
  color: #90dfd4;
}
.rcg-c7 {
  background: #ddf1f8;
  color: #326f85;
}
.rcg--black .rcg-c7 {
  background: #274049;
  color: #90cadf;
}
.rcg-c8 {
  background: #dde9f8;
  color: #325685;
}
.rcg--black .rcg-c8 {
  background: #273649;
  color: #90b2df;
}
.rcg-c9 {
  background: #e5ddf8;
  color: #4b3285;
}
.rcg--black .rcg-c9 {
  background: #312749;
  color: #a890df;
}
.rcg-c10 {
  background: #f3ddf8;
  color: #753285;
}
.rcg--black .rcg-c10 {
  background: #422749;
  color: #cf90df;
}
.rcg-c11 {
  background: #f8ddeb;
  color: #85325c;
}
.rcg--black .rcg-c11 {
  background: #492738;
  color: #df90b8;
}
body.color_scheme_dark .rcg--layout .rcg-c0 {
  background: #492a27;
  color: #df9690;
}
body.color_scheme_dark .rcg--layout .rcg-c1 {
  background: #493027;
  color: #dfa590;
}
body.color_scheme_dark .rcg--layout .rcg-c2 {
  background: #493727;
  color: #dfb590;
}
body.color_scheme_dark .rcg--layout .rcg-c3 {
  background: #494127;
  color: #dfcb90;
}
body.color_scheme_dark .rcg--layout .rcg-c4 {
  background: #354927;
  color: #b0df90;
}
body.color_scheme_dark .rcg--layout .rcg-c5 {
  background: #274938;
  color: #90dfb8;
}
body.color_scheme_dark .rcg--layout .rcg-c6 {
  background: #274944;
  color: #90dfd4;
}
body.color_scheme_dark .rcg--layout .rcg-c7 {
  background: #274049;
  color: #90cadf;
}
body.color_scheme_dark .rcg--layout .rcg-c8 {
  background: #273649;
  color: #90b2df;
}
body.color_scheme_dark .rcg--layout .rcg-c9 {
  background: #312749;
  color: #a890df;
}
body.color_scheme_dark .rcg--layout .rcg-c10 {
  background: #422749;
  color: #cf90df;
}
body.color_scheme_dark .rcg--layout .rcg-c11 {
  background: #492738;
  color: #df90b8;
}
/*# sourceMappingURL=b54d384ad90947f0f5e738400098f917e776ab82.root_contents_gallery.scss.map */
