.skdash-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  max-width:520px;
}
.skdash-tile{
  border:1px solid #e6e6e6;
  border-radius:16px;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,.06);
  overflow:hidden;
}
.skdash-tile-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:76px;
  padding:18px 14px;
  font-weight:700;
  font-size:18px;
  text-decoration:none;
  color:#0b1b2b;
}
.skdash-tile.is-disabled{ opacity:.55; }
.skdash-tile.skdash-logout{ grid-column:1 / -1; }
