:root {
  color-scheme: light;
  --news-bg: #f8fbff;
  --news-surface: #ffffff;
  --news-surface-soft: #f1f7ff;
  --news-border: var(--fdc-border-panel, var(--fdc-color-border, #d6e3f2));
  --news-border-strong: var(--fdc-border-panel-strong, var(--fdc-color-border-strong, #c3d4e8));
  --news-text: #0f172a;
  --news-sub: #64748b;
  --news-muted: #94a3b8;
  --news-primary: var(--fdc-shell-primary, var(--fdc-color-accent, #3b82f6));
  --news-primary-strong: var(--fdc-shell-primary, var(--fdc-color-accent, #3b82f6));
  --news-primary-soft: var(--fdc-color-accent-soft, #dbeafe);
  --news-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --news-bg: #0b1220;
  --news-surface: #111827;
  --news-surface-soft: rgba(30, 41, 59, 0.82);
  --news-border: var(--fdc-border-panel, var(--fdc-color-border, #3b4d68));
  --news-border-strong: var(--fdc-border-panel-strong, var(--fdc-color-border-strong, #4b6282));
  --news-text: #e2e8f0;
  --news-sub: #94a3b8;
  --news-muted: #94a3b8;
  --news-primary: var(--fdc-color-accent-strong, #2563eb);
  --news-primary-strong: #bfdbfe;
  --news-primary-soft: rgba(37, 99, 235, 0.22);
  --news-shadow: 0 22px 48px rgba(2, 6, 23, 0.32);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--news-bg);
  color: var(--news-text);
  padding-top: var(--fdc-header-offset, 56px);
  display: flex;
  flex-direction: column;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

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

.news-page [hidden] {
  display: none !important;
}

.news-page {
  --fdc-news-card-border: var(--news-border);
  --fdc-news-card-border-strong: var(--news-border-strong);
  --fdc-news-card-surface: var(--news-surface);
  --fdc-news-card-surface-soft: var(--news-surface-soft);
  --fdc-news-card-text: var(--news-text);
  --fdc-news-card-sub: var(--news-sub);
  --fdc-news-card-muted: var(--news-muted);
  --fdc-news-card-shadow: var(--news-shadow);
  --fdc-news-card-title-size: 0.94rem;
  --fdc-news-card-thumb-ratio: 16 / 8;
  --fdc-news-card-gap: 8px;
  --fdc-news-card-padding: 14px;
  width: min(1440px, calc(100% - 28px));
  margin: 8px auto 36px;
  flex: 1 0 auto;
  display: grid;
  gap: 0;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px minmax(180px, 220px);
  gap: 16px;
  align-items: start;
}

.news-main,
.news-sidebar,
.news-ad-rail {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.news-board-panel {
  background: var(--news-surface);
  border: 1px solid var(--news-border-strong);
  border-radius: 18px;
  box-shadow: var(--news-shadow);
  overflow: visible;
  position: relative;
  z-index: 2;
}

.news-board-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--news-border);
  background: var(--news-surface);
}

.news-board-toolbar-primary,
.news-board-toolbar-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.news-board-toolbar-primary {
  flex: 1 1 auto;
  flex-wrap: wrap;
}

.news-board-toolbar-secondary {
  flex: 0 0 auto;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.news-search-wrap {
  min-width: 0;
  width: 156px;
}

.news-search-wrap.fdc-search-shell {
  flex: 0 0 156px;
  width: 156px;
  max-width: 156px;
}

.news-search-wrap input {
  border-color: var(--news-border-strong);
  background: var(--news-surface);
  color: var(--news-text);
}

.news-category-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.news-category-strip::-webkit-scrollbar {
  display: none;
}

.news-category-chip {
  min-height: 34px;
  padding: 0 11px;
  border-radius: 10px;
  border: 1px solid var(--news-border);
  background: var(--news-surface);
  color: var(--news-sub);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.news-category-chip.is-active {
  background: var(--news-primary);
  border-color: var(--news-primary);
  color: #FFFFFF;
}

.news-load-more-button,
.news-empty-action,
.news-error-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--news-sub);
  font: inherit;
  font-size: 0.83rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition:
    color 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease,
  transform 140ms ease;
}

.news-filter-trigger:focus-visible,
.news-search-wrap input:focus-visible,
.news-load-more-button:focus-visible,
.news-empty-action:focus-visible,
.news-error-action:focus-visible,
.news-row-link:focus-visible,
.news-side-link:focus-visible {
  outline: 2px solid var(--news-primary);
  outline-offset: 2px;
}

.news-sort-dropdown {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.news-select-wrap--sort {
  --fdc-sort-direction-width: 0px;
  --fdc-sort-caret-width: 12px;
  --fdc-sort-trigger-column-gap: 10px;
  --fdc-sort-trigger-padding-x: 10px;
}

#newsSortDropdown .news-sort-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  z-index: 40;
  width: max-content;
  min-width: 0;
  max-width: min(320px, calc(100vw - 20px));
}

.news-sort-panel[hidden] {
  display: none !important;
}

.news-select-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.news-filter-trigger {
  width: auto;
  max-width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--news-border-strong);
  border-radius: 10px;
  background: var(--news-surface);
  color: var(--news-text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease,
    background-color 140ms ease,
    color 140ms ease;
}

#newsGameFilterDropdown .news-filter-trigger {
  width: 100%;
}

.news-filter-trigger--sort {
  min-width: 0;
}

.news-select-wrap--sort .toolbar-sort-button {
  min-width: 82px;
}

.news-filter-trigger-label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-filter-trigger-caret {
  color: var(--fdc-dropdown-caret-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
  transition: color 140ms ease, transform 140ms ease;
}

#newsGameFilterDropdown .news-filter-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: max-content;
  min-width: 0;
  max-width: min(360px, calc(100vw - 20px));
  max-height: 320px;
}

.news-select-dropdown.is-open .news-filter-trigger {
  border-color: var(--news-border-strong);
  background: var(--news-surface);
  color: var(--news-text);
}

.news-select-dropdown.is-open .news-filter-trigger-caret {
  color: var(--fdc-dropdown-caret-active-color);
  transform: rotate(180deg);
}

.news-sort-dropdown.is-open .news-filter-trigger {
  border-color: var(--news-border-strong);
  background: var(--news-surface);
  color: var(--news-text);
}

.news-sort-dropdown.is-open .news-filter-trigger-caret {
  color: var(--fdc-dropdown-caret-active-color);
  transform: rotate(180deg);
}

.news-select-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: var(--fdc-dropdown-caret-color);
  pointer-events: none;
  font-size: 18px;
}

.news-filter-trigger:hover {
  border-color: var(--news-primary);
  background: var(--news-surface-soft);
  color: var(--news-primary-strong);
}

.news-feed-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
}

.news-feed-list > .fdc-shared-ad-slot--feed-inline,
.news-feed-list > .news-empty-card,
.news-feed-list > .news-error-card,
.news-feed-list > .fdc-status-card,
.news-feed-list > .fdc-loading-stack {
  grid-column: 1 / -1;
}

.news-row {
  min-width: 0;
  align-self: start;
}

.news-row-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--news-border);
  border-radius: 14px;
  background: var(--news-surface);
  color: inherit;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.news-row-link:hover {
  transform: translateY(-2px);
  border-color: var(--news-border-strong);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.news-row-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--news-surface-soft);
}

.news-row-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.news-row-link:hover .news-row-thumb {
  transform: scale(1.03);
}

.news-row-copy {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
}

.news-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.news-row-title {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--news-text);
  word-break: break-word;
}

.news-row-link:hover .news-row-title,
.news-side-link:hover strong {
  color: var(--news-text);
}

.news-row-meta,
.news-side-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--news-sub);
  font-size: 0.8rem;
  font-weight: 700;
}

.news-row-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  min-width: 0;
  color: var(--news-sub);
  font-size: 0.78rem;
  font-weight: 700;
}

.news-row-meta-left,
.news-row-meta-right {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.news-row-meta-left {
  flex: 1 1 auto;
  flex-wrap: wrap;
}

.news-row-meta-right {
  flex: 0 0 auto;
  justify-content: flex-end;
  white-space: nowrap;
}

.news-row-stat,
.news-side-stat {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--news-sub);
}

.news-row-stat .material-symbols-outlined,
.news-side-stat .material-symbols-outlined {
  font-size: 0.92rem;
  color: var(--news-muted);
}

.news-meta-dot {
  color: var(--news-muted);
}

.news-row-arrow {
  color: var(--news-muted);
  font-size: 1rem;
  font-weight: 800;
  display: none;
}

.news-load-more-area {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 18px 22px;
  border-top: 1px solid var(--news-border);
}

.news-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  width: 100%;
}

.news-page-number,
.news-page-nav {
  min-width: 30px;
  height: 30px;
  padding: 0 6px;
  border: 0;
  background: transparent;
  color: var(--news-muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  transition: color 140ms ease, background-color 140ms ease;
}

.news-page-number.is-active {
  color: var(--news-primary);
}

:root[data-theme='dark'] .news-page-number.is-active {
  color: #93c5fd;
}

.news-load-more-button {
  min-width: 148px;
  gap: 4px;
  border: 1px solid var(--news-border);
  background: var(--news-surface-soft);
}

.news-load-more-button .material-symbols-outlined {
  font-size: 1rem;
}

.news-load-more-sentinel {
  width: 100%;
  height: 1px;
}

.news-loading-indicator {
  width: 100%;
}

.news-loading-indicator > .fdc-loading-stack {
  margin-top: 4px;
}

.news-side-list {
  display: grid;
}

.news-side-list > :is(.fdc-loading-stack, .fdc-inline-state) {
  margin: 0 18px 18px;
}

.news-rail-card {
  background: var(--news-surface);
  border: 1px solid var(--news-border-strong);
  border-radius: 18px;
  box-shadow: var(--news-shadow);
  overflow: hidden;
  display: grid;
}

.news-rail-loading {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 18px;
}

.news-rail-section + .news-rail-section {
  border-top: 1px solid var(--news-border);
}

#newsSidebarAd {
  position: sticky;
  top: calc(var(--fdc-header-offset, 56px) + 16px);
}

.news-rail-head {
  padding: 16px 18px 10px;
}

.news-rail-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--news-primary-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-rail-title .material-symbols-outlined {
  font-size: 1rem;
  color: var(--news-sub);
}

.news-side-item {
  padding: 14px 18px;
  border-top: 1px solid var(--news-border);
}

.news-side-list .news-side-item:first-child {
  border-top: 0;
}

.news-side-link {
  color: inherit;
  text-decoration: none;
  display: grid;
  gap: 6px;
}

.news-side-rank-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.news-side-rank {
  min-width: 18px;
  color: var(--news-muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
}

.news-side-link strong {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--news-text);
  word-break: keep-all;
}

.news-side-meta-row {
  display: grid;
  gap: 4px;
  color: var(--news-sub);
  font-size: 0.74rem;
  font-weight: 700;
}

.news-side-meta-left,
.news-side-meta-right {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
}

.news-side-meta-right {
  color: var(--news-muted);
}

.news-empty-card,
.news-error-card {
  min-height: 240px;
  padding: 28px 22px;
  display: grid;
  place-items: center;
  text-align: center;
}

.news-empty-content,
.news-error-content {
  display: grid;
  gap: 10px;
  justify-items: center;
  max-width: 420px;
}

.news-empty-content strong,
.news-error-content strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.news-empty-content p,
.news-error-content p,
.news-side-empty p {
  margin: 0;
  color: var(--news-sub);
  font-size: 0.9rem;
  line-height: 1.6;
}

.news-side-empty {
  padding: 18px;
}

.news-calendar-list {
  gap: 10px;
  padding: 0 18px 18px;
}

.news-calendar-list .news-side-empty {
  padding: 0;
}

.news-calendar-item,
.news-calendar-link {
  display: grid;
  grid-template-columns: 4px 56px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.news-calendar-link {
  padding: 14px 16px;
  border: 1px solid var(--news-border);
  border-radius: 10px;
  background: var(--news-surface);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.news-calendar-link:hover {
  border-color: var(--news-primary);
  background: var(--news-surface-soft);
}

.news-calendar-accent {
  min-height: 100%;
  border-radius: 999px;
  background: var(--news-primary);
}

.news-calendar-meta {
  display: grid;
  align-items: center;
  gap: 2px;
  min-height: 64px;
  padding: 6px 2px;
  border-radius: 8px;
  background: var(--news-surface-soft);
  text-align: center;
}

.news-calendar-date {
  color: var(--news-text);
  font-size: 1.02rem;
  line-height: 1.1;
  font-weight: 900;
}

.news-calendar-date-sub {
  color: var(--news-sub);
  font-size: 0.68rem;
  line-height: 1.1;
  font-weight: 700;
}

.news-calendar-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.news-calendar-game {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-calendar-title {
  display: -webkit-box;
  color: var(--news-text);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 700;
  word-break: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-calendar-location {
  min-width: 0;
  color: var(--news-sub);
  font-size: 0.76rem;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-skeleton-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
}

.news-skeleton-row {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--news-border);
  border-radius: 14px;
  background: var(--news-surface);
}

.news-skeleton-arrow,
.news-skeleton-line,
.news-skeleton-box,
.news-skeleton-side-row {
  position: relative;
  overflow: hidden;
  background: var(--news-surface-soft);
}

.news-skeleton-arrow,
.news-skeleton-line,
.news-skeleton-box,
.news-skeleton-side-row {
  border-radius: 999px;
}

.news-skeleton-arrow::after,
.news-skeleton-line::after,
.news-skeleton-box::after,
.news-skeleton-side-row::after {
  position: absolute;
  inset: 0;
  content: '';
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: news-skeleton-shimmer 1300ms infinite;
}

.news-skeleton-copy {
  display: grid;
  gap: 8px;
}

.news-skeleton-chip-row {
  display: flex;
  gap: 8px;
}

.news-skeleton-chip {
  width: 88px;
  height: 22px;
}

.news-skeleton-chip.is-short {
  width: 66px;
}

.news-skeleton-line-title {
  height: 16px;
  width: 92%;
}

.news-skeleton-line-title.is-short {
  width: 68%;
}

.news-skeleton-line-meta {
  width: 42%;
  height: 12px;
}

.news-skeleton-meta-row,
.news-skeleton-meta-left,
.news-skeleton-meta-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-skeleton-meta-row {
  justify-content: space-between;
}

.news-skeleton-meta-left {
  flex: 1 1 auto;
}

.news-skeleton-meta-right {
  flex: 0 0 auto;
}

.news-skeleton-arrow {
  display: none;
}

.news-sidebar-skeleton,
.news-side-skeleton-group {
  display: grid;
}

.news-side-skeleton-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  padding: 14px 18px;
  align-items: start;
}

.news-side-skeleton-row + .news-side-skeleton-row {
  border-top: 1px solid var(--news-border);
}

.news-side-skeleton-rank,
.news-side-skeleton-title,
.news-side-skeleton-meta {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: var(--news-surface-soft);
}

.news-side-skeleton-rank::after,
.news-side-skeleton-title::after,
.news-side-skeleton-meta::after {
  position: absolute;
  inset: 0;
  content: '';
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: news-skeleton-shimmer 1300ms infinite;
}

.news-side-skeleton-rank {
  width: 14px;
  height: 12px;
  margin-top: 2px;
}

.news-side-skeleton-copy {
  display: grid;
  gap: 8px;
}

.news-side-skeleton-title {
  width: 100%;
  height: 14px;
}

.news-side-skeleton-meta {
  width: 72%;
  height: 11px;
}

@keyframes news-skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1280px) {
  .news-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .news-ad-rail {
    grid-column: 2;
  }

  #newsSidebarAd {
    position: static;
  }
}

@media (max-width: 960px) {
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar,
  .news-ad-rail {
    grid-template-columns: 1fr;
  }

  .news-feed-list,
  .news-skeleton-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-rail-loading {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .news-page {
    width: calc(100% - 16px);
    margin-top: 6px;
    gap: 0;
  }

  .news-board-toolbar,
  .news-row-link,
  .news-load-more-area,
  .news-rail-head,
  .news-side-item,
  .news-skeleton-row,
  .news-calendar-list {
    padding-left: 16px;
    padding-right: 16px;
  }

  .news-sidebar,
  .news-ad-rail {
    grid-template-columns: 1fr;
  }

  .news-board-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-board-toolbar-primary,
  .news-board-toolbar-secondary {
    width: 100%;
    flex-wrap: wrap;
  }

  .news-select-wrap,
  .news-search-wrap,
  .news-search-wrap input {
    width: 100%;
  }

  .news-filter-trigger {
    width: 100%;
    max-width: none;
  }

  .news-filter-menu {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
  }

  .news-feed-list,
  .news-skeleton-group {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .news-calendar-list {
    padding-bottom: 16px;
  }

  .news-row-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-row-meta-right {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .news-category-chip,
  .news-load-more-button {
    min-height: 34px;
    font-size: 0.8rem;
  }

  .news-row-title,
  .news-side-link strong {
    font-size: 0.95rem;
  }
}
