:root {
  --bg-1: #070b13;
  --bg-2: #0d1422;
  --panel-top: rgba(24, 31, 47, 0.92);
  --panel-bottom: rgba(11, 15, 24, 0.96);
  --text: #e9eef8;
  --muted: #9aa8bc;
  --shadow: 0 24px 70px rgba(0,0,0,0.62);
  --radius-panel: 20px;
  --radius-chip: 12px;
  --radius-btn: 16px;
  --border-gold: rgba(255, 194, 109, 0.14);
  --green-glow: rgba(86, 237, 148, 0.34);
  --orange-1: #ff9b2f;
  --orange-2: #ff5c00;
  --result-top: rgba(24, 32, 49, 0.92);
  --result-bottom: rgba(10, 15, 24, 0.98);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 170, 75, 0.08), transparent 24%),
    radial-gradient(circle at left, rgba(66, 122, 255, 0.08), transparent 28%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1) 72%);
  color: var(--text);
  display: flex;
  justify-content: center;
  padding: 28px;
}

.page-wrap {
  width: min(1280px, 100%);
}

.top-hero {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    linear-gradient(180deg, rgba(18,26,42,0.96), rgba(10,16,28,0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 10px 30px rgba(0,0,0,0.22);
  color: #cbd7e7;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.top-badge-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7dd3fc, #8b5cf6 70%);
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.4);
  flex: 0 0 12px;
}

.hero-title {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #f3f7fd;
  text-shadow: 0 8px 26px rgba(0,0,0,0.28);
  max-width: 880px;
}

.hero-subtitle {
  margin: 12px 0 0;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.4;
  color: #b6c4d8;
  font-weight: 500;
  max-width: 720px;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 20px;
  align-items: start;
}

.panel,
.results-panel {
  width: 100%;
  border-radius: var(--radius-panel);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 38px rgba(255, 166, 71, 0.05),
    0 24px 70px rgba(0,0,0,0.62);
}

.panel {
  padding: 24px 24px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    linear-gradient(180deg, var(--panel-top), var(--panel-bottom));
}

.results-panel {
  padding: 18px 18px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    linear-gradient(180deg, var(--result-top), var(--result-bottom));
  min-height: 0;
}

.panel::before,
.results-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 187, 92, 0.05), transparent 26%),
    linear-gradient(315deg, rgba(255,255,255,0.03), transparent 30%);
  pointer-events: none;
}

.header {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  min-height: 104px;
  display: flex;
  align-items: center;
}

.engine-title-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 8px 0;
}

.gear-field {
  position: absolute;
  left: -8px;
  top: 50%;
  width: 180px;
  height: 120px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.06))
          drop-shadow(0 0 16px rgba(125,211,252,0.05));
}

.gear {
  position: absolute;
  border-radius: 50%;
}

.gear svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.gear-large {
  width: 96px;
  height: 96px;
  left: 0;
  top: 20px;
  animation: spinCW 18s linear infinite;
}

.gear-top {
  width: 68px;
  height: 68px;
  left: 74px;
  top: -4px;
  animation: spinCCW 14s linear infinite;
}

.gear-bottom {
  width: 62px;
  height: 62px;
  left: 92px;
  top: 58px;
  animation: spinCCW 13s linear infinite;
}

.sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.sparkle.s1 {
  width: 8px;
  height: 8px;
  left: 126px;
  top: 6px;
  background: radial-gradient(circle, rgba(255,255,255,0.98) 0 16%, rgba(255,215,140,0.95) 38%, rgba(255,215,140,0.14) 75%, transparent 100%);
  box-shadow: 0 0 10px rgba(255,215,140,0.45), 0 0 20px rgba(255,255,255,0.18);
  animation: twinkle 1.8s ease-in-out infinite;
}

.sparkle.s2 {
  width: 6px;
  height: 6px;
  left: 38px;
  top: 12px;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0 18%, rgba(125,211,252,0.95) 42%, rgba(125,211,252,0.12) 76%, transparent 100%);
  box-shadow: 0 0 10px rgba(125,211,252,0.42), 0 0 20px rgba(139,92,246,0.12);
  animation: twinkle 2.2s ease-in-out infinite 0.4s;
}

.sparkle.s3 {
  width: 5px;
  height: 5px;
  left: 148px;
  top: 84px;
  background: radial-gradient(circle, rgba(255,255,255,0.98) 0 20%, rgba(110,242,165,0.95) 44%, rgba(110,242,165,0.10) 78%, transparent 100%);
  box-shadow: 0 0 10px rgba(110,242,165,0.35);
  animation: twinkle 2s ease-in-out infinite 0.9s;
}

