:root {
  --bg: #f4f6f9;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text: #1e293b;
  --text-muted: #64748b;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --warning: #d97706;
  --warning-bg: #fffbeb;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 16px rgba(15, 23, 42, 0.04);
  --font: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.08), transparent),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.app {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 14px 40px;
}

@media (min-width: 640px) {
  .app {
    padding: 0 20px 48px;
  }
}

/* Hero */
.hero {
  padding: 16px 0 14px;
  animation: hero-enter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__card {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 14px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 55%, #eff6ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 16px;
  box-shadow:
    0 4px 20px rgba(37, 99, 235, 0.08),
    0 1px 3px rgba(15, 23, 42, 0.04);
}

.hero__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  animation: hero-glow 4s ease-in-out infinite;
  pointer-events: none;
}

.hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hero__logo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  background-size: 200% 200%;
  animation: hero-logo-shift 3s ease infinite;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.hero__logo-mark {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.hero__titles {
  min-width: 0;
}

.hero__eyebrow {
  margin: 0 0 2px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 40%, #3b82f6 70%, #1e40af 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-title-shine 4s linear infinite;
}

.hero__lead {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  min-height: 1.45em;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.hero__lead-text {
  display: inline-block;
  animation: hero-lead-in 0.4s ease;
}

.hero__lead-text.is-fading {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.hero__tag {
  padding: 4px 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.quota-badge {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 3px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  font-size: 0.75rem;
}

.quota-label {
  color: var(--text-muted);
  margin-right: 4px;
  font-size: 0.6875rem;
}

.quota-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.quota-sep,
.quota-limit {
  color: var(--text-muted);
  font-weight: 500;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes hero-logo-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes hero-title-shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes hero-lead-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .hero {
    padding: 20px 0 16px;
  }

  .hero__card {
    padding: 20px 22px 18px;
  }

  .hero__logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .hero__logo-mark {
    font-size: 1.5rem;
  }

  .hero__title {
    font-size: 1.625rem;
  }

  .hero__lead {
    font-size: 0.875rem;
    margin-top: 14px;
  }

  .hero__tag {
    font-size: 0.75rem;
  }

  .quota-badge {
    padding: 10px 14px;
  }

  .quota-value {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero__glow,
  .hero__logo,
  .hero__title,
  .hero__lead-text {
    animation: none !important;
  }
}

/* Header legacy — removed */

/* Daino Pick promo */
.dp-promo {
  margin-bottom: 12px;
}

.dp-promo__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  border-radius: var(--radius-sm);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: opacity 0.15s, transform 0.15s;
}

.dp-promo__link:hover {
  opacity: 0.95;
}

.dp-promo__link:active {
  transform: scale(0.99);
}

.dp-promo__badge {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: rgba(255, 255, 255, 0.18);
  white-space: nowrap;
}

.dp-promo__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dp-promo__title {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
}

.dp-promo__desc {
  font-size: 0.6875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dp-promo__action {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .dp-promo {
    margin-bottom: 16px;
  }

  .dp-promo__link {
    padding: 12px 16px;
    gap: 14px;
  }

  .dp-promo__title {
    font-size: 0.875rem;
  }

  .dp-promo__desc {
    font-size: 0.75rem;
    white-space: normal;
  }
}

/* Tabs */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.tab:hover {
  background: var(--bg);
  color: var(--text);
}

.tab.is-active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.tab-icon {
  font-size: 1rem;
}

@media (max-width: 560px) {
  .tab-text {
    display: none;
  }
  .tab {
    padding: 14px;
  }
  .tab-icon {
    font-size: 1.25rem;
  }
}

/* Panels */
.panel[hidden] {
  display: none !important;
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
}

.card-head {
  padding: 16px 14px 0;
}

.card-head--compact {
  padding: 12px 14px 8px;
}

.card-head h2,
.card-head h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
}

.card-head p {
  margin: 0 0 14px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.form {
  padding: 0 14px 16px;
}

.data-table th,
.data-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .card-head {
    padding: 24px 24px 0;
  }

  .card-head--compact {
    padding: 16px 24px 10px;
  }

  .card-head h2,
  .card-head h3 {
    font-size: 1.125rem;
  }

  .form {
    padding: 0 24px 24px;
  }

  .data-table th,
  .data-table td {
    padding: 12px 24px;
  }
}

.card-head--compact p {
  margin-bottom: 0;
}

/* Forms */
.field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
}

.field-row {
  display: flex;
  gap: 10px;
}

.field-input,
.field-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field-input:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.field-textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 16px;
}

.field-row .field-input {
  flex: 1;
}

.field-hint {
  margin: 10px 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.form-actions {
  margin-top: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, opacity 0.15s;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  background: var(--primary-hover);
}

/* Profile card — mobile-first compact */
.profile-card {
  padding: 12px 14px;
}

.blog-profile__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-profile__avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg);
}

.blog-profile__avatar--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
}

.blog-profile__info {
  flex: 1;
  min-width: 0;
}

