:root{
  --mr-primary:#183554;
  --mr-primary-2:#244a73;
  --mr-accent:#ff6b2c;
  --mr-accent-2:#ff8757;
  --mr-text:#0f172a;
  --mr-muted:#607086;
  --mr-bg:#f3f7fb;
  --mr-card:#ffffff;
  --mr-soft:#eef4fb;
  --mr-soft-2:#f8fbff;
  --mr-line:rgba(15,23,42,.08);
  --mr-line-strong:rgba(15,23,42,.12);
  --mr-shadow:0 24px 60px rgba(17,34,57,.10);
  --mr-shadow-soft:0 12px 28px rgba(17,34,57,.06);
  --mr-shadow-heavy:0 28px 70px rgba(17,34,57,.12);
  --mr-max:1180px;
  --mr-radius-xl:32px;
  --mr-radius-lg:24px;
  --mr-radius-md:18px;
  --mr-radius-sm:14px;
}

*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  margin:0;
  overflow-x:hidden;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--mr-text);
  background:
    radial-gradient(circle at 0% 0%, rgba(255,107,44,.08), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(24,53,84,.08), transparent 28%),
    linear-gradient(180deg,#f7fbff 0%, #f3f7fb 46%, #eef4fb 100%);
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input{
  font:inherit;
}

.mr-container{
  width:min(var(--mr-max), calc(100% - 28px));
  margin:0 auto;
}

/* =========================
   HEADER
========================= */

.mr-site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(247,251,255,.85);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(15,23,42,.06);
}

.mr-header-inner{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.mr-brand{
  display:flex;
  align-items:center;
  min-width:0;
}

.mr-logo{
  width:194px;
  height:auto;
  object-fit:contain;
}

.mr-brand-fallback{
  width:48px;
  height:48px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg,var(--mr-primary),var(--mr-primary-2));
  box-shadow:0 10px 24px rgba(24,53,84,.22);
}

.mr-header-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.mr-header-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(24,53,84,.08);
  background:rgba(255,255,255,.72);
  color:var(--mr-primary);
  font-size:14px;
  font-weight:800;
  transition:.18s ease;
}

.mr-header-nav a:hover{
  transform:translateY(-1px);
  background:#fff;
  border-color:rgba(24,53,84,.16);
  box-shadow:0 10px 20px rgba(17,34,57,.06);
}

/* =========================
   HERO
========================= */

.mr-hero{
  padding:34px 0 18px;
}

.mr-hero-intro{
  max-width:900px;
  margin:0 auto 24px;
  text-align:center;
}

.mr-app-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#f7fbff;
  border:1px solid rgba(24,53,84,.08);
  color:var(--mr-primary);
  font-size:12px;
  font-weight:900;
  letter-spacing:.03em;
  margin-bottom:14px;
}

.mr-app-badge-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--mr-accent);
  box-shadow:0 0 0 6px rgba(255,107,44,.12);
}

.mr-hero-intro h1{
  margin:0 0 14px;
  font-size:clamp(38px, 5.2vw, 72px);
  line-height:.94;
  letter-spacing:-.065em;
  color:var(--mr-primary);
}

.mr-hero-intro h1 .accent{
  color:var(--mr-accent);
}

.mr-hero-intro p{
  max-width:820px;
  margin:0 auto;
  font-size:18px;
  line-height:1.75;
  color:var(--mr-muted);
}

.mr-main-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(0, .98fr);
  gap:22px;
  align-items:stretch;
}

.mr-search-card,
.mr-assistant-card,
.mr-how-card,
.mr-recent-card{
  background:linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  border:1px solid var(--mr-line);
  box-shadow:var(--mr-shadow-soft);
}

.mr-search-card,
.mr-assistant-card{
  position:relative;
  overflow:hidden;
  border-radius:var(--mr-radius-xl);
  padding:28px;
}

.mr-search-card::before,
.mr-assistant-card::before{
  content:"";
  position:absolute;
  inset:auto auto 0 0;
  width:220px;
  height:220px;
  border-radius:50%;
  transform:translate(-35%, 35%);
  background:radial-gradient(circle, rgba(24,53,84,.08), transparent 70%);
  pointer-events:none;
}