.engine-title-block {
  position: relative;
  z-index: 1;
  padding-left: 146px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.engine-title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background:
    linear-gradient(135deg,
      #ffffff 0%,
      #eef4ff 18%,
      #ffd38b 42%,
      #ffbe6b 56%,
      #cfe2ff 74%,
      #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(255, 190, 107, 0.10);
}

.engine-title-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.prefill-note {
  margin-top: 12px;
  display: none;
  padding: 11px 13px;
  border-radius: 14px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  background:
    linear-gradient(180deg, rgba(125, 211, 252, 0.08), rgba(125, 211, 252, 0.03)),
    linear-gradient(180deg, rgba(17, 30, 47, 0.94), rgba(10, 18, 30, 0.98));
  color: #d7e8ff;
  font-size: 13px;
  line-height: 1.45;
}

.prefill-note.show {
  display: block;
}

.section {
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.section-block {
  border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.005));
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c3cfdf;
}

.label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 187, 92, 0.28), transparent);
  transform: translateY(1px);
}

.group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    linear-gradient(180deg, rgba(38,48,72,0.92), rgba(18,24,39,0.96));
  color: #d6dfec;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  min-height: 36px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 6px 14px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 45%);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.11);
}

.btn.selected {
  color: #f4fff8;
  border-color: rgba(126, 255, 184, 0.34);
  background:
    radial-gradient(circle at 30% 30%, rgba(198,255,222,0.34), transparent 38%),
    linear-gradient(180deg, rgba(76, 224, 134, 0.22), rgba(18, 92, 46, 0.44)),
    linear-gradient(180deg, rgba(16,28,23,0.96), rgba(8,15,12,0.98));
  box-shadow:
    inset 0 1px 0 rgba(222,255,235,0.12),
    inset 0 -1px 0 rgba(8,55,24,0.56),
    0 0 16px var(--green-glow),
    0 8px 18px rgba(0,0,0,0.30);
}

.btn.utility {
  color: #c6d2e3;
}

.expand-wrap,
.custom-wrap {
  display: none;
  margin-top: 10px;
}

.expand-wrap.show,
.custom-wrap.show {
  display: block;
}

.expand-panel {
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    linear-gradient(180deg, rgba(20,27,42,0.94), rgba(10,15,24,0.98));
  border-radius: 14px;
  padding: 12px;
  margin-top: 4px;
}

.expand-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8ea0b8;
  margin-bottom: 10px;
  font-weight: 700;
}

.custom-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(23,31,48,0.92), rgba(12,18,30,0.96));
  color: #e6eef8;
  font-size: 14px;
  outline: none;
}

.custom-input::placeholder {
  color: #72819a;
}

.budget-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.budget-current {
  font-size: 18px;
  font-weight: 800;
  color: #ffd38b;
  min-width: 80px;
}

.budget-custom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.budget-custom label {
  font-size: 12px;
  color: #9aa8bc;
  font-weight: 600;
}

.budget-input {
  width: 96px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(23,31,48,0.92), rgba(12,18,30,0.96));
  color: #e6eef8;
  font-size: 14px;
  outline: none;
}

.budget-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.budget-help {
  font-size: 11px;
  color: #7f90a8;
  line-height: 1.4;
}

.cta {
  width: 100%;
  margin-top: 18px;
  padding: 14px 16px;
  min-height: 48px;
  border: none;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.24), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(255,255,255,0.16), transparent 16%),
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02) 34%, transparent 35%),
    linear-gradient(135deg, var(--orange-1), var(--orange-2) 72%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    0 0 20px rgba(255,130,40,0.34),
    0 0 38px rgba(255,130,40,0.12),
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -8px 18px rgba(180, 64, 0, 0.18),
    0 12px 28px rgba(0,0,0,0.24);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.cta:disabled {
  opacity: 0.8;
  cursor: wait;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg,
      transparent 12%,
      rgba(255,255,255,0.16) 24%,
      transparent 34%,
      transparent 62%,
      rgba(255,255,255,0.10) 72%,
      transparent 82%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.micro {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
  text-align: center;
  position: relative;
  z-index: 1;
}

.results-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.results-head-left h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #f3f7fd;
}

.results-head-left p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.results-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    linear-gradient(180deg, rgba(18,26,42,0.96), rgba(10,16,28,0.98));
  color: #cbd7e7;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.results-summary {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008));
  margin-bottom: 14px;
}

.summary-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9db0c9;
  font-weight: 700;
  margin-bottom: 8px;
}

.summary-copy {
  color: #dbe6f6;
  font-size: 14px;
  line-height: 1.55;
}

