/* Chinese Proverb Dictionary — RT-CHN-098 (諺語俗語大全)
   Widget styling. Warm amber/brown theme (accent #B45309). The form shell +
   ad/section styling come from the platform tool layout; this file scopes the
   pv-* dictionary components. Loaded automatically by show.blade.php. */

.pv-wrap { display: flex; flex-direction: column; gap: 14px; }

.pv-note {
  padding: 10px 14px; background: #FEF3C7; border-left: 3px solid #B45309;
  border-radius: 0 6px 6px 0; font-size: 12.5px; color: #92400e; line-height: 1.55;
}

/* Search box */
.pv-search-box { position: relative; }
.pv-search-box input {
  width: 100%; padding: 12px 14px 12px 40px; font-size: 15px;
  border: 1px solid var(--rt-hairline); border-radius: 8px; background: #fff;
}
.pv-search-box input:focus {
  outline: none; border-color: #B45309; box-shadow: 0 0 0 3px rgba(180,83,9,.12);
}
.pv-search-box::before {
  content: '🔍'; position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  font-size: 14px; opacity: .55; pointer-events: none;
}

/* Proverb of the day */
.pv-daily {
  padding: 16px 18px; background: var(--rt-result-bg); color: var(--rt-result-ink);
  border: 1px solid rgba(180,83,9,.28); border-radius: 10px; text-align: center;
}
.pv-daily-lbl {
  font-family: var(--rt-font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .06em; font-weight: 700; color: var(--rt-result-muted); margin-bottom: 8px;
}
.pv-daily-proverb { font-family: var(--rt-font-sans); font-size: 20px; font-weight: 700; line-height: 1.45; color: var(--rt-result-ink); margin-bottom: 6px; }
.pv-daily-meaning { font-size: 13.5px; color: var(--rt-result-muted); line-height: 1.6; }
.pv-daily-tag {
  display: inline-block; margin-top: 10px; padding: 3px 12px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600; background: rgba(254,243,199,.2);
  color: #FEF3C7; border: 1px solid rgba(254,243,199,.35);
}

/* Category filters */
.pv-browse-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.pv-browse-lbl { font-family: var(--rt-font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; color: var(--rt-ink-muted); }
.pv-count { font-family: var(--rt-font-mono); font-size: 12px; color: var(--rt-ink-muted); font-variant-numeric: tabular-nums; }

.pv-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.pv-filter {
  padding: 5px 13px; border-radius: 999px; font-size: 12.5px; cursor: pointer;
  border: 1px solid rgba(180,83,9,.3); background: #fff; color: #92400e; font-weight: 500;
  transition: background 120ms ease, color 120ms ease;
}
.pv-filter:hover { background: #FEF3C7; }
.pv-filter.is-active { background: #B45309; color: #fff; border-color: #92400e; }

/* Proverb list / cards */
.pv-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 720px) { .pv-list { grid-template-columns: 1fr; } }

.pv-card {
  padding: 14px 16px; background: #fff; border: 1px solid var(--rt-hairline);
  border-left: 4px solid #B45309; border-radius: 8px; transition: box-shadow 140ms ease;
}
.pv-card:hover { box-shadow: 0 2px 12px rgba(180,83,9,.1); }
.pv-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.pv-card-proverb { font-family: var(--rt-font-sans); font-size: 17px; font-weight: 700; line-height: 1.5; color: var(--rt-ink); }
.pv-card-tag {
  flex-shrink: 0; padding: 2px 9px; border-radius: 999px; font-size: 11px; font-weight: 600;
  background: #FEF3C7; color: #92400e; white-space: nowrap; margin-top: 2px;
}
.pv-card-body { display: flex; flex-direction: column; gap: 6px; }
.pv-card-meaning, .pv-card-usage, .pv-card-gloss { font-size: 13.5px; line-height: 1.6; color: var(--rt-ink); }
.pv-card-gloss { color: var(--rt-ink-muted); font-size: 13px; }
.pv-card-usage { color: var(--rt-ink-muted); }
.pv-card-lbl {
  display: inline-block; margin-right: 6px; font-family: var(--rt-font-mono);
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700;
  color: #B45309;
}

.pv-empty { padding: 24px 16px; text-align: center; color: var(--rt-ink-muted); font-style: italic; grid-column: 1 / -1; }
