/* ═══════════════════════════════════════════════════════════════
   SEOlyser – analyse.css  (Analyse-Ergebnisseite)
   ═══════════════════════════════════════════════════════════════ */

/* ── Analyse-Hero ────────────────────────────────────────────── */
.analyse-hero {
  background: var(--navy-900);
  padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.analyse-title {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
}
.analyse-title svg { opacity:.7; flex-shrink:0; color:rgba(255,255,255,.7); }
.analyse-subtitle {
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  font-size: 0.95rem;
}

/* ── Input Section ───────────────────────────────────────────── */
.analyse-form-section {
  background: var(--navy-900);
  padding: 0 0 40px;
}

.analyse-input-card { max-width: 860px; }

.url-input-wrap--large {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 8px 8px 8px 18px;
}
.url-input-wrap--large input {
  color: #fff;
  font-size: 1.05rem;
  background:none;
  border:none;
  outline:none;
}
.url-input-wrap--large input::placeholder { color:rgba(255,255,255,.35); }
.url-input-wrap--large:focus-within {
  border-color: rgba(99,179,237,.6);
  box-shadow: 0 0 0 3px rgba(59,130,246,.2);
}

/* ── Loading ─────────────────────────────────────────────────── */
.loading-section { padding: 80px 0; background: var(--gray-50); }
.loading-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
  box-shadow: var(--shadow-md);
}