.strategy-copy {
  color: #a9b8cd;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

.results-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.result-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008)),
    linear-gradient(180deg, rgba(18,26,40,0.92), rgba(10,14,22,0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 14px 24px rgba(0,0,0,0.20);
}

.result-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.result-lane {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 800;
  color: #d7fbe6;
  border: 1px solid rgba(126, 255, 184, 0.22);
  background:
    radial-gradient(circle at 20% 20%, rgba(198,255,222,0.16), transparent 30%),
    linear-gradient(180deg, rgba(76, 224, 134, 0.14), rgba(18, 92, 46, 0.28));
}

.result-confidence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #ffd38b;
  white-space: nowrap;
}

.result-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  color: #f4f8ff;
  letter-spacing: -0.02em;
}

.result-reasons {
  margin: 0 0 12px;
  padding-left: 18px;
  color: #cfdbeb;
  font-size: 13px;
  line-height: 1.55;
}

.result-reasons li + li {
  margin-top: 6px;
}

.result-detail {
  font-size: 13px;
  line-height: 1.52;
  color: #b4c3d6;
  margin-top: 8px;
}

.result-detail strong {
  color: #e8eef8;
}

.result-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amazon-btn {
  appearance: none;
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  transition: transform 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.24), transparent 18%),
    linear-gradient(135deg, #ff9b2f, #ff5c00 72%);
  box-shadow:
    0 0 20px rgba(255,130,40,0.24),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.amazon-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.placeholder {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.005));
}

.placeholder-inner {
  max-width: 320px;
}

.placeholder-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 850;
  color: #eef4ff;
}

.placeholder-copy {
  margin: 0;
  color: #9fb0c7;
  font-size: 14px;
  line-height: 1.55;
}

.loading-wrap {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.loading-box {
  max-width: 320px;
}

.loading-gear-row {
  position: relative;
  width: 132px;
  height: 92px;
  margin: 0 auto 18px;
  opacity: 0.90;
}

.loading-gear-row .gear-large {
  width: 70px;
  height: 70px;
  left: 0;
  top: 20px;
  animation-duration: 1.7s;
}

.loading-gear-row .gear-top {
  width: 50px;
  height: 50px;
  left: 54px;
  top: 0;
  animation-duration: 1.2s;
}

.loading-gear-row .gear-bottom {
  width: 44px;
  height: 44px;
  left: 74px;
  top: 42px;
  animation-duration: 1.05s;
}

.loading-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  color: #f3f7fd;
}

.loading-copy {
  margin: 0;
  color: #a8b8ce;
  font-size: 14px;
  line-height: 1.5;
}

.error-box {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 118, 118, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006)),
    linear-gradient(180deg, rgba(52,20,24,0.92), rgba(28,10,12,0.98));
  color: #ffd7d7;
  border-radius: 16px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.field-help {
  margin: 6px 0 12px;
  color: #9aa8bc;
  font-size: 14px;
  line-height: 1.45;
}

.image-upload-wrap {
  display: grid;
  gap: 10px;
}

.image-input {
  width: 100%;
  border: 1px dashed rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 14px;
  padding: 14px;
}

.image-upload-meta {
  color: var(--muted);
  font-size: 13px;
}

.broad-note {
  margin-top: 10px;
  color: #ffd79b;
  font-size: 13px;
}

.summary-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.summary-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dfe7f4;
  font-size: 12px;
}

@keyframes spinCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinCCW {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.45; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.18); }
}

@media (max-width: 980px) {
  .workspace {
    grid-template-columns: 1fr;
  }

  .results-panel {
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  body {
    padding: 16px;
  }

  .panel,
  .results-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 0.98;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .engine-title-block {
    padding-left: 118px;
  }

  .gear-field {
    width: 150px;
    height: 108px;
    left: -10px;
  }

  .gear-large {
    width: 82px;
    height: 82px;
    top: 22px;
  }

  .gear-top {
    width: 58px;
    height: 58px;
    left: 62px;
    top: 2px;
  }

  .gear-bottom {
    width: 54px;
    height: 54px;
    left: 80px;
    top: 58px;
  }

  .sparkle.s1 { left: 108px; }
  .sparkle.s2 { left: 28px; }
  .sparkle.s3 { left: 126px; }

  .section-block {
    padding: 12px;
  }

  .btn {
    font-size: 12px;
    padding: 6px 10px;
    min-height: 34px;
  }

  .budget-top {
    flex-direction: column;
    align-items: stretch;
  }

  .budget-custom {
    justify-content: space-between;
  }

  .budget-input {
    width: 120px;
  }

  .result-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .placeholder,
  .loading-wrap {
    min-height: 280px;
  }
}