/* ===== Базовые стили — белый фон ===== */
:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-muted: #f1f5f9;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #dbeafe;
  --green: #059669;
  --green-bg: #ecfdf5;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --red: #dc2626;
  --red-bg: #fef2f2;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Onest", system-ui, sans-serif;
  --font-display: "Literata", Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.08);
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--white);
  color: var(--text-secondary);
}

.loader[hidden] { display: none; }

.loader__ring {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.error-banner {
  background: var(--red-bg);
  color: var(--red);
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 500;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.river-switch {
  display: inline-flex;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.15rem;
  gap: 0.15rem;
}

.river-switch__btn {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-secondary);
}

.river-switch__btn--active {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo__icon { font-size: 1.75rem; }

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.logo__text small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav { display: flex; gap: 1.5rem; }

.nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover { color: var(--blue); }

@media (max-width: 640px) { .nav { display: none; } }

.hero {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 70%);
  padding: 3rem 0 2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero__grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
}

.hero__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.hero__date {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
}

.hero-verdict {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.hero-verdict--excellent { background: var(--green-bg); color: var(--green); }
.hero-verdict--good { background: var(--blue-light); color: var(--blue-dark); }
.hero-verdict--medium { background: var(--amber-bg); color: var(--amber); }
.hero-verdict--poor { background: var(--red-bg); color: var(--red); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 480px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
}

.hero-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.hero-stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
}

.hero-stat__value--small { font-size: 0.85rem; font-weight: 600; color: var(--text); }

.hero-stat__label { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }

.hero-wave {
  height: 200px;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  border-radius: var(--radius);
}

.section { padding: 3rem 0; }
.section--tight { padding: 2rem 0; }
.section--gray { background: var(--bg-soft); }

.section__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.section__subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.week-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.day-card {
  flex: 0 0 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0.75rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.day-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.day-card--today { border-color: var(--blue); background: var(--blue-light); }
.day-card--active { border-color: var(--blue-dark); box-shadow: var(--shadow-md); }
.day-card--excellent .day-card__score { color: var(--green); }
.day-card--good .day-card__score { color: var(--blue); }
.day-card--medium .day-card__score { color: var(--amber); }
.day-card--poor .day-card__score { color: var(--red); }

.day-card__name { font-size: 0.8rem; font-weight: 600; }
.day-card__score { font-size: 1.5rem; font-weight: 700; }
.day-card__temp { font-size: 0.75rem; color: var(--text-muted); }
.day-card__weather { font-size: 0.7rem; color: var(--text-secondary); }

.baro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .baro-grid { grid-template-columns: 280px 1fr; }
  .baro-chart { grid-column: 1 / -1; }
}

.baro-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.baro-svg { width: 100%; max-width: 260px; }

.baro-zone {
  display: inline-block;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.baro-zone--high { background: var(--blue-light); color: var(--blue-dark); }
.baro-zone--normal { background: var(--green-bg); color: var(--green); }
.baro-zone--low { background: var(--amber-bg); color: var(--amber); }
.baro-zone--very-low { background: var(--red-bg); color: var(--red); }

.baro-delta { font-size: 0.85rem; color: var(--text-secondary); }
.baro-advice { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }

.baro-details__pressure {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.baro-details__pressure small { font-size: 1rem; color: var(--text-muted); }
.baro-details__label { font-size: 0.85rem; color: var(--text-secondary); }
.baro-details__text { color: var(--text-secondary); margin: 0.75rem 0 1rem; }

.baro-legend { list-style: none; font-size: 0.85rem; color: var(--text-secondary); }
.baro-legend li { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; }

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--low { background: var(--red); }
.dot--norm { background: var(--green); }
.dot--high { background: var(--blue); }

#pressure-chart { width: 100%; height: 200px; display: block; }

.factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.factor-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--border);
}

.factor-card--good { border-left-color: var(--green); }
.factor-card--neutral { border-left-color: var(--amber); }
.factor-card--bad { border-left-color: var(--red); }

.factor-card__icon { font-size: 1.75rem; }
.factor-card__title { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.factor-card__value { font-size: 1.1rem; font-weight: 700; margin: 0.15rem 0; }
.factor-card__sub { font-size: 0.85rem; color: var(--text-secondary); }

.hours-list { list-style: none; display: grid; gap: 0.75rem; }

@media (min-width: 640px) { .hours-list { grid-template-columns: repeat(2, 1fr); } }

.hours-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--border);
}

.hours-item--best { border-left-color: var(--green); background: var(--green-bg); }
.hours-item--good { border-left-color: var(--blue); }
.hours-item--weak { border-left-color: var(--text-muted); opacity: 0.85; }

.hours-item__time { font-weight: 700; color: var(--blue-dark); min-width: 100px; grid-row: span 2; align-self: center; }
.hours-item__quality { font-size: 0.8rem; font-weight: 600; color: var(--green); justify-self: end; }
.hours-item__note { grid-column: 2; font-size: 0.85rem; color: var(--text-secondary); }

.fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.fish-card {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.fish-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.fish-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.fish-card__hint {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}

.fish-card__head { display: flex; justify-content: space-between; margin-bottom: 0.75rem; }
.fish-card__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.fish-card__type { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }

.fish-card__score-wrap { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.fish-card__bar { flex: 1; height: 8px; background: var(--bg-muted); border-radius: 999px; overflow: hidden; }
.fish-card__bar-fill { height: 100%; border-radius: 999px; }
.fish-card--high .fish-card__bar-fill { background: linear-gradient(90deg, #22c55e, #059669); }
.fish-card--mid .fish-card__bar-fill { background: linear-gradient(90deg, #60a5fa, #2563eb); }
.fish-card--low .fish-card__bar-fill { background: linear-gradient(90deg, #fbbf24, #d97706); }
.fish-card__score { font-weight: 700; min-width: 3rem; text-align: right; }
.fish-card__method { font-size: 0.85rem; color: var(--text-secondary); }
.fish-card__about { font-size: 0.8rem; color: var(--text-muted); margin: 0.4rem 0 0.6rem; line-height: 1.4; }

.river-badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--blue-light);
  color: var(--blue-dark);
}
.river-badge--don { background: #ecfdf5; color: #047857; }
.river-badge--volga { background: #dbeafe; color: #1d4ed8; }
.river-badge--both { background: #f1f5f9; color: #475569; }

.place-card__header { display: flex; flex-wrap: wrap; gap: 0.35rem 0.75rem; align-items: baseline; }
.place-card__header .place-card__name { flex: 1 1 100%; }

.fish-card__badge {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  background: var(--amber-bg);
  color: var(--amber);
  border-radius: 4px;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.place-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.place-card__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.place-card__district { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }

.place-card__fish { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }

.tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 999px;
}

.place-card__method, .place-card__time { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 0.5rem; }

.place-card__tip {
  font-size: 0.85rem;
  color: var(--green);
  background: var(--green-bg);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-top: 0.75rem;
}

.place-card__map-btn,
.modal-place__map-btn {
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-dark);
  background: var(--blue-light);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}

.place-card__map-btn:hover,
.modal-place__map-btn:hover {
  background: #bfdbfe;
}

/* ===== Карта ===== */
.map-wrap {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.fishing-map {
  width: 100%;
  height: 480px;
  min-height: 320px;
  z-index: 0;
}

.map-pin-wrap {
  background: none !important;
  border: none !important;
}

.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.map-pin__dot {
  width: 18px;
  height: 18px;
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.45);
}

.map-pin__label {
  margin-top: 4px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 480px;
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
  background: var(--bg-soft);
}

.map-placeholder ol {
  text-align: left;
  margin-top: 1rem;
  line-height: 1.8;
}

.map-placeholder code {
  background: var(--bg-muted);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.map-placeholder--error { color: var(--red); }

.map-key-notice {
  background: var(--amber-bg);
  color: var(--amber);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.map-balloon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.map-balloon__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
}

.map-balloon__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding-right: 1.5rem;
}

.map-balloon__district {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.25rem 0;
}

.map-balloon__fish {
  font-size: 0.85rem;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.map-balloon__tip {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ===== Модальное окно ===== */
.modal[hidden] { display: none; }

.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: min(100%, 640px);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  padding: 1.75rem;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-soft);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-secondary);
}

.modal__close:hover { background: var(--bg-muted); }

.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  padding-right: 2rem;
}

.modal__subtitle {
  margin-top: 0.35rem;
  color: var(--text-secondary);
}

.modal__methods {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal__places-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.modal__places {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-place {
  padding: 1rem;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.modal-place__name {
  font-weight: 700;
  font-size: 1rem;
}

.modal-place__district {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modal-place__method,
.modal-place__time {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.modal-place__tip {
  font-size: 0.8rem;
  color: var(--green);
  margin-top: 0.5rem;
}

.modal__empty {
  color: var(--text-muted);
  font-style: italic;
}

.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer__inner {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 640px) {
  .fishing-map,
  .map-placeholder {
    height: 360px;
  }

  .map-balloon {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .modal__dialog {
    padding: 1.25rem;
  }

  .reports-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Отчёты рыбаков ===== */
.reports-updated {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.reports-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.reports-filter {
  padding: 0.45rem 0.9rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.reports-filter:hover {
  border-color: var(--blue);
}

.reports-filter--active {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue-dark);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.report-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.report-card:hover {
  box-shadow: var(--shadow-md);
}

.report-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
}

.report-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-card__no-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 2rem;
}

.report-card__no-img small {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.report-card__source {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
}

.report-card__source--vk { color: #0077ff; }
.report-card__source--telegram { color: #0088cc; }
.report-card__source--site { color: var(--green); }

.report-card__body {
  padding: 1rem 1.15rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.report-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.report-card__source-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.report-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.report-card__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.report-card__method {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.report-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.tag--fish { background: var(--green-bg); color: var(--green); }
.tag--bait { background: var(--amber-bg); color: var(--amber); }
.tag--place { background: var(--blue-light); color: var(--blue-dark); }

.report-card__link {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.report-card__link:hover {
  text-decoration: underline;
}

.reports-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.reports-empty__hint {
  font-size: 0.85rem;
}

.reports-empty code {
  background: var(--bg-muted);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* ===== Кнопки ===== */
.btn {
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
}

.btn--primary:hover { background: #2563eb; }

.btn--secondary {
  background: var(--bg-soft);
  border-color: var(--border);
  color: var(--text);
}

.btn--secondary:hover { border-color: var(--blue); }

.reports-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.reports-refresh-indicator {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.reports-refresh-indicator::before {
  content: \"⟳\";
  margin-right: 0.45rem;
}