.mr-assistant-card::after{
  content:"";
  position:absolute;
  right:-50px;
  top:-50px;
  width:170px;
  height:170px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,107,44,.12), transparent 70%);
  pointer-events:none;
}

.mr-card-heading,
.mr-form,
.mr-assistant-status,
.mr-assistant-demo{
  position:relative;
  z-index:2;
}

.mr-card-kicker,
.mr-section-kicker{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,107,44,.08);
  color:var(--mr-primary);
  font-size:12px;
  font-weight:900;
  letter-spacing:.03em;
  margin-bottom:12px;
}

.mr-card-heading h2,
.mr-section-intro h2,
.mr-section-head h2{
  margin:0;
  color:var(--mr-primary);
  letter-spacing:-.05em;
}

.mr-card-heading h2{
  font-size:clamp(30px, 3vw, 42px);
  line-height:1.02;
  margin-bottom:12px;
}

.mr-card-heading h2 span,
.mr-section-intro h2 span{
  color:var(--mr-accent);
}

.mr-card-heading p{
  margin:0;
  font-size:15px;
  line-height:1.72;
  color:var(--mr-muted);
}

/* =========================
   SEARCH CARD
========================= */

.mr-form{
  margin-top:22px;
}

.mr-field{
  margin-bottom:16px;
  position:relative;
}

.mr-label{
  display:block;
  margin:0 0 8px;
  font-size:13px;
  font-weight:900;
  color:var(--mr-primary);
}

.mr-input-wrap{
  position:relative;
}

.mr-input{
  width:100%;
  height:60px;
  border:1px solid var(--mr-line-strong);
  background:#fff;
  border-radius:18px;
  padding:0 18px 0 48px;
  color:var(--mr-text);
  outline:none;
  transition:.2s ease;
  box-shadow:0 5px 14px rgba(16,32,51,.04);
  appearance:none;
  -webkit-appearance:none;
}

.mr-input:focus{
  border-color:rgba(24,53,84,.35);
  box-shadow:0 0 0 4px rgba(24,53,84,.08);
}

.mr-input-icon{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  color:#6c839f;
  pointer-events:none;
}

.mr-input-note{
  margin-top:8px;
  font-size:12px;
  color:var(--mr-muted);
  line-height:1.5;
}

.mr-suggestions{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  right:0;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  box-shadow:0 22px 40px rgba(16,32,51,.12);
  overflow:hidden;
  display:none;
  z-index:30;
}

.mr-suggestions.show{ display:block; }

.mr-suggestion{
  padding:14px 16px;
  display:flex;
  gap:12px;
  align-items:center;
  cursor:pointer;
  transition:.15s ease;
  border-bottom:1px solid rgba(15,23,42,.06);
}

.mr-suggestion:last-child{ border-bottom:none; }
.mr-suggestion:hover{ background:#f7fbff; }

.mr-suggestion-icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#eef4fb;
  color:var(--mr-primary);
  font-size:13px;
  font-weight:900;
  flex:0 0 auto;
}

.mr-suggestion-text strong{
  display:block;
  font-size:14px;
  color:var(--mr-text);
}

.mr-suggestion-text span{
  display:block;
  font-size:12px;
  color:var(--mr-muted);
  margin-top:2px;
}

