/* ============================================================
   browser.fermag.com.tr — v3 "Claude" theme
   Krem zemin + terracotta aksan + serif başlıklar, warm minimal
   ============================================================ */
:root {
  --bg: #faf9f5;
  --bg-card: #ffffff;
  --bg-soft: #f0eee6;
  --text: #262624;
  --body: #57544d;
  --muted: #8b877c;
  --border: #e8e4d9;
  --accent: #c96442;
  --accent-2: #a84f33;
  --accent-soft: rgba(201,100,66,.09);
  --grad: linear-gradient(135deg, #d97b52, #b85c3a);
  --danger: #bf4d43;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(60,50,40,.05);
  --shadow-md: 0 2px 4px rgba(60,50,40,.05), 0 14px 32px -14px rgba(60,50,40,.16);
  --shadow-lg: 0 20px 50px -18px rgba(184,92,58,.28), 0 6px 18px -10px rgba(60,50,40,.12);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out: cubic-bezier(.22,1,.36,1);
}
html[data-theme="dark"] {
  --bg: #262624;
  --bg-card: #30302e;
  --bg-soft: #38382f;
  --text: #f5f4ed;
  --body: #c9c5ba;
  --muted: #918d81;
  --border: #45443f;
  --accent: #e08b64;
  --accent-2: #eba27c;
  --accent-soft: rgba(224,139,100,.12);
  --grad: linear-gradient(135deg, #d97b52, #c05f3e);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 2px 6px rgba(0,0,0,.35), 0 14px 34px -14px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 50px -18px rgba(217,123,82,.35), 0 6px 18px -10px rgba(0,0,0,.4);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }
.hidden { display: none !important; }
::selection { background: rgba(201,100,66,.22); }
svg {
  width: 20px; height: 20px; fill: none;
  stroke: var(--muted); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.ic-search, .ic-search svg { stroke: var(--accent); }

/* ============ theme toggle ============ */
.theme-toggle {
  position: fixed; top: 18px; right: 18px; z-index: 100;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-card);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-spring), box-shadow .2s ease, border-color .2s ease;
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.06); box-shadow: var(--shadow-md); }
.theme-toggle:active { transform: scale(.9); }
.theme-toggle svg { width: 19px; height: 19px; stroke: var(--body); transition: transform .4s var(--ease-spring), opacity .3s ease; position: absolute; }
html[data-theme="light"] .ic-moon { opacity: 0; transform: rotate(-90deg) scale(.5); }
html[data-theme="dark"] .ic-sun { opacity: 0; transform: rotate(90deg) scale(.5); }

/* ============ ambient background — warm paper feel ============ */
.bg-scene {
  position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
  background:
    radial-gradient(1100px 700px at 80% -10%, var(--accent-soft), transparent 60%),
    radial-gradient(900px 600px at -5% 105%, rgba(240,238,230,.9), transparent 55%),
    var(--bg);
}
html[data-theme="dark"] .bg-scene {
  background:
    radial-gradient(1100px 700px at 80% -10%, var(--accent-soft), transparent 60%),
    var(--bg);
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .45;
  will-change: transform;
}
.blob-a {
  width: 480px; height: 480px; top: -160px; right: -120px;
  background: radial-gradient(circle at 35% 35%, rgba(201,100,66,.28), rgba(201,100,66,.03));
  animation: drift-a 30s ease-in-out infinite alternate;
}
.blob-b {
  width: 400px; height: 400px; bottom: -180px; left: -130px;
  background: radial-gradient(circle at 60% 40%, rgba(217,180,120,.22), transparent);
  animation: drift-b 36s ease-in-out infinite alternate;
}
.blob-c {
  width: 280px; height: 280px; top: 42%; left: 56%;
  background: radial-gradient(circle at 50% 50%, rgba(201,100,66,.1), transparent);
  animation: drift-c 42s ease-in-out infinite alternate;
}
html[data-theme="dark"] .blob { opacity: .3; }
@keyframes drift-a { from { transform: translate(0,0) scale(1); } to { transform: translate(-70px,50px) scale(1.12); } }
@keyframes drift-b { from { transform: translate(0,0) scale(1); } to { transform: translate(80px,-40px) scale(1.08); } }
@keyframes drift-c { from { transform: translate(0,0); } to { transform: translate(-50px,-60px) scale(1.2); } }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(38,38,36,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,38,36,.032) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
}
html[data-theme="dark"] .grid-overlay {
  background-image:
    linear-gradient(rgba(245,244,237,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,244,237,.04) 1px, transparent 1px);
}

