/* Shared compact store buttons across the homepage, menu and guide. */
.store-badges {
  display:grid; grid-template-columns:minmax(0,248px); justify-content:center;
  gap:10px; width:100%;
}
.store-badges .store-badge {
  box-sizing:border-box; display:flex; align-items:center; justify-content:flex-start;
  gap:12px; width:100%; min-width:0; min-height:60px; margin:0; padding:10px 16px;
  border:1px solid #d4eaff66; border-radius:16px;
  background:linear-gradient(120deg,#12334b66,#9db7d41f); color:#fff;
  box-shadow:inset 0 1px 0 #ffffff14; text-decoration:none;
  -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px);
  -webkit-font-smoothing:antialiased; cursor:pointer;
  transition:background-color 180ms ease,border-color 180ms ease;
}
.store-badges .store-badge img {
  display:block; flex:0 0 24px; width:24px; height:28px;
  margin:0; border:0; border-radius:0; object-fit:contain;
}
.store-badges .store-badge > span {
  display:grid; gap:2px; min-width:0; color:#fff;
  font-family:"Outfit",-apple-system,BlinkMacSystemFont,sans-serif;
  line-height:1.15; text-align:left;
}
.store-badges .store-badge small { color:#d5e4ee; font-size:8px; font-weight:400; letter-spacing:.08em; }
.store-badges .store-badge b { font-size:19px; font-weight:500; letter-spacing:-.025em; white-space:nowrap; }
.store-badges .store-badge svg { flex:none; width:18px; height:18px; margin-left:auto; fill:none; color:#d5e4ee; }
.store-badges .store-badge:hover { border-color:#e1f5ffb3; background-color:#284e6870; transform:none; }
.store-badges .store-badge:focus-visible { outline:2px solid #8cdef2; outline-offset:4px; }
#download .store-actions { display:grid; width:100%; margin:0; }
#mobile-menu .mobile-menu__stores { flex:none; width:min(248px,100%); margin:0; }
@media(min-width:600px) {
  #download .store-actions, .store-links.store-badges { grid-template-columns:repeat(2,minmax(0,248px)); }
}
html:not(.js) .mobile-menu .store-badges { display:none; }
@media(prefers-reduced-motion:reduce) { .store-badges .store-badge { transition:none; } }
@media print { .store-badges { display:none; } }