.mr-categories{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.mr-chip{
  border:1px solid rgba(24,53,84,.08);
  background:#f8fbff;
  color:var(--mr-text);
  border-radius:999px;
  padding:12px 14px;
  font-size:14px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  transition:.18s ease;
}

.mr-chip:hover{
  background:#eef4fb;
  border-color:rgba(24,53,84,.18);
  transform:translateY(-1px);
}

.mr-chip.active{
  background:var(--mr-primary);
  color:#fff;
  border-color:var(--mr-primary);
  box-shadow:0 12px 22px rgba(24,53,84,.22);
}

.mr-chip-disabled{
  opacity:.7;
  cursor:not-allowed;
  pointer-events:none;
}

.mr-chip-light{
  background:rgba(255,107,44,.08);
  color:var(--mr-primary);
  border:1px solid rgba(255,107,44,.16);
}

.mr-chip-light:hover{ background:rgba(255,107,44,.12); }

.mr-dynamic-info{
  margin-top:14px;
  padding:15px 16px;
  border-radius:18px;
  background:var(--mr-soft-2);
  border:1px dashed rgba(15,23,42,.10);
  font-size:13px;
  line-height:1.65;
  color:var(--mr-muted);
}

.mr-dynamic-info strong{ color:var(--mr-primary); }

.mr-form-actions{
  display:flex;
  gap:12px;
  margin-top:20px;
}

.mr-btn{
  min-height:56px;
  border-radius:18px;
  border:none;
  cursor:pointer;
  font-size:15px;
  font-weight:900;
  padding:0 20px;
  transition:.2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.mr-btn-primary{
  flex:1 1 auto;
  background:linear-gradient(135deg,var(--mr-accent),var(--mr-accent-2));
  color:#fff;
  box-shadow:0 16px 28px rgba(255,107,44,.22);
}

.mr-btn-primary:hover{ transform:translateY(-1px); }

.mr-btn-soft{
  flex:0 0 auto;
  background:#f2f6fb;
  color:var(--mr-primary);
  border:1px solid rgba(24,53,84,.10);
  min-width:146px;
}

.mr-btn-soft:hover{
  background:#e9f0f8;
  transform:translateY(-1px);
}

.mr-search-mini-points{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:18px;
}

.mr-search-mini-point{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 14px;
  border-radius:16px;
  background:#f7fbff;
  border:1px solid rgba(24,53,84,.08);
  color:var(--mr-primary);
  font-size:13px;
  font-weight:800;
  text-align:center;
}

/* =========================
   NO RESULTS
========================= */

.mr-no-results{ margin-top:18px; }

.mr-no-results-box{
  background:linear-gradient(180deg,#fff7f2 0%,#ffffff 100%);
  border:1px solid rgba(255,107,44,.18);
  border-radius:20px;
  padding:18px 16px;
  box-shadow:0 14px 35px rgba(15,23,42,.08);
}

.mr-no-results-box h3{
  margin:0 0 10px;
  font-size:1.05rem;
  line-height:1.35;
  color:var(--mr-text);
}

.mr-no-results-box p{
  margin:0;
  color:var(--mr-muted);
  line-height:1.65;
  font-size:.96rem;
}

.mr-no-results-form{
  margin-top:16px;
  display:grid;
  gap:12px;
}

.mr-no-results-form .mr-input{ width:100%; }
.mr-no-results-form .mr-btn{ width:100%; justify-content:center; }

/* =========================
   ASSISTANT CARD
========================= */

.mr-assistant-status{
  margin-top:18px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.75);
  border:1px dashed rgba(24,53,84,.16);
  color:var(--mr-muted);
  font-size:13px;
  line-height:1.6;
}

.mr-assistant-status strong{ color:var(--mr-primary); }

.mr-assistant-demo{
  margin-top:18px;
  display:grid;
  gap:16px;
}

.mr-assistant-chat{
  display:grid;
  grid-template-columns:98px 1fr;
  gap:14px;
  align-items:center;
}

.mr-assistant-avatar-wrap{
  position:relative;
  width:98px;
  min-width:98px;
}

.mr-ai-widget-avatar{
  width:98px;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 14px 22px rgba(24,53,84,.14));
}

.mr-ai-widget-star{
  position:absolute;
  font-size:18px;
  line-height:1;
  font-weight:900;
  pointer-events:none;
}

.mr-ai-widget-star-a{
  top:2px;
  left:-4px;
  color:#ff7a30;
}

.mr-ai-widget-star-b{
  top:-2px;
  right:-1px;
  color:#62b2ff;
}

.mr-assistant-bubble{
  position:relative;
  background:#fff;
  border:1px solid rgba(24,53,84,.08);
  border-radius:24px;
  padding:18px 20px;
  box-shadow:0 10px 24px rgba(17,34,57,.06);
  font-size:16px;
  line-height:1.6;
  color:#25384f;
}

.mr-assistant-bubble::before{
  content:"";
  position:absolute;
  left:-9px;
  bottom:24px;
  width:18px;
  height:18px;
  background:#ffffff;
  border-left:1px solid rgba(24,53,84,.08);
  border-bottom:1px solid rgba(24,53,84,.08);
  transform:rotate(45deg);
  border-bottom-left-radius:5px;
}

.mr-partidas-card{
  background:#fff;
  border:1px solid rgba(24,53,84,.08);
  border-radius:28px;
  padding:22px;
  box-shadow:var(--mr-shadow-soft);
}

.mr-partidas-head{
  margin-bottom:16px;
}

.mr-partidas-head span{
  display:block;
  margin-bottom:6px;
  color:var(--mr-muted);
  font-size:14px;
  font-weight:700;
}

.mr-partidas-head strong{
  display:block;
  color:var(--mr-primary);
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.03em;
}

.mr-partidas-list{
  display:grid;
  gap:10px;
}

.mr-partida-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:54px;
  padding:0 16px;
  border-radius:16px;
  background:#f7fbff;
  border:1px solid rgba(24,53,84,.08);
}