.blog-profile__line1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.blog-profile__name {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-profile__link {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.blog-profile__sub {
  margin: 2px 0 0;
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-profile__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.blog-profile__metric {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 6px 4px;
  background: var(--surface);
  text-align: center;
  min-width: 0;
}

.blog-profile__metric-label {
  font-size: 0.625rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.blog-profile__metric-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-profile__desc {
  margin: 8px 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-head--posts h3 {
  margin: 0;
}

.posts-head-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.exposure-pills {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.summary-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
}

.summary-pill--ok {
  background: var(--success-bg);
  color: var(--success);
}

.summary-pill--no {
  background: var(--danger-bg);
  color: var(--danger);
}

.summary-pill--muted {
  background: var(--bg);
  color: var(--text-muted);
}

.card-sub {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .profile-card {
    padding: 14px 18px;
  }

  .blog-profile__avatar {
    width: 48px;
    height: 48px;
  }

  .blog-profile__name {
    font-size: 1rem;
  }

  .blog-profile__sub {
    font-size: 0.75rem;
  }

  .blog-profile__metric {
    padding: 8px 6px;
  }

  .blog-profile__metric-label {
    font-size: 0.6875rem;
  }

  .blog-profile__metric-value {
    font-size: 0.8125rem;
  }
}

/* Result area spacing */
.result-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeIn 0.25s ease;
}

.result-area .card {
  margin-bottom: 0;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  padding: 0 0 4px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .data-table {
    font-size: 0.875rem;
  }
}

.data-table th {
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  font-size: 0.8125rem;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: #fafbfc;
}

.data-table a {
  color: var(--primary);
  text-decoration: none;
}

.data-table a:hover {
  text-decoration: underline;
}

@media (max-width: 479px) {
  .data-table--posts th.col-date,
  .data-table--posts td.col-date {
    display: none;
  }

  .data-table--posts .col-title {
    width: auto;
  }

  .data-table--posts th.col-stat,
  .data-table--posts td.col-stat {
    font-size: 0.6875rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge--ok {
  background: var(--success-bg);
  color: var(--success);
}

.badge--no {
  background: var(--danger-bg);
  color: var(--danger);
}

.badge--rank {
  background: var(--primary-light);
  color: var(--primary);
}

.badge--muted {
  background: var(--bg);
  color: var(--text-muted);
}

.badge-link {
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity 0.15s, transform 0.1s;
}

.badge-link:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.badge-link:active {
  transform: translateY(0);
}

.data-table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.data-table .col-stat {
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .data-table .col-stat {
    font-size: 0.8125rem;
  }
}

/* Footer */
.footer {
  margin-top: 32px;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  background: #1e293b;
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 1000;
  max-width: 90vw;
}

.toast[hidden] {
  display: none !important;
}

.toast.is-error {
  background: var(--danger);
}

/* Loading */
body.is-loading {
  overflow: hidden;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 999;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  animation: loading-fade-in 0.2s ease;
}

.loading-overlay[hidden] {
  display: none !important;
}

.loading-card {
  width: min(100%, 300px);
  padding: 28px 22px 22px;
  text-align: center;
  background: var(--surface);
  border-radius: 20px;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  animation: loading-card-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.loading-card__visual {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
}

.loading-card__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-right-color: rgba(37, 99, 235, 0.35);
  animation: spin 1s linear infinite;
}

.loading-card__ring--delay {
  inset: 10px;
  border-top-color: #60a5fa;
  border-right-color: transparent;
  animation: spin 1.4s linear infinite reverse;
}

.loading-card__core {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  animation: loading-pulse 1.6s ease-in-out infinite;
}

.loading-card__title {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.loading-card__desc {
  margin: 0 0 14px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.loading-card__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

.loading-card__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: loading-dot 1.2s ease-in-out infinite;
}

.loading-card__dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.loading-card__dots span:nth-child(3) {
  animation-delay: 0.3s;
}

.loading-card__hint {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--text-muted);
}

@keyframes loading-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes loading-card-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loading-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes loading-dot {
  0%, 80%, 100% { transform: scale(0.65); opacity: 0.45; }
  40% { transform: scale(1); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (min-width: 640px) {
  .loading-card {
    width: min(100%, 340px);
    padding: 32px 28px 26px;
  }

  .loading-card__visual {
    width: 80px;
    height: 80px;
  }

  .loading-card__core {
    inset: 24px;
  }

  .loading-card__title {
    font-size: 1.125rem;
  }

  .loading-card__desc {
    font-size: 0.875rem;
  }

  .loading-card__hint {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loading-overlay,
  .loading-card,
  .loading-card__ring,
  .loading-card__core,
  .loading-card__dots span {
    animation: none !important;
  }
}

/* Posts table */
.data-table--posts {
  table-layout: fixed;
}

.data-table--posts .col-title {
  width: 46%;
  min-width: 0;
}

.data-table--posts .post-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  font-size: 0.8125rem;
  font-weight: 500;
  word-break: break-all;
}

.data-table--posts .col-date {
  width: 88px;
  white-space: nowrap;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.data-table--posts .col-stat {
  width: 36px;
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.data-table--posts .col-exposure {
  width: 76px;
  text-align: center;
  padding-left: 6px !important;
  padding-right: 8px !important;
}

.data-table--posts .col-exposure .badge {
  font-size: 0.6875rem;
  padding: 2px 7px;
  white-space: nowrap;
}

.data-table--posts .th-full {
  display: none;
}

@media (min-width: 640px) {
  .data-table--posts .th-short {
    display: none;
  }

  .data-table--posts .th-full {
    display: inline;
  }
}

@media (min-width: 640px) {
  .data-table--posts .col-title {
    width: 42%;
  }

  .data-table--posts .post-title {
    font-size: 0.875rem;
    -webkit-line-clamp: 2;
  }

  .data-table--posts .col-stat {
    width: 48px;
  }

  .data-table--posts .col-exposure {
    width: 88px;
  }
}