/* ============ top search progress bar ============ */
.search-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  pointer-events: none; opacity: 0; transition: opacity .2s ease;
}
.search-progress.active { opacity: 1; }
.search-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, #d97b52, #c96442, #a84f33);
  border-radius: 999px;
}

/* ============ logo ============ */
.logo { font-weight: 600; letter-spacing: -.03em; user-select: none; display: inline-block; }
.logo span { display: inline-block; animation: letter-pop .7s var(--ease-spring) backwards; }
.logo-big .l1,.logo-big .l2,.logo-big .l3,.logo-big .l4,.logo-big .l5,.logo-big .l6 { color: var(--text); }
.logo-big .l6 { color: var(--accent); }
.logo-small span { animation: none; }
@keyframes letter-pop {
  0% { opacity: 0; transform: translateY(24px) scale(.65) rotate(-7deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}
.logo-big { font-size: clamp(54px, 9vw, 80px); margin: 0 0 14px; font-style: italic; }
.logo-small { font-size: 22px; }
.tilt-wrap { transition: transform .3s var(--ease-out); transform-style: preserve-3d; }

/* ============ home ============ */
.home { min-height: 100vh; display: grid; place-items: center; padding: 24px; position: relative; }
.home-inner { text-align: center; width: min(600px, 100%); }
.home-kicker {
  margin: 0 0 18px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.fade-up.d0 { animation: fade-up .7s var(--ease-out) backwards; }
.fade-up.d4 { animation: fade-up .7s var(--ease-out) .75s backwards; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.searchbar-wrap { position: relative; animation: fade-up .7s var(--ease-out) .35s backwards; }
.searchbar {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border); border-radius: 18px;
  padding: 15px 20px; background: var(--bg-card);
  box-shadow: var(--shadow-md);
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s var(--ease-out);
}
.searchbar:focus-within {
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(201,100,66,.12);
  border-color: rgba(201,100,66,.45);
  transform: translateY(-2px);
}
.searchbar input {
  flex: 1; border: none; outline: none; font-size: 17px; background: transparent; color: var(--text); min-width: 0;
}
.searchbar input::placeholder { color: var(--muted); font-style: italic; }
.ic-search svg, .ic-search { width: 20px; height: 20px; }
.clear-btn, .tool-btn { background: none; border: none; padding: 4px; display: grid; place-items: center; border-radius: 50%; transition: background .15s ease, transform .15s var(--ease-spring); }
.clear-btn:hover, .tool-btn:hover { background: var(--bg-soft); transform: scale(1.1); }
.tool-btn:active { transform: scale(.92); }
.vsep { width: 1px; height: 24px; background: var(--border); }

/* suggestions */
.sugg-box {
  position: absolute; z-index: 30; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden; padding: 6px 0;
}
.sugg-box.pop-in { animation: sugg-pop .22s var(--ease-spring); transform-origin: top center; }
@keyframes sugg-pop {
  from { opacity: 0; transform: translateY(-8px) scaleY(.92); }
  to { opacity: 1; transform: translateY(0) scaleY(1); }
}
.sugg-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 18px;
  cursor: pointer; font-size: 14.5px; color: var(--text);
  transition: background .12s ease, padding-left .15s var(--ease-out);
}
.sugg-item:hover, .sugg-item.sel { background: var(--accent-soft); padding-left: 24px; }
.sugg-item svg { width: 15px; height: 15px; stroke: var(--accent); }

/* buttons */
.home-actions { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  padding: 12px 22px; border-radius: 11px; font-size: 14.5px;
  transition: all .2s var(--ease-out); position: relative; overflow: hidden;
}
.btn-primary {
  border: none; color: #fff8f3; background-image: var(--grad);
  box-shadow: 0 6px 18px -6px rgba(201,100,66,.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(201,100,66,.65); }
.btn-primary:active { transform: translateY(0) scale(.97); }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.3), transparent);
  transform: skewX(-20deg); transition: left .5s ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-ghost { border: 1px solid var(--border); background: var(--bg-card); color: var(--text); }
.btn-ghost:hover { border-color: #d9d2c0; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.home-stats { margin-top: 44px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.stat-chip {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px; color: var(--body);
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 15px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out), border-color .2s ease;
}
.stat-chip:hover { transform: translateY(-2px); border-color: #d9d2c0; }
.stat-chip b { color: var(--accent); font-weight: 700; margin-right: 2px; }
.stat-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--muted); opacity: .5; }

.mic-live.rec { animation: mic-pulse 1.1s ease-in-out infinite; }
.mic-live.rec svg { stroke: var(--danger); }
@keyframes mic-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.22); } }

