.sc-channel-page {
  --sc-channel-accent: var(--sc-game-royale);
  --sc-channel-accent-hover: var(--sc-accent-hover);
  --sc-channel-soft: var(--sc-game-royale-soft);
  --sc-channel-on-accent: var(--sc-surface);
}

.sc-channel-brawlstars {
  --sc-channel-accent: var(--sc-game-brawl);
  --sc-channel-accent-hover: #6d28d9;
  --sc-channel-soft: var(--sc-game-brawl-soft);
  --sc-channel-on-accent: var(--sc-surface);
}

.sc-channel-clashofclans {
  --sc-channel-accent: var(--sc-game-clash);
  --sc-channel-accent-hover: #b84f1b;
  --sc-channel-soft: var(--sc-game-clash-soft);
}

.sc-channel-moco {
  --sc-channel-accent: var(--sc-game-moco);
  --sc-channel-accent-hover: #0e766c;
  --sc-channel-soft: var(--sc-game-moco-soft);
}

.sc-home-hero {
  padding: 48px 0 56px;
}

.sc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 40px;
  align-items: center;
}

.sc-hero-title {
  margin: 0;
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.sc-hero-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--sc-text-muted);
  font-size: 18px;
  line-height: 1.85;
}

.sc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.sc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--sc-radius-md);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.sc-button-primary {
  background: var(--sc-channel-accent);
  color: var(--sc-channel-on-accent);
}

.sc-button-primary:hover {
  background: var(--sc-channel-accent-hover);
}

.sc-button-secondary {
  border: 1px solid var(--sc-border-strong);
  color: var(--sc-ink);
  background: var(--sc-surface);
}

.sc-button-secondary:hover {
  border-color: var(--sc-channel-accent);
  background: var(--sc-channel-soft);
}