.loading-spinner {
  width: 56px; height: 56px;
  margin: 0 auto 28px;
  color: var(--accent);
}
.loading-spinner svg {
  width:100%; height:100%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.loading-step {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--gray-400);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.loading-step.active {
  color: var(--accent);
  background: var(--blue-50);
  font-weight: 600;
}
.loading-step.done {
  color: var(--green-600);
}

.loading-url {
  font-size: 0.83rem;
  color: var(--gray-400);
  word-break: break-all;
  font-family: monospace;
  margin-top: 8px;
}

/* ── Result Meta Banner ──────────────────────────────────────── */
.result-meta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.meta-url {
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--accent);
  word-break: break-all;
  flex: 1;
  min-width: 200px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.meta-chip--ok   { background:#dcfce7; color:#166534; }
.meta-chip--warn { background:#fef9c3; color:#854d0e; }
.meta-chip--bad  { background:#fee2e2; color:#991b1b; }
.meta-chip--info { background:var(--blue-50); color:#1d4ed8; }

.meta-time { font-size:0.83rem; color:var(--gray-400); font-family:var(--font-head); }

/* ── Score Overview ──────────────────────────────────────────── */
.results-section { padding: 40px 0 96px; background: var(--gray-50); }

.score-overview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.score-section-title {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 36px;
}

.score-circles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.score-circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
}

.score-circle-wrap.overall .score-ring { width:110px; height:110px; }
.score-circle-wrap.overall .score-val  { font-size: 1.6rem; }

.score-ring {
  width: 80px; height: 80px;
  position: relative;
  flex-shrink: 0;
}

.score-ring svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}

.score-ring .ring-bg { stroke: var(--gray-100); }
.score-ring .ring-fill { transition: stroke-dashoffset 1.2s cubic-bezier(0.4,0,0.2,1); }
.ring-fill--good   { stroke: #22c55e; }
.ring-fill--warn   { stroke: #f59e0b; }
.ring-fill--bad    { stroke: #ef4444; }

.score-val-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.score-val {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
}
.score-val small { font-size:0.6em; font-weight:600; }

.score-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-align: center;
}

.overall .score-label {
  font-size: 0.95rem;
  color: var(--gray-700);
}

/* ── Module Accordion ────────────────────────────────────────── */
.modules-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.module-card:hover { box-shadow: var(--shadow-md); }

.module-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.module-header:hover { background: var(--gray-50); }

.module-icon-wrap {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.module-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.module-title svg { color:var(--gray-400); }

.module-score-badge {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.badge--good  { background:#dcfce7; color:#166534; }
.badge--warn  { background:#fef9c3; color:#854d0e; }
.badge--bad   { background:#fee2e2; color:#991b1b; }

.module-chevron {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform var(--transition);
}
.module-card.open .module-chevron { transform: rotate(180deg); }

.module-body {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
}
.module-card.open .module-body { display: block; }

.checks-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.check-row:last-child { border-bottom: none; }

.check-status-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}
.icon--ok   { background:#dcfce7; color:#166534; }
.icon--warn { background:#fef9c3; color:#92400e; }
.icon--error{ background:#fee2e2; color:#991b1b; }
.icon--info { background:var(--blue-50); color:#1d4ed8; }

.check-content { flex: 1; min-width:0; }
.check-label {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 2px;
}
.check-info {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  word-break: break-word;
}

/* ── Keywords Card ───────────────────────────────────────────── */
.keywords-card, .og-preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.keywords-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.kw-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
}
.kw-count {
  background: var(--gray-200);
  color: var(--gray-600);
  border-radius: var(--radius-full);
  padding: 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── OG Preview ──────────────────────────────────────────────── */
.og-preview-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 16px;
  max-width: 500px;
}
.og-preview-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--gray-100);
}
.og-preview-meta {
  padding: 12px 16px;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
}
.og-preview-domain {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-head);
  margin-bottom: 4px;
}
.og-preview-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.og-preview-desc {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Crawler Section ─────────────────────────────────────────── */
.crawler-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}


.progress-bar-wrap {
  height: 6px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  overflow: hidden;
  flex: 1;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-500));
  border-radius: var(--radius-full);
  transition: width .4s ease;
}
.crawler-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 12px 0;
}
.progress-label {
  font-family: var(--font-head);
  font-size: 0.83rem;
  color: var(--gray-500);
  flex-shrink: 0;
  min-width: 60px;
  text-align: right;
}

/* ── Crawler Table ───────────────────────────────────────────── */
.crawler-results-wrap { overflow-x: auto; }

.crawler-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.crawler-table thead th {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.crawler-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
  cursor: pointer;
}
.crawler-table tbody tr:hover { background: var(--gray-50); }
.crawler-table tbody tr:last-child { border-bottom: none; }
.crawler-table td {
  padding: 10px 12px;
  vertical-align: middle;
  color: var(--gray-700);
}

.ampel {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ampel--good  { background: var(--green-500); }
.ampel--warn  { background: var(--yellow-400); }
.ampel--bad   { background: var(--orange-500); }
.ampel--error { background: var(--red-500); }

.td-url {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--accent);
}
.td-title, .td-desc {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.td-score {
  font-family: var(--font-head);
  font-weight: 700;
}
.td-score.score--good  { color: var(--green-600); }
.td-score.score--warn  { color: var(--yellow-500); }
.td-score.score--bad   { color: var(--red-500); }

.badge-index-ok  { background:#dcfce7; color:#166534; padding:2px 8px; border-radius:var(--radius-full); font-family:var(--font-head); font-size:0.75rem; font-weight:600; }
.badge-noindex   { background:#fee2e2; color:#991b1b; padding:2px 8px; border-radius:var(--radius-full); font-family:var(--font-head); font-size:0.75rem; font-weight:600; }

.btn-detail {
  padding: 4px 10px;
  font-size: 0.78rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-detail:hover { border-color:var(--accent); color:var(--accent); background:var(--blue-50); }

/* ── Detail Overlay ──────────────────────────────────────────── */
.detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.6);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}
.detail-panel {
  background: var(--surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 720px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  animation: slideUp .3s ease;
}
@keyframes slideUp {
  from { transform:translateY(40px); opacity:0; }
  to   { transform:translateY(0); opacity:1; }
}
.detail-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600);
  transition: background var(--transition);
}
.detail-close:hover { background: var(--gray-200); }

/* ── Error Card ──────────────────────────────────────────────── */
.error-section { padding: 80px 0; background: var(--gray-50); }
.error-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}
.error-icon { font-size:3rem; margin-bottom:16px; }
.error-card h3 { margin-bottom:12px; }
.error-card p  { font-size:0.95rem; margin-bottom:24px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 700px) {
  .score-circles { gap: 20px; }
  .score-ring { width:64px; height:64px; }
  .score-val  { font-size:0.95rem; }
  .score-circle-wrap.overall .score-ring { width:90px; height:90px; }
  .score-circle-wrap.overall .score-val  { font-size:1.3rem; }
  .module-body { padding: 0 16px 16px; }
  .crawler-table td { padding: 8px; }
}

/* ── Neue Elemente v2 ────────────────────────────────────────── */

/* Reset/CSV-Button im Results-Bereich */
#reset-analyse-btn {
  margin: 0 auto 24px;
  display: flex;
}

/* Module-Header ist jetzt ein <button> statt <div> */
.module-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}
.module-header:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}

/* Module-Body hidden-Attribut respektieren */
.module-body[hidden] { display: none !important; }

/* Fortschrittsbalken ARIA */
.crawler-progress [role="progressbar"] {
  display: contents;
}

/* URL-Input auf weißem Hintergrund (analyse-form-section) */
.analyse-form-section .url-input-wrap--large {
  background: rgba(255,255,255,.1);
}

/* Wenn Analyse-Seite keinen dunklen Hintergrund hat, Input lesbar machen */
.url-input-wrap--light {
  background: var(--surface);
  border-color: var(--border-strong);
}
.url-input-wrap--light input {
  color: var(--gray-900) !important;
}
.url-input-wrap--light input::placeholder { color: var(--gray-400) !important; }
.url-input-wrap--light .url-icon { color: var(--gray-400); }

/* Check-Row hover */
.check-row:hover {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  margin-inline: -8px;
  padding-inline: 8px;
}

/* Crawl CSV-Button */
#crawl-csv-btn { margin-top: 12px; }

/* Detail-Panel scrollbar styling */
.detail-panel {
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}
.detail-panel::-webkit-scrollbar { width: 6px; }
.detail-panel::-webkit-scrollbar-track { background: transparent; }
.detail-panel::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 3px; }

/* Focus-Trap: Detail-Panel close-Button */
.detail-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Ampel-Legende unter Crawler-Tabelle */
.ampel-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: .8rem;
  color: var(--gray-500);
}
.ampel-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Progress-Bar ARIA-Attribute */
.progress-bar-wrap { position: relative; }

/* Robustere meta-url overflow */
.meta-url {
  min-width: 0;
  max-width: 340px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Score-Circles: overflow auf kleinen Screens */
@media (max-width: 480px) {
  .score-circles { gap: 12px; }
  .score-ring { width: 58px !important; height: 58px !important; }
  .score-val  { font-size: .85rem !important; }
  .score-circle-wrap.overall .score-ring { width: 80px !important; height: 80px !important; }
  .score-circle-wrap.overall .score-val  { font-size: 1.1rem !important; }
}

/* ── Crawler Hero (Gradient-Design) ─────────────────────────── */
.crawler-section {
  background: var(--surface);
  border: none !important;
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.crawler-hero {
  background: linear-gradient(135deg, #4A34FF 0%, #E703FF 100%);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.crawler-hero-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.crawler-hero-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.crawler-hero-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.crawler-hero-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
  margin: 0;
}

.crawler-hero-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Seiten-Picker */
.crawler-limit-picker {
  display: flex;
  align-items: center;
  gap: 6px;
}

.crawler-limit-label {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
}

.crawler-limit-btn {
  cursor: pointer;
  position: relative;
}
.crawler-limit-btn input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.crawler-limit-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  padding: 0 12px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: all var(--transition);
  cursor: pointer;
}
.crawler-limit-btn:hover span {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.crawler-limit-btn input:checked + span,
.crawler-limit-btn.active span {
  background: rgba(255,255,255,.95);
  border-color: #fff;
  color: #4A34FF;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.crawler-limit-btn input:focus-visible + span {
  outline: 2px solid rgba(255,255,255,.9);
  outline-offset: 2px;
}

/* Crawler Start-Button */
.btn-crawler {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  background: #fff;
  color: #4A34FF;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.btn-crawler:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transform: translateY(-1px);
}
.btn-crawler:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* Progress + Ergebnisse innerhalb crawler-section */
.crawler-section .crawler-progress {
  padding: 16px 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 0;
}
.crawler-section .crawler-results-wrap {
  padding: 0 0 8px;
  background: var(--surface);
}
.crawler-section .ampel-legend {
  padding: 0 24px 16px;
}

/* Banner unter Crawler-Box */
.ad-banner-wrap {
  margin-top: 40px;
  text-align: center;
}
.ad-banner-wrap a {
  display: inline-block;
  line-height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: opacity var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.ad-banner-wrap a:hover {
  opacity: .92;
  box-shadow: var(--shadow-md);
}
.ad-banner-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Crawler-Hero */
@media (max-width: 700px) {
  .crawler-hero { padding: 20px; flex-direction: column; }
  .crawler-hero-right { width: 100%; justify-content: space-between; }
  .btn-crawler { flex: 1; justify-content: center; }
}
@media (max-width: 480px) {
  .crawler-hero-right { flex-direction: column; align-items: stretch; }
  .crawler-limit-picker { justify-content: center; }
}
