/* 냥집 PC main — 시안 기준, 1280px */

@font-face {
  font-family: Pretendard;
  font-style: normal;
  font-weight: 45 920;
  font-display: swap;
  src: url("../fonts/PretendardVariable.woff2") format("woff2-variations");
}

:root {
  --bg: #ffffff;
  --ink: #222222;
  --ink-soft: #555555;
  --muted: #888888;
  --line: #e5e5e5;
  --fill: #f3f3f3;
  --brown: #6b4a36;
  --brown-deep: #553824;
  --max: 1280px;
  --inner: 1240px;
  --sidebar: 320px;
  --gap: 28px;
  --header-h: 108px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body,
main {
  margin: 0;
  background: #fff;
}

html,
body {
  min-width: 1280px;
  color: var(--ink);
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 20;
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: var(--inner);
  margin: 0 auto;
}

.hero.wrap {
  width: var(--max);
}

/* Header */

.site-header {
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid #f5f5f5;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
  transform: translateY(10px);
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  height: 77px;
  width: auto;
}

.search {
  position: relative;
  flex: 1 1 auto;
  margin-left: 75px;
  margin-right: 75px;
}

.search input {
  width: 100%;
  height: 54px;
  padding: 0 62px 0 22px;
  border: 1px solid #dedede;
  border-radius: 27px;
  background: #f5f5f5;
  color: var(--ink);
  outline: none;
}

.search input::placeholder {
  color: #9a9a9a;
}

.search input:focus {
  border-color: #c8b6a6;
  background: #fff;
}

.search-submit {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  cursor: pointer;
}

.search-submit:hover {
  background: var(--brown-deep);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

.nav-item,
.header-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 58px;
  padding: 0;
  border: 0;
  background: none;
  color: #333;
  font-size: 14px;
  cursor: pointer;
}

.nav-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #333;
}

.nav-item:hover,
.header-menu:hover {
  color: var(--brown);
}

.nav-item:hover .nav-icon,
.header-menu:hover .nav-icon {
  color: var(--brown);
}

/* Hero */

.hero {
  padding: 16px 0 0;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  height: 242px;
  border-radius: 16px;
  background: #f5f3f1 url("../images/banner/hero.webp?v=4") center calc(50% - 10px) / cover no-repeat;
}

.hero-track,
.hero-slide {
  height: 100%;
}

.hero-slide {
  display: none;
  position: relative;
}

.hero-slide.is-active {
  display: block;
}

.hero-nav,
.hero-dots {
  display: none;
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(106, 90, 76, 0.55);
  color: #fff;
  line-height: 0;
  cursor: pointer;
}

.hero-nav svg {
  display: block;
}

.hero-nav svg path {
  stroke-width: 2.7;
}

.hero-nav--prev {
  left: 14px;
}

.hero-nav--prev svg {
  transform: translate(-1px, 0.5px);
}

.hero-nav--next {
  right: 14px;
}

.hero-nav--next svg {
  transform: translate(1px, 0.5px);
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #fff;
}

/* Layout */

.main-nav {
  display: flex;
  gap: 9px;
  min-width: 0;
  height: 48px;
  margin-bottom: 16px;
}

.home-page .main-nav {
  margin-bottom: 32px;
}

.main-nav-item {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 48px;
  border: 1px solid #efe8e2;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(107, 74, 54, 0.08);
  background: #fffaf6;
  color: #4a4038;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 #fff, 0 2px 1px #fff, 0 0 4px #fff;
}

.main-nav-item:hover {
  background: #f6efe8;
  border-color: #e8ddd3;
}

.main-nav-item.is-active {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
  text-shadow: none;
}

.main-nav-item.is-active:hover {
  background: var(--brown-deep);
  border-color: var(--brown-deep);
  color: #fff;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--sidebar);
  gap: var(--gap);
  padding: var(--gap) 0 48px;
  align-items: start;
}

.section + .section {
  margin-top: 28px;
}

.content .section + .section {
  padding-top: 28px;
  border-top: 1px solid #f5f5f5;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-head h2 {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  font-weight: 740;
  letter-spacing: -0.03em;
}