.mr-partida-name{
  color:var(--mr-text);
  font-size:14px;
  font-weight:800;
  line-height:1.4;
}

.mr-partida-state{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,107,44,.10);
  color:var(--mr-primary);
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}

.mr-partidas-foot{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(15,23,42,.08);
  color:var(--mr-muted);
  font-size:13px;
  line-height:1.65;
}

/* =========================
   HOW
========================= */

.mr-how{
  padding:12px 0 10px;
}

.mr-section-intro{
  max-width:760px;
  margin:0 auto 18px;
  text-align:center;
}

.mr-section-intro h2{
  font-size:clamp(28px, 4vw, 46px);
  line-height:1.02;
  margin-bottom:12px;
}

.mr-section-intro p{
  margin:0;
  color:var(--mr-muted);
  font-size:16px;
  line-height:1.72;
}

.mr-how-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.mr-how-card{
  border-radius:26px;
  padding:24px;
}

.mr-how-number{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  background:linear-gradient(135deg,var(--mr-accent),var(--mr-accent-2));
  color:#fff;
  font-size:20px;
  font-weight:900;
  box-shadow:0 14px 24px rgba(255,107,44,.20);
}

.mr-how-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.15;
  letter-spacing:-.03em;
  color:var(--mr-primary);
}

.mr-how-card p{
  margin:0;
  color:var(--mr-muted);
  font-size:15px;
  line-height:1.72;
}

/* =========================
   RECENT
========================= */

.mr-recent{
  padding:16px 0 28px;
  overflow:hidden;
  max-width:100%;
}

.mr-section-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-end;
  margin-bottom:14px;
}

.mr-section-head h2{
  font-size:clamp(26px, 4vw, 40px);
  line-height:1.02;
}

.mr-section-head p{
  margin:6px 0 0;
  font-size:14px;
  color:var(--mr-muted);
}

.mr-scroll{
  display:flex;
  gap:12px;
  overflow:auto;
  padding-bottom:6px;
  scrollbar-width:none;
}

.mr-scroll::-webkit-scrollbar{ display:none; }

.mr-recent-card{
  min-width:250px;
  border-radius:22px;
  padding:16px;
  flex:0 0 auto;
}

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

.mr-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:#eef4fb;
  color:var(--mr-primary);
  border-radius:999px;
  padding:8px 10px;
  font-size:12px;
  font-weight:900;
}

.mr-recent-card h3{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.3;
  color:var(--mr-text);
}

.mr-recent-card p{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:var(--mr-muted);
}

#mrRecentSearches{
  position:relative;
  width:100%;
  max-width:100%;
  overflow:hidden;
  margin-top:8px;
}

#mrRecentSearchesTrack{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:stretch;
  gap:14px;
  width:max-content;
  min-width:max-content;
  will-change:transform;
  transform:translate3d(0,0,0);
  animation:none;
}

#mrRecentSearchesTrack.is-ready{
  animation:mrRecentTicker 22s linear infinite;
}

#mrRecentSearches:hover #mrRecentSearchesTrack{
  animation-play-state:paused;
}

#mrRecentSearches .mr-recent-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  flex:0 0 260px;
  min-width:260px;
  max-width:260px;
  box-sizing:border-box;
}

#mrRecentSearches .mr-recent-card h3{
  margin:0;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

@keyframes mrRecentTicker{
  0%{ transform:translate3d(0,0,0); }
  100%{ transform:translate3d(-50%,0,0); }
}

/* =========================
   FOOTER
========================= */

.mr-site-footer{
  background:#142c47;
  color:#fff;
  padding:30px 0 20px;
}