/* ============ results header ============ */
.results-page { min-height: 100vh; }
.rp-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,249,245,.85);
  backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  animation: header-drop .45s var(--ease-out);
}
html[data-theme="dark"] .rp-header { background: rgba(38,38,36,.88); }
@keyframes header-drop {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}
.rp-top { display: flex; align-items: center; gap: 26px; padding: 14px 28px 10px; max-width: 1400px; margin: 0 auto; position: relative; }
.rp-logo-link { text-decoration: none; flex-shrink: 0; transition: transform .2s var(--ease-spring); display: inline-block; }
.rp-logo-link:hover { transform: scale(1.06) rotate(-1.5deg); }
.rp-bar { max-width: 620px; flex: 1; padding: 11px 18px; }
.results-page .sugg-box { top: 100%; left: 48px; right: auto; width: min(620px, 70vw); }

/* tabs */
.tabs { display: flex; align-items: center; gap: 4px; padding: 0 28px; max-width: 1400px; margin: 0 auto; position: relative; }
.tab {
  padding: 11px 15px; font-size: 14px; color: var(--body); text-decoration: none;
  position: relative; transition: color .2s ease;
}
.tab::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 2.5px; border-radius: 99px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-spring);
}
.tab:hover { color: var(--text); }
.tab:hover::after { transform: scaleX(.5); }
.tab.active { color: var(--accent-2); font-weight: 600; }
.tab.active::after { transform: scaleX(1); }
.tab-tools { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.mini-sel {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12.5px; color: var(--body); border: 1px solid var(--border);
  border-radius: 9px; padding: 5px 9px; background: var(--bg-card); outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.mini-sel:hover { border-color: #d9d2c0; }
.mini-sel:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,100,66,.12); }

/* ============ results body ============ */
.rp-body { display: flex; gap: 44px; max-width: 1400px; margin: 0 auto; padding: 26px 28px 70px; }
.col-main { flex: 1; min-width: 0; max-width: 660px; }
.col-side { width: 344px; flex-shrink: 0; }
.meta-row { color: var(--muted); font-size: 13px; font-style: italic; margin-bottom: 16px; animation: fade-up .4s var(--ease-out); }
.status { color: var(--muted); font-size: 14px; padding: 34px 0; text-align: center; }
.status:not(.hidden) { animation: fade-up .3s var(--ease-out); }

.result {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  opacity: 0; animation: card-in .55s var(--ease-out) forwards;
  transition: transform .22s var(--ease-out), box-shadow .22s ease, border-color .22s ease;
  will-change: transform;
}
.result:nth-child(1){animation-delay:.03s}.result:nth-child(2){animation-delay:.08s}
.result:nth-child(3){animation-delay:.13s}.result:nth-child(4){animation-delay:.18s}
.result:nth-child(5){animation-delay:.23s}.result:nth-child(6){animation-delay:.28s}
.result:nth-child(7){animation-delay:.33s}.result:nth-child(8){animation-delay:.38s}
.result:nth-child(n+9){animation-delay:.42s}
@keyframes card-in {
  from { opacity: 0; transform: translateY(20px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.result:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,100,66,.35);
}

.r-top { display: flex; align-items: center; gap: 11px; margin-bottom: 7px; }
.fav {
  width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--border);
  display: grid; place-items: center; overflow: hidden; background: var(--bg-soft);
  transition: transform .25s var(--ease-spring);
}
.fav img { width: 16px; height: 16px; border-radius: 3px; }
.result:hover .fav { transform: scale(1.12) rotate(-4deg); }
.r-src { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.r-host { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 12.5px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.r-engine { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 11px; color: var(--muted); letter-spacing: .02em; }
.r-title {
  font-size: 19px; line-height: 1.4; font-weight: 600;
  color: var(--accent-2); text-decoration: none; word-break: break-word; display: inline-block;
  transition: color .15s ease;
}
.r-title:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.r-snippet { font-size: 14px; color: var(--body); line-height: 1.65; margin: 5px 0 0; }

.corrected { font-size: 14px; margin-bottom: 18px; animation: fade-up .4s var(--ease-out); }
.corrected a { color: var(--accent); font-style: italic; font-weight: 600; text-decoration: none; border-bottom: 1.5px dashed rgba(201,100,66,.45); }
.corrected a:hover { border-bottom-style: solid; }

/* images */
.img-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: 14px; }
.img-card { display: block; text-decoration: none; color: inherit; opacity: 0; animation: card-in .5s var(--ease-out) forwards; }
.img-card:nth-child(-n+8) { animation-delay: calc(var(--i, 0) * 45ms); }
.img-thumb-wrap {
  aspect-ratio: 4/3; background: var(--bg-soft); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); display: block; position: relative;
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
}
.img-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s var(--ease-out); }
.img-card:hover .img-thumb-wrap { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.img-card:hover img { transform: scale(1.06); }
.img-title { font-size: 13.5px; margin-top: 7px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.img-meta { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 11.5px; color: var(--muted); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* videos */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.vid-card { display: block; text-decoration: none; color: inherit; opacity: 0; animation: card-in .5s var(--ease-out) forwards; }
.vid-thumb-wrap {
  aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: #262624;
  border: 1px solid var(--border); display: block;
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
}
.vid-card iframe, .vid-card video { width: 100%; height: 100%; border: 0; display: block; }
.vid-fallback { width: 100%; height: 100%; display: grid; place-items: center; color: #f5f4ed; font-style: italic; font-size: 13px; background: linear-gradient(135deg,#30302e,#45443f); }
.vid-card:hover .vid-thumb-wrap { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); }
.vid-title { font-size: 14.5px; font-weight: 600; margin-top: 9px; line-height: 1.45; transition: color .15s ease; }
.vid-card:hover .vid-title { color: var(--accent-2); }
.vid-meta { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 12px; color: var(--muted); margin-top: 3px; }

/* news */
.news-list { display: flex; flex-direction: column; gap: 14px; }
.news-card {
  display: flex; gap: 16px; text-decoration: none; color: inherit;
  padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card); box-shadow: var(--shadow-sm);
  opacity: 0; animation: card-in .55s var(--ease-out) forwards;
  transition: transform .22s var(--ease-out), box-shadow .22s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(201,100,66,.35); }
.news-body { flex: 1; min-width: 0; }
.news-src { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 11px; color: var(--accent); margin-bottom: 5px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.news-title { font-size: 17px; font-weight: 600; line-height: 1.42; }
.news-snip { font-size: 13.5px; color: var(--body); margin-top: 6px; line-height: 1.55; }
.news-thumb-wrap { width: 168px; height: 100px; flex-shrink: 0; border-radius: 10px; overflow: hidden; background: var(--bg-soft); }
.news-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-out); }
.news-card:hover .news-thumb-wrap img { transform: scale(1.07); }

/* infobox */
.infobox {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 20px;
  background: var(--bg-soft); box-shadow: var(--shadow-md);
  animation: info-slide .5s var(--ease-out) .25s backwards;
  position: sticky; top: 150px;
}
@keyframes info-slide {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
.infobox h3 { margin: 0 0 9px; font-size: 19px; letter-spacing: -.01em; font-style: italic; }
.infobox img.ib-img { width: 100%; border-radius: 10px; margin-bottom: 12px; }
.infobox p { margin: 0 0 14px; font-size: 13.5px; line-height: 1.65; color: var(--body); }
.ib-link { display: block; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 12.5px; color: var(--accent); text-decoration: none; padding: 4px 0; word-break: break-all; transition: padding-left .18s var(--ease-out); }
.ib-link:hover { padding-left: 6px; text-decoration: underline; }

/* pager */
.pager { display: flex; gap: 6px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pg-btn {
  min-width: 40px; height: 40px; border-radius: 11px; border: 1px solid transparent;
  background: transparent; font-size: 15px; color: var(--accent-2); text-decoration: none;
  display: grid; place-items: center; padding: 0 10px;
  transition: all .18s var(--ease-out);
}
.pg-btn:hover { background: var(--bg-card); border-color: var(--border); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pg-btn.cur { color: #fff8f3; font-weight: 600; background-image: var(--grad); box-shadow: 0 6px 16px -6px rgba(201,100,66,.5); }

/* view transitions */
.results-page.entering { animation: results-enter .45s var(--ease-out); }
@keyframes results-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* responsive */
@media (max-width: 900px) {
  .rp-top { gap: 14px; padding: 12px 16px 8px; }
  .rp-bar { flex: 1; }
  .results-page .sugg-box { left: 16px; width: calc(100vw - 32px); }
  .tabs { padding: 0 12px; overflow-x: auto; scrollbar-width: none; }
  .rp-body { flex-direction: column; gap: 0; padding: 18px 14px 56px; }
  .col-main { max-width: none; }
  .col-side { width: 100%; order: -1; position: static; }
  .blob-a { width: 320px; height: 320px; }
  .searchbar { padding: 13px 17px; }
  .infobox { position: static; animation-name: fade-up; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