.section-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.section-more {
  font-size: 13px;
  color: #999;
}

.section-more:hover {
  color: var(--brown);
}

/* Video cards */

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 13px;
}

.video-card {
  min-width: 0;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #c4c0bb;
}

.video-thumb::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.ph-thumb,
.ph-square,
.banner-media {
  position: absolute;
  inset: 0;
}

.ph-thumb {
  background: #c4c0bb;
}

.video-thumb.has-media .ph-thumb {
  display: none;
}

.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-duration {
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 1;
  padding: 2px 5px;
  border-radius: 3px;
  background: #111;
  color: #fff;
  font-size: 11px;
  line-height: 1.3;
}

.video-body {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 0;
  margin-top: 8px;
  padding: 0 3px;
}

.video-meta {
  display: contents;
}

.video-title {
  grid-column: 1 / -1;
  min-height: calc(1.38em * 2);
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 680;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.video-title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.channel-avatar {
  position: relative;
  overflow: hidden;
  grid-row: 2;
  align-self: start;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.video-card .channel-avatar {
  grid-row: 2 / 4;
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.channel-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-channel {
  grid-column: 2;
  grid-row: 2;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.25;
  color: #555;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.video-stats {
  grid-column: 2;
  grid-row: 3;
  margin-top: 0;
  font-size: 12px;
  line-height: 1.25;
  color: #999;
}

.tone-1,
.tone-1 .ph-thumb,
.tone-1 .ph-square { background-color: #c5c1bc; }
.tone-2,
.tone-2 .ph-thumb,
.tone-2 .ph-square { background-color: #b4afa9; }
.tone-3,
.tone-3 .ph-thumb,
.tone-3 .ph-square { background-color: #cdc9c4; }
.tone-4,
.tone-4 .ph-thumb,
.tone-4 .ph-square { background-color: #a8a39d; }
.tone-5,
.tone-5 .ph-thumb,
.tone-5 .ph-square { background-color: #9b968f; }
.tone-6,
.tone-6 .ph-thumb,
.tone-6 .ph-square { background-color: #bbb6b0; }
.tone-7,
.tone-7 .ph-thumb,
.tone-7 .ph-square { background-color: #8f8a84; }
.tone-8,
.tone-8 .ph-thumb,
.tone-8 .ph-square { background-color: #b8b3ad; }

.channel-avatar.tone-1 { background: #6b4a36; }
.channel-avatar.tone-2 { background: #6f5340; }
.channel-avatar.tone-3 { background: #b07d4f; }
.channel-avatar.tone-4 { background: #8c6a4b; }
.channel-avatar.tone-5 { background: #5e4636; }
.channel-avatar.tone-6 { background: #a66b4e; }
.channel-avatar.tone-7 { background: #7a5a40; }
.channel-avatar.tone-8 { background: #927656; }

/* Bottom banners */

.banner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.content-banner,
.promo-banner {
  position: relative;
  display: block;
  overflow: hidden;
}

.content-banner {
  height: auto;
  border-radius: 6px;
  cursor: default;
}

.content-banner img,
.promo-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.22);
}

.content-banner-copy,
.promo-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 18px;
  color: #fff;
}

.content-banner-copy strong {
  font-size: 16px;
  font-weight: 730;
  letter-spacing: -0.03em;
}

.content-banner-copy em,
.promo-copy em {
  margin-top: 6px;
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

/* Sidebar */

.side-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.side-status {
  min-width: 0;
}

.side-status[hidden] {
  display: none !important;
}

.sidebar .section-head {
  margin-bottom: 12px;
}

.sidebar h2 {
  font-size: 17px;
}

.side-card + .side-card {
  margin-top: 22px;
}

.side-card--login {
  padding: 14px 14px 12px;
  border: 1px solid #efe8e2;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(107, 74, 54, 0.08);
  background: #fffaf6;
}

.side-card--login.is-auth-pending {
  min-height: 208px;
}

.side-card--login h2 {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.side-login {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.side-login input[type="text"],
.side-login input[type="password"] {
  width: 100%;
  height: 36px;
  padding: 0 11px;
  border: 1px solid #e4dcd4;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.side-login input[type="text"]::placeholder,
.side-login input[type="password"]::placeholder {
  color: #aaa;
}

.side-login input[type="text"]:focus,
.side-login input[type="password"]:focus {
  border-color: #c4b3a4;
}

.side-login-remember {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
}

.side-login-remember input {
  width: 14px;
  height: 14px;
  margin: 0;
}

.side-login-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 2px;
}

.side-login-btn {
  display: grid;
  place-items: center;
  height: 34px;
  border: 0;
  border-radius: 5px;
  background: var(--brown);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.side-login-btn--ghost {
  border: 1px solid #d9cfc6;
  background: #fff;
  color: var(--brown);
}

.side-login-help {
  margin-top: 2px;
  text-align: center;
}

.side-login-help a {
  color: var(--muted);
  font-size: 12px;
}

.side-card--goods.is-hidden,
.side-card--goods[hidden],
#favorites.is-hidden,
#favorites[hidden] {
  display: none !important;
}

.side-card--today,
.side-card--status {
  padding: 13px 13px 12px;
  border: 1px solid #efe8e2;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(107, 74, 54, 0.08);
  background: #fffaf6;
}

.site-status-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.site-status-pair + .site-status-pair {
  border-top: 1px dotted #e8ddd3;
}

.site-status-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 9px 4px 8px;
  text-align: center;
}

.site-status-cell + .site-status-cell {
  border-left: 1px dotted #e8ddd3;
}

.site-status-cell span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.site-status-cell strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.today-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
}

.today-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  color: var(--brown);
}

.today-date {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.today-loading,
.today-fallback {
  color: var(--muted);
  font-size: 12px;
}

.today-block {
  padding: 10px 11px 9px;
  border: 1px solid #efe8e2;
  border-radius: 8px;
  background: #fff;
}

.today-block + .today-block {
  margin-top: 8px;
}

.today-block h3 {
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: -0.02em;
  color: var(--brown-deep);
}

.today-row {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
}

.today-row + .today-row {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px dotted #e8ddd3;
}

.today-avatar,
.today-thumb {
  flex: 0 0 auto;
  overflow: hidden;
  background: #efe8e2;
}

.today-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
}

.today-thumb {
  width: 70px;
  height: 40.4px;
  border-radius: 4px;
}

.today-avatar img,
.today-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.today-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
}

.today-copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.today-copy em {
  font-style: normal;
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink-soft);
}

.today-flag {
  display: inline-block;
  margin-left: 4px;
  font-size: 13px;
  line-height: 1;
  vertical-align: -1px;
}

.today-flag--flat {
  width: 16px;
  height: 11px;
  object-fit: cover;
  border-radius: 1px;
  box-shadow: inset 0 0 0 1px rgba(80, 60, 40, 0.14);
  vertical-align: -1px;
}

.today-copy--video strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  white-space: normal;
  text-overflow: ellipsis;
}

.today-copy--channel strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.today-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.today-empty-icon {
  display: block;
  flex: 0 0 auto;
}

.side-card--goods {
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: #fbf6f1;
}

.side-card--goods .product-thumb {
  background: #fff;
}

.side-card--goods .ph-square {
  background: #fff;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.product-item a {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-thumb {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #c4c0bb;
}

.product-thumb::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.ph-square {
  background: #c4c0bb;
}

.product-item strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 32px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.product-item em {
  margin-top: -5px;
  font-style: normal;
  font-size: 12px;
  color: var(--brown);
}

.promo-banner {
  margin-top: 10px;
  height: auto;
  border-radius: 6px;
}

.promo-banner .banner-media {
  background: #6b4a36;
}

.promo-copy strong {
  font-size: 16px;
  font-weight: 730;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.channel-item + .channel-item {
  margin-top: 8px;
}

.channel-item .channel-avatar {
  grid-row: auto;
  width: 44px;
  height: 44px;
  font-size: 14px;
}

.channel-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
}

.channel-copy strong {
  font-size: 14px;
}

.channel-copy em {
  font-style: normal;
  font-size: 12px;
  color: #999;
}

.subscribe {
  flex: 0 0 auto;
  height: 26px;
  padding: 0 10px;
  border: 1px solid var(--brown);
  border-radius: 4px;
  background: #fff;
  color: var(--brown);
  font-size: 12px;
  cursor: pointer;
}

.subscribe:hover {
  background: var(--brown);
  color: #fff;
}

/* Footer */

.site-footer {
  margin-top: 25px;
  padding: 16px 0 18px;
  background: #fff;
  border-top: 1px solid #eee;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo--footer img {
  height: 48px;
  filter: grayscale(1);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: #666;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--brown);
}

.footer-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-sns {
  display: flex;
  gap: 16px;
}

.footer-sns a {
  display: grid;
  place-items: center;
  width: auto;
  height: 28px;
}

.footer-sns img {
  display: block;
  width: auto;
  height: 28px;
  object-fit: contain;
}

.footer-copy {
  color: #999;
  font-size: 12px;
}

/* Shorts cards */

.short-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 13px;
}

.home-page .short-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.short-card {
  min-width: 0;
}

.short-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #c4c0bb;
}

.short-thumb::before {
  content: "";
  display: block;
  padding-top: 177.78%;
}

.short-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px #8a6a52;
  pointer-events: none;
}

.short-thumb.has-media .ph-thumb {
  display: none;
}

.short-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.short-duration {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 2;
  padding: 2px 5px;
  border-radius: 3px;
  background: #111;
  color: #fff;
  font-size: 11px;
  line-height: 1.3;
}

.short-body {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  column-gap: 6px;
  row-gap: 0;
  margin-top: 8px;
}

.short-title {
  grid-column: 1 / -1;
  min-height: calc(1.35em * 2);
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.short-title.has-flag {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.2em;
  column-gap: 4px;
  align-items: start;
}

.short-flag {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  font-style: normal;
}

.short-title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.short-card .channel-avatar {
  grid-row: 2 / 4;
  width: 26px;
  height: 26px;
  font-size: 11px;
}

.short-channel {
  grid-column: 2;
  grid-row: 2;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  color: #555;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.short-meta {
  grid-column: 2;
  grid-row: 3;
  margin-top: 0;
  font-size: 11px;
  line-height: 1.25;
  color: #999;
}

/* Home CLS skeleton — 인기 / 최신 / 숏츠 */

@keyframes nz-skel {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.is-skeleton {
  pointer-events: none;
  user-select: none;
}

.is-skeleton .ph-thumb,
.is-skeleton .channel-avatar,
.is-skeleton .today-avatar,
.is-skeleton .today-thumb,
.is-skeleton .skel-line {
  background-color: #eee9e4;
  background-image: linear-gradient(90deg, #eee9e4 0%, #f7f3ef 46%, #eee9e4 90%);
  background-size: 200% 100%;
  animation: nz-skel 1.35s ease-in-out infinite;
}

.is-skeleton .video-thumb,
.is-skeleton .short-thumb {
  background: #eee9e4;
}

.is-skeleton .short-thumb::after {
  box-shadow: inset 0 0 0 1px #efe8e2;
}

.is-skeleton .channel-avatar {
  color: transparent;
}

.skel-line {
  display: block;
  height: 12px;
  border-radius: 4px;
  width: 92%;
}

.skel-line-short {
  width: 58%;
  margin-top: 7px;
}

.video-title .skel-line,
.short-title .skel-line {
  height: 13px;
}

.video-channel .skel-line,
.short-channel .skel-line {
  width: 46%;
  height: 10px;
}

.video-stats .skel-line,
.short-meta .skel-line {
  width: 72%;
  height: 10px;
}

.side-login-skel {
  display: none;
  padding-top: 2px;
}

.side-card--login.is-auth-pending .side-login-skel {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-login-skel .skel-line {
  height: 36px;
  width: 100%;
}

.side-login-skel .skel-line-short {
  height: 14px;
  width: 42%;
  margin-top: 0;
}

.video-page .video-channel,
.channel-page .video-channel {
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-page .video-channel a,
.channel-page .video-channel a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-channel-flag {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1;
  font-style: normal;
}