.mr-footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  gap:24px;
  margin-bottom:22px;
}

.mr-footer-brand-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.mr-footer-brand-top img{
  width:165px;
  height:auto;
  object-fit:contain;
}

.mr-footer-brand-top .mr-brand-fallback{
  width:44px;
  height:44px;
  background:linear-gradient(135deg,#fff,#dce8f7);
  color:var(--mr-primary);
  box-shadow:none;
}

.mr-footer-text{
  margin:0;
  color:rgba(255,255,255,.76);
  line-height:1.7;
  font-size:14px;
}

.mr-footer-col h3{
  margin:0 0 14px;
  font-size:16px;
  font-weight:900;
  color:#fff;
}

.mr-footer-links{
  display:grid;
  gap:10px;
}

.mr-footer-links a,
.mr-footer-links span{
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.5;
}

.mr-footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:16px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.66);
  font-size:13px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1080px){
  .mr-main-grid,
  .mr-how-grid,
  .mr-footer-grid{
    grid-template-columns:1fr;
  }

  .mr-search-card,
  .mr-assistant-card{
    padding:24px;
  }
}

@media (max-width:820px){
  .mr-container{
    width:min(100% - 18px, var(--mr-max));
  }

  .mr-site-header{
    position:sticky;
  }

  .mr-header-inner{
    min-height:72px;
    gap:12px;
  }

  .mr-logo{
    width:172px;
  }

  .mr-header-nav{
    display:none;
  }

  .mr-hero{
    padding:18px 0 10px;
  }

  .mr-hero-intro{
    margin-bottom:18px;
  }

  .mr-hero-intro h1{
    font-size:clamp(32px, 9vw, 48px);
    line-height:.98;
  }

  .mr-hero-intro p{
    font-size:15px;
    line-height:1.68;
  }

  .mr-search-card,
  .mr-assistant-card,
  .mr-how-card{
    border-radius:24px;
    padding:18px 16px;
  }

  .mr-card-heading h2,
  .mr-section-intro h2,
  .mr-section-head h2{
    font-size:clamp(24px, 7vw, 34px);
    line-height:1.06;
  }

  .mr-card-heading p,
  .mr-section-intro p{
    font-size:14px;
    line-height:1.65;
  }

  .mr-form-actions{
    flex-direction:column;
  }

  .mr-btn-primary,
  .mr-btn-soft{
    width:100%;
    min-width:0;
  }

  .mr-search-mini-points{
    grid-template-columns:1fr;
  }

  .mr-assistant-chat{
    grid-template-columns:82px 1fr;
    gap:12px;
    align-items:center;
  }

  .mr-assistant-avatar-wrap,
  .mr-ai-widget-avatar{
    width:82px;
    min-width:82px;
  }

  .mr-ai-widget-star-a{
    left:-2px;
    top:2px;
  }

  .mr-ai-widget-star-b{
    right:-3px;
    top:0;
  }

  .mr-assistant-bubble{
    padding:14px 16px;
    border-radius:18px;
    font-size:14px;
    line-height:1.5;
  }

  .mr-assistant-bubble::before{
    left:-8px;
    bottom:28px;
    width:16px;
    height:16px;
  }

  .mr-partidas-card{
    border-radius:22px;
    padding:16px;
  }

  .mr-partidas-head strong{
    font-size:18px;
  }

  .mr-partida-item{
    min-height:50px;
    padding:10px 12px;
    align-items:flex-start;
    flex-direction:column;
    justify-content:center;
  }

  .mr-no-results-box{
    padding:18px 16px;
  }

  .mr-no-results-form{
    grid-template-columns:1fr;
    align-items:stretch;
  }

  .mr-footer-bottom{
    flex-direction:column;
  }
}

@media (max-width:767px){
  #mrRecentSearchesTrack{
    gap:12px;
    animation-duration:22s;
  }

  #mrRecentSearches .mr-recent-card{
    flex:0 0 78vw;
    min-width:78vw;
    max-width:78vw;
  }
}

@media (max-width:520px){
  .mr-logo{
    width:156px;
  }

  .mr-input{
    height:58px;
    border-radius:16px;
  }

  .mr-chip{
    width:100%;
    text-align:center;
  }
}