.sc-game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sc-game-card {
  display: block;
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  background: var(--sc-surface-muted);
  color: var(--sc-ink);
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.sc-channel-page .sc-game-card:hover {
  border-color: var(--sc-channel-accent);
  background: var(--sc-channel-soft);
  transform: translateY(-2px);
}

.sc-game-icon {
  display: block;
  box-sizing: border-box;
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 0 18px;
  padding: 9px;
  border: 1px solid var(--sc-channel-accent);
  border-radius: var(--sc-radius-md);
  background: var(--sc-channel-soft);
  box-shadow: inset 0 3px 0 var(--sc-channel-accent);
}

.sc-game-card h2,
.sc-guide-card h3 {
  margin: 0;
  font-weight: 800;
}

.sc-game-card p,
.sc-guide-card p {
  margin: 10px 0 0;
  color: var(--sc-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.sc-section {
  padding: 42px 0;
  border-top: 1px solid var(--sc-border);
}

.sc-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.sc-section-title {
  position: relative;
  padding-bottom: 10px;
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
}

.sc-section-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--sc-channel-accent);
  content: "";
}

.sc-section-desc {
  margin: 12px 0 0;
  color: var(--sc-text-muted);
}

.sc-guide-grid,
.sc-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sc-guide-card {
  overflow: hidden;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  background: var(--sc-surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sc-guide-card:hover {
  border-color: var(--sc-channel-accent);
  transform: translateY(-2px);
}

.sc-guide-card a {
  color: inherit;
  text-decoration: none;
}

.sc-guide-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sc-guide-body {
  padding: 20px;
}

.sc-guide-label {
  margin: 0 0 8px;
  color: var(--sc-text-subtle);
  font-size: 12px;
  font-weight: 700;
}

.sc-latest-grid article {
  min-width: 0;
}

.sc-channel-page .sc-latest-grid > article {
  overflow: hidden;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  background: var(--sc-surface-muted);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.sc-channel-page .sc-latest-grid > article:hover {
  border-color: var(--sc-channel-accent);
  background: var(--sc-channel-soft);
  transform: translateY(-2px);
}

.sc-channel-page .sc-latest-grid figure {
  border-radius: 0;
}

.sc-channel-page .sc-latest-grid time {
  color: var(--sc-text-subtle);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .sc-hero-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  .sc-home-hero {
    padding: 26px 0 32px;
  }

  .sc-hero-grid {
    gap: 24px;
  }

  .sc-hero-title {
    font-size: 36px;
  }

  .sc-hero-lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.75;
  }

  .sc-actions {
    margin-top: 20px;
  }

  .sc-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sc-game-grid,
  .sc-guide-grid,
  .sc-latest-grid {
    grid-template-columns: 1fr;
  }

  .sc-game-grid {
    gap: 10px;
  }

  .sc-game-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    min-height: 0;
    padding: 12px 14px;
  }

  .sc-game-icon {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 7px;
  }

  .sc-game-card h2 {
    grid-column: 2;
    font-size: 17px;
    line-height: 1.3;
  }

  .sc-game-card p {
    grid-column: 2;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (max-width: 360px) {
  .sc-actions {
    gap: 8px;
  }

  .sc-button {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Shared editorial channel layout. */
.sc-channel-editorial {
  --sc-channel-rule: color-mix(in srgb, var(--sc-channel-accent) 34%, var(--sc-border));
}

.sc-channel-editorial .sc-section {
  padding: 18px 0 26px;
  border-top: 0;
}

.sc-channel-editorial .sc-home-hero {
  padding: 36px 0 32px;
}

.sc-channel-editorial .sc-hero-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.sc-channel-editorial .sc-hero-grid > :first-child {
  grid-column: span 7;
  position: relative;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  padding-right: 32px;
}

.sc-channel-editorial .sc-hero-grid > :first-child::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--sc-channel-rule);
  content: "";
}

.sc-channel-editorial .sc-hero-title {
  max-width: 680px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 650;
}

.sc-channel-editorial .sc-hero-lead {
  max-width: 680px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.8;
}

.sc-channel-editorial .sc-actions {
  gap: 8px;
  margin-top: 22px;
}

.sc-channel-editorial .sc-button {
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
}

.sc-channel-editorial .sc-game-grid {
  grid-column: span 5;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--sc-channel-rule);
  border-bottom: 1px solid var(--sc-channel-rule);
}

.sc-channel-editorial .sc-game-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  align-content: center;
  min-height: 142px;
  padding: 18px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: background-color 0.2s ease;
}

.sc-channel-editorial .sc-game-card:nth-child(odd) {
  border-right: 1px solid var(--sc-border);
}

.sc-channel-editorial .sc-game-card:nth-child(-n + 2) {
  border-bottom: 1px solid var(--sc-border);
}

.sc-channel-editorial .sc-game-card:hover {
  border-color: var(--sc-border);
  background: var(--sc-channel-soft);
  transform: none;
}

.sc-channel-editorial .sc-game-icon {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  margin: 1px 0 0;
  padding: 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sc-channel-editorial .sc-game-card h2 {
  grid-column: 2;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 650;
}

.sc-channel-editorial .sc-game-card p {
  grid-column: 2;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.55;
}

.sc-channel-editorial .sc-section-focus,
.sc-channel-editorial .sc-section-guides {
  padding: 22px 0 26px;
}

.sc-channel-editorial .sc-section-focus .sc-section-head,
.sc-channel-editorial .sc-section-guides .sc-section-head {
  align-items: flex-start;
  margin-bottom: 24px;
}

.sc-channel-editorial .sc-section-focus .sc-section-title,
.sc-channel-editorial .sc-section-guides .sc-section-title {
  padding-bottom: 10px;
  font-size: 28px;
  font-weight: 650;
}

.sc-channel-editorial .sc-section-focus .sc-section-title::after,
.sc-channel-editorial .sc-section-guides .sc-section-title::after {
  display: block;
}

.sc-channel-editorial .sc-section-focus .sc-section-desc,
.sc-channel-editorial .sc-section-guides .sc-section-desc {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.65;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid {
  grid-template-columns: minmax(0, 7fr) minmax(330px, 5fr);
  gap: 0 28px;
  border-top: 1px solid var(--sc-channel-rule);
  border-bottom: 1px solid var(--sc-channel-rule);
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: none;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:hover {
  border-color: transparent;
  background: transparent;
  transform: none;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article > .insert-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:first-child {
  grid-row: 1 / span 4;
  position: relative;
  padding: 0 28px 0 0;
  border-right: 1px solid var(--sc-border);
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: 2px 0;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:last-child):not(:first-child) {
  border-bottom: 1px solid var(--sc-border);
}

.sc-channel-editorial .sc-section-focus figure,
.sc-channel-editorial .sc-section-focus figure img {
  border-radius: 0;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:first-child > div:last-child {
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 64px 20px 18px;
  color: #fff;
  background: linear-gradient(to bottom, transparent, rgb(0 0 0 / 78%));
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) > div:last-child {
  min-width: 0;
  padding: 0 0 0 18px;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) figure {
  aspect-ratio: 16 / 9;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sc-channel-editorial .sc-section-focus h3 {
  margin: 7px 0 0;
  font-weight: 650;
  line-height: 1.35;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:first-child h3 {
  margin-top: 4px;
  color: #fff;
  font-size: 23px;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:first-child time {
  color: rgb(255 255 255 / 82%);
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:first-child p {
  display: none;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) h3 {
  font-size: 16px;
}

.sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) p {
  display: none;
}

@media (min-width: 769px) {
  .sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.sc-channel-editorial .sc-section-guides .sc-guide-grid {
  gap: 18px;
  border-top: 0;
  border-bottom: 0;
}

.sc-channel-editorial .sc-section-guides .sc-guide-card {
  border: 1px solid var(--sc-border);
  border-radius: 4px;
  background: var(--sc-surface);
  transform: none;
}

.sc-channel-editorial .sc-section-guides .sc-guide-card + .sc-guide-card {
  border-left: 1px solid var(--sc-border);
}

.sc-channel-editorial .sc-section-guides .sc-guide-card:hover {
  border-color: var(--sc-border);
  transform: none;
}

.sc-channel-editorial .sc-section-guides .sc-guide-image {
  aspect-ratio: 16 / 10;
}

.sc-channel-editorial .sc-section-guides .sc-guide-body {
  padding: 20px 22px 24px;
}

.sc-channel-editorial .sc-section-guides .sc-guide-label {
  color: var(--sc-channel-accent);
  font-size: 12px;
  font-weight: 600;
}

.sc-channel-editorial .sc-section-guides .sc-guide-card h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 650;
}

.sc-channel-editorial .sc-section-guides .sc-guide-card p:last-child {
  margin-top: 8px;
  font-size: 14px;
}

.sc-guide-dots {
  display: none;
}

.sc-channel-editorial .sc-section-latest .sc-section-head {
  align-items: flex-end;
  margin-bottom: 22px;
}

.sc-channel-editorial .sc-section-latest .sc-latest-grid {
  gap: 26px 22px;
}

.sc-channel-editorial .sc-section-latest .sc-latest-grid > article {
  position: relative;
  overflow: visible;
  padding-bottom: 20px;
  border: 0;
  border-bottom: 1px solid var(--sc-border);
  border-radius: 0;
  background: transparent;
  transform: none;
}

.sc-channel-editorial .sc-section-latest .sc-latest-grid > article:hover {
  border-color: var(--sc-channel-accent);
  background: transparent;
  transform: none;
}

.sc-channel-editorial .sc-section-latest .sc-latest-grid > article > .insert-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.sc-channel-editorial .sc-section-latest figure {
  border-radius: 4px;
  background: var(--sc-surface-muted);
}

.sc-channel-editorial .sc-section-latest figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sc-channel-editorial .sc-section-latest article > div:last-child {
  padding: 14px 0 0;
}

.sc-channel-editorial .sc-section-latest time {
  font-size: 12px;
}

.sc-channel-editorial .sc-section-latest h3 {
  margin: 7px 0 0;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 650;
}

.sc-channel-editorial .sc-section-latest article p {
  margin-top: 8px;
  color: var(--sc-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .sc-channel-editorial .sc-hero-grid > :first-child,
  .sc-channel-editorial .sc-game-grid {
    grid-column: 1 / -1;
  }

  .sc-channel-editorial .sc-hero-grid > :first-child {
    padding-right: 0;
  }

  .sc-channel-editorial .sc-hero-grid > :first-child::after {
    display: none;
  }

  .sc-channel-editorial .sc-game-card {
    min-height: 124px;
  }

  .sc-channel-editorial .sc-section-focus .sc-latest-grid {
    grid-template-columns: minmax(0, 3fr) minmax(300px, 2fr);
  }

  .sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) {
    grid-template-columns: 84px minmax(0, 1fr);
    padding: 4px 0;
  }
}

@media (max-width: 768px) {
  .sc-channel-editorial .sc-home-hero {
    padding: 24px 0 32px;
  }

  .sc-channel-editorial .sc-hero-grid {
    gap: 24px;
  }

  .sc-channel-editorial .sc-hero-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .sc-channel-editorial .sc-hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
  }

  .sc-channel-editorial .sc-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .sc-channel-editorial .sc-actions > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .sc-channel-editorial .sc-button {
    width: 100%;
    min-height: 44px;
  }

  .sc-channel-editorial .sc-game-grid {
    grid-template-columns: 1fr;
  }

  .sc-channel-editorial .sc-game-card {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    padding: 12px 8px;
  }

  .sc-channel-editorial .sc-game-card:nth-child(odd) {
    border-right: 0;
  }

  .sc-channel-editorial .sc-game-card:nth-child(-n + 3) {
    border-bottom: 1px solid var(--sc-border);
  }

  .sc-channel-editorial .sc-game-card h2 {
    font-size: 16px;
  }

  .sc-channel-editorial .sc-game-card p {
    margin-top: 3px;
    line-height: 1.45;
  }

  .sc-channel-editorial .sc-section-focus,
  .sc-channel-editorial .sc-section-guides {
    padding: 20px 0 24px;
  }

  .sc-channel-editorial .sc-section-focus .sc-section-head,
  .sc-channel-editorial .sc-section-guides .sc-section-head {
    margin-bottom: 18px;
  }

  .sc-channel-editorial .sc-section-focus .sc-section-title,
  .sc-channel-editorial .sc-section-guides .sc-section-title {
    font-size: 24px;
  }

  .sc-channel-editorial .sc-section-focus .sc-section-desc,
  .sc-channel-editorial .sc-section-guides .sc-section-desc {
    font-size: 14px;
  }

  .sc-channel-editorial .sc-section-focus .sc-latest-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sc-channel-editorial .sc-section-focus .sc-latest-grid > article:first-child {
    grid-row: auto;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--sc-border);
  }

  .sc-channel-editorial .sc-section-focus .sc-latest-grid > article:first-child > div:last-child {
    right: 0;
    padding: 52px 14px 14px;
  }

  .sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) {
    grid-template-columns: 116px minmax(0, 1fr);
    padding: 14px 0;
  }

  .sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) figure {
    aspect-ratio: 4 / 3;
  }

  .sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) > div:last-child {
    padding-left: 14px;
  }

  .sc-channel-editorial .sc-section-focus .sc-latest-grid > article:first-child h3 {
    font-size: 19px;
  }

  .sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) h3 {
    font-size: 16px;
  }

  .sc-channel-editorial .sc-section-focus .sc-latest-grid > article:not(:first-child) p {
    display: none;
  }

  .sc-channel-editorial .sc-section-guides .sc-guide-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 14px 0 8px;
    border-bottom: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .sc-channel-editorial .sc-section-guides .sc-guide-card {
    display: block;
    box-sizing: border-box;
    flex: 0 0 calc((100% - 14px) / 2);
    padding: 0;
    border: 1px solid var(--sc-border);
    border-radius: 4px;
    background: var(--sc-surface);
    scroll-snap-align: start;
  }

  .sc-channel-editorial .sc-section-guides .sc-guide-card + .sc-guide-card {
    border: 1px solid var(--sc-border);
  }

  .sc-channel-editorial .sc-section-guides .sc-guide-image {
    aspect-ratio: 16 / 10;
  }

  .sc-channel-editorial .sc-section-guides .sc-guide-body {
    padding: 14px 14px 18px;
  }

  .sc-channel-editorial .sc-section-guides .sc-guide-card h3 {
    font-size: 17px;
  }

  .sc-channel-editorial .sc-section-guides .sc-guide-grid::-webkit-scrollbar {
    display: none;
  }

  .sc-channel-editorial .sc-guide-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
  }

  .sc-channel-editorial .sc-guide-dot {
    position: relative;
    width: 34px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .sc-channel-editorial .sc-guide-dot::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 3px;
    background: var(--sc-border-strong);
    content: "";
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, background-color 0.2s ease;
  }

  .sc-channel-editorial .sc-guide-dot.is-active::before {
    width: 26px;
    background: var(--sc-channel-accent);
  }

  .sc-channel-editorial .sc-guide-dot:focus-visible {
    outline: 2px solid var(--sc-channel-accent);
    outline-offset: -6px;
  }

  .sc-channel-editorial .sc-section-guides .sc-guide-card p:last-child {
    display: none;
  }

  .sc-channel-editorial .sc-section-latest .sc-section-head {
    align-items: flex-end;
    flex-direction: row;
    margin-bottom: 14px;
  }

  .sc-channel-editorial .sc-section-latest .sc-section-title {
    font-size: 23px;
    white-space: nowrap;
  }

  .sc-channel-editorial .sc-section-latest .sc-section-head > div {
    flex: 1 1 auto;
    min-width: 0;
  }

  .sc-channel-editorial .sc-section-latest .sc-button {
    flex: 0 0 auto;
    width: auto;
    min-height: 44px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .sc-channel-editorial .sc-section-latest .sc-latest-grid {
    gap: 0;
  }

  .sc-channel-editorial .sc-section-latest .sc-latest-grid > article {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 112px;
    padding: 14px 0;
  }

  .sc-channel-editorial .sc-section-latest figure {
    width: 112px;
    aspect-ratio: 4 / 3;
  }

  .sc-channel-editorial .sc-section-latest article > div:last-child {
    min-width: 0;
    padding: 0;
  }

  .sc-channel-editorial .sc-section-latest h3 {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .sc-channel-editorial .sc-section-latest article p {
    display: none;
  }
}
